2 implements a pdf output device (OutputDev).
4 This file is part of swftools.
6 Swftools is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 Swftools is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with swftools; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
38 #include "OutputDev.h"
42 //swftools header files
43 #include "swfoutput.h"
45 #include "../lib/log.h"
48 static char* filename = 0;
50 static void printInfoString(Dict *infoDict, char *key, char *fmt);
51 static void printInfoDate(Dict *infoDict, char *key, char *fmt);
53 static char userPassword[33] = "";
54 static GBool printVersion = gFalse;
55 static GBool printHelp = gFalse;
59 0.833,0.833,0.889,0.889,0.788,0.722,0.833,0.778,0.600,0.600,0.600,0.600,0.576,0.576,0.576,0.576
64 "Helvetica-BoldOblique",
72 "Courier-BoldOblique",
86 {"Times-Roman", "n021003l.pfb"},
87 {"Times-Italic", "n021023l.pfb"},
88 {"Times-Bold", "n021004l.pfb"},
89 {"Times-BoldItalic", "n021024l.pfb"},
90 {"Helvetica", "n019003l.pfb"},
91 {"Helvetica-Oblique", "n019023l.pfb"},
92 {"Helvetica-Bold", "n019004l.pfb"},
93 {"Helvetica-BoldOblique", "n019024l.pfb"},
94 {"Courier", "n022003l.pfb"},
95 {"Courier-Oblique", "n022023l.pfb"},
96 {"Courier-Bold", "n022004l.pfb"},
97 {"Courier-BoldOblique", "n022024l.pfb"},
98 {"Symbol", "s050000l.pfb"},
99 {"ZapfDingbats", "d050000l.pfb"}};
101 static void printInfoString(Dict *infoDict, char *key, char *fmt) {
106 if (infoDict->lookup(key, &obj)->isString()) {
107 s1 = obj.getString();
108 if ((s1->getChar(0) & 0xff) == 0xfe &&
109 (s1->getChar(1) & 0xff) == 0xff) {
111 for (i = 2; i < obj.getString()->getLength(); i += 2) {
112 if (s1->getChar(i) == '\0') {
113 s2->append(s1->getChar(i+1));
116 s2 = new GString("<unicode>");
120 printf(fmt, s2->getCString());
123 printf(fmt, s1->getCString());
129 static void printInfoDate(Dict *infoDict, char *key, char *fmt) {
133 if (infoDict->lookup(key, &obj)->isString()) {
134 s = obj.getString()->getCString();
135 if (s[0] == 'D' && s[1] == ':') {
144 class GfxImageColorMap;
146 class SWFOutputDev: public OutputDev {
147 struct swfoutput output;
155 virtual ~SWFOutputDev() ;
157 //----- get info about output device
159 // Does this device use upside-down coordinates?
160 // (Upside-down means (0,0) is the top left corner of the page.)
161 virtual GBool upsideDown();
163 // Does this device use drawChar() or drawString()?
164 virtual GBool useDrawChar();
166 //----- initialization and control
169 virtual void startPage(int pageNum, GfxState *state) ;
172 virtual void drawLink(Link *link, Catalog *catalog) ;
174 //----- save/restore graphics state
175 virtual void saveState(GfxState *state) ;
176 virtual void restoreState(GfxState *state) ;
178 //----- update graphics state
180 virtual void updateFont(GfxState *state);
181 virtual void updateFillColor(GfxState *state);
182 virtual void updateStrokeColor(GfxState *state);
183 virtual void updateLineWidth(GfxState *state);
185 virtual void updateAll(GfxState *state)
188 updateFillColor(state);
189 updateStrokeColor(state);
190 updateLineWidth(state);
193 //----- path painting
194 virtual void stroke(GfxState *state) ;
195 virtual void fill(GfxState *state) ;
196 virtual void eoFill(GfxState *state) ;
198 //----- path clipping
199 virtual void clip(GfxState *state) ;
200 virtual void eoClip(GfxState *state) ;
203 virtual void beginString(GfxState *state, GString *s) ;
204 virtual void endString(GfxState *state) ;
205 virtual void drawChar(GfxState *state, double x, double y,
206 double dx, double dy, Guchar c) ;
207 virtual void drawChar16(GfxState *state, double x, double y,
208 double dx, double dy, int c) ;
210 //----- image drawing
211 virtual void drawImageMask(GfxState *state, Object *ref, Stream *str,
212 int width, int height, GBool invert,
214 virtual void drawImage(GfxState *state, Object *ref, Stream *str,
215 int width, int height, GfxImageColorMap *colorMap,
222 int setT1Font(char*name,FontEncoding*enc);
223 int initT1Font(int id, FontEncoding*encoding);
228 char* gfxstate2str(GfxState *state)
232 bufpos+=sprintf(bufpos,"CTM[%.3f/%.3f/%.3f/%.3f/%.3f/%.3f] ",
239 if(state->getX1()!=0.0)
240 bufpos+=sprintf(bufpos,"X1-%.1f ",state->getX1());
241 if(state->getY1()!=0.0)
242 bufpos+=sprintf(bufpos,"Y1-%.1f ",state->getY1());
243 bufpos+=sprintf(bufpos,"X2-%.1f ",state->getX2());
244 bufpos+=sprintf(bufpos,"Y2-%.1f ",state->getY2());
245 bufpos+=sprintf(bufpos,"PW%.1f ",state->getPageWidth());
246 bufpos+=sprintf(bufpos,"PH%.1f ",state->getPageHeight());
247 /*bufpos+=sprintf(bufpos,"FC[%.1f/%.1f] ",
248 state->getFillColor()->c[0], state->getFillColor()->c[1]);
249 bufpos+=sprintf(bufpos,"SC[%.1f/%.1f] ",
250 state->getStrokeColor()->c[0], state->getFillColor()->c[1]);*/
251 /* bufpos+=sprintf(bufpos,"FC[%.1f/%.1f/%.1f/%.1f/%.1f/%.1f/%.1f/%.1f]",
252 state->getFillColor()->c[0], state->getFillColor()->c[1],
253 state->getFillColor()->c[2], state->getFillColor()->c[3],
254 state->getFillColor()->c[4], state->getFillColor()->c[5],
255 state->getFillColor()->c[6], state->getFillColor()->c[7]);
256 bufpos+=sprintf(bufpos,"SC[%.1f/%.1f/%.1f/%.1f/%.1f/%.1f/%.1f/%.1f]",
257 state->getStrokeColor()->c[0], state->getFillColor()->c[1],
258 state->getStrokeColor()->c[2], state->getFillColor()->c[3],
259 state->getStrokeColor()->c[4], state->getFillColor()->c[5],
260 state->getStrokeColor()->c[6], state->getFillColor()->c[7]);*/
261 state->getFillRGB(&rgb);
262 if(rgb.r || rgb.g || rgb.b)
263 bufpos+=sprintf(bufpos,"FR[%.1f/%.1f/%.1f] ", rgb.r,rgb.g,rgb.b);
264 state->getStrokeRGB(&rgb);
265 if(rgb.r || rgb.g || rgb.b)
266 bufpos+=sprintf(bufpos,"SR[%.1f/%.1f/%.1f] ", rgb.r,rgb.g,rgb.b);
267 if(state->getFillColorSpace()->getNComps()>1)
268 bufpos+=sprintf(bufpos,"CS[[%d]] ",state->getFillColorSpace()->getNComps());
269 if(state->getStrokeColorSpace()->getNComps()>1)
270 bufpos+=sprintf(bufpos,"SS[[%d]] ",state->getStrokeColorSpace()->getNComps());
271 if(state->getFillPattern())
272 bufpos+=sprintf(bufpos,"FP%08x ", state->getFillPattern());
273 if(state->getStrokePattern())
274 bufpos+=sprintf(bufpos,"SP%08x ", state->getStrokePattern());
276 if(state->getFillOpacity()!=1.0)
277 bufpos+=sprintf(bufpos,"FO%.1f ", state->getFillOpacity());
278 if(state->getStrokeOpacity()!=1.0)
279 bufpos+=sprintf(bufpos,"SO%.1f ", state->getStrokeOpacity());
281 bufpos+=sprintf(bufpos,"LW%.1f ", state->getLineWidth());
286 state->getLineDash(&dash, &length, &start);
290 bufpos+=sprintf(bufpos,"DASH%.1f[",start);
291 for(t=0;t<length;t++) {
292 bufpos+=sprintf(bufpos,"D%.1f",dash[t]);
294 bufpos+=sprintf(bufpos,"]");
297 if(state->getFlatness()!=1)
298 bufpos+=sprintf(bufpos,"F%d ", state->getFlatness());
299 if(state->getLineJoin()!=0)
300 bufpos+=sprintf(bufpos,"J%d ", state->getLineJoin());
301 if(state->getLineJoin()!=0)
302 bufpos+=sprintf(bufpos,"C%d ", state->getLineCap());
303 if(state->getLineJoin()!=0)
304 bufpos+=sprintf(bufpos,"ML%d ", state->getMiterLimit());
306 if(state->getFont() && state->getFont()->getName() && state->getFont()->getName()->getCString())
307 bufpos+=sprintf(bufpos,"F\"%s\" ",((state->getFont())->getName())->getCString());
308 bufpos+=sprintf(bufpos,"FS%.1f ", state->getFontSize());
309 bufpos+=sprintf(bufpos,"MAT[%.1f/%.1f/%.1f/%.1f/%.1f/%.1f] ", state->getTextMat()[0],state->getTextMat()[1],state->getTextMat()[2],
310 state->getTextMat()[3],state->getTextMat()[4],state->getTextMat()[5]);
311 if(state->getCharSpace())
312 bufpos+=sprintf(bufpos,"CS%.5f ", state->getCharSpace());
313 if(state->getWordSpace())
314 bufpos+=sprintf(bufpos,"WS%.5f ", state->getWordSpace());
315 if(state->getHorizScaling()!=1.0)
316 bufpos+=sprintf(bufpos,"SC%.1f ", state->getHorizScaling());
317 if(state->getLeading())
318 bufpos+=sprintf(bufpos,"L%.1f ", state->getLeading());
320 bufpos+=sprintf(bufpos,"R%.1f ", state->getRise());
321 if(state->getRender())
322 bufpos+=sprintf(bufpos,"R%d ", state->getRender());
323 bufpos+=sprintf(bufpos,"P%08x ", state->getPath());
324 bufpos+=sprintf(bufpos,"CX%.1f ", state->getCurX());
325 bufpos+=sprintf(bufpos,"CY%.1f ", state->getCurY());
326 if(state->getLineX())
327 bufpos+=sprintf(bufpos,"LX%.1f ", state->getLineX());
328 if(state->getLineY())
329 bufpos+=sprintf(bufpos,"LY%.1f ", state->getLineY());
330 bufpos+=sprintf(bufpos," ");
334 void dumpFontInfo(char*loglevel, GfxFont*font);
341 void showFontError(GfxFont*font, int nr)
345 for(t=0;t<lastdumppos;t++)
346 if(lastdumps[t] == r.num)
350 if(lastdumppos<sizeof(lastdumps)/sizeof(int))
351 lastdumps[lastdumppos++] = r.num;
353 logf("<error> The following font caused problems:");
355 logf("<error> The following font caused problems (substituting):");
357 logf("<error> This document contains Type 3 Fonts: (some text may be incorrectly displayed)");
359 dumpFontInfo("<error>", font);
362 void dumpFontInfo(char*loglevel, GfxFont*font)
366 gstr = font->getName();
368 logf("%s=========== %s (ID:%d) ==========\n", loglevel, gstr?gstr->getCString():"(unknown font)", r.num);
370 gstr = font->getTag();
372 logf("%sTag: %s\n", loglevel, gstr->getCString());
373 if(font->is16Bit()) logf("%sis 16 bit\n", loglevel);
375 GfxFontType type=font->getType();
377 case fontUnknownType:
378 logf("%sType: unknown\n",loglevel);
381 logf("%sType: 0\n",loglevel);
384 logf("%sType: 1\n",loglevel);
387 logf("%sType: 1C\n",loglevel);
390 logf("%sType: 3\n",loglevel);
393 logf("%sType: TrueType\n",loglevel);
396 name = font->getEmbeddedFontName();
398 logf("%sEmbedded name: %s\n",loglevel, name);
400 gstr = font->getExtFontFile();
402 logf("%sExternal Font file: %s\n", loglevel, gstr->getCString());
404 // Get font descriptor flags.
405 if(font->isFixedWidth()) logf("%sis fixed width\n", loglevel);
406 if(font->isSerif()) logf("%sis serif\n", loglevel);
407 if(font->isSymbolic()) logf("%sis symbolic\n", loglevel);
408 if(font->isItalic()) logf("%sis italic\n", loglevel);
409 if(font->isBold()) logf("%sis bold\n", loglevel);
412 //void SWFOutputDev::drawImageMask(GfxState *state, Object *ref, Stream *str, int width, int height, GBool invert, GBool inlineImg) {printf("void SWFOutputDev::drawImageMask(GfxState *state, Object *ref, Stream *str, int width, int height, GBool invert, GBool inlineImg) \n");}
413 //void SWFOutputDev::drawImage(GfxState *state, Object *ref, Stream *str, int width, int height, GfxImageColorMap *colorMap, GBool inlineImg) {printf("void SWFOutputDev::drawImage(GfxState *state, Object *ref, Stream *str, int width, int height, GfxImageColorMap *colorMap, GBool inlineImg) \n");}
415 SWFOutputDev::SWFOutputDev()
418 clipping[clippos] = 0;
420 // printf("SWFOutputDev::SWFOutputDev() \n");
423 T1_OUTLINE* gfxPath_to_T1_OUTLINE(GfxState*state, GfxPath*path)
425 int num = path->getNumSubpaths();
427 bezierpathsegment*start,*last;
428 bezierpathsegment*outline = start = new bezierpathsegment();
430 double lastx=0,lasty=0;
431 for(t = 0; t < num; t++) {
432 GfxSubpath *subpath = path->getSubpath(t);
433 int subnum = subpath->getNumPoints();
435 for(s=0;s<subnum;s++) {
437 state->transform(subpath->getX(s),subpath->getY(s),&nx,&ny);
438 int x = (int)((nx-lastx)*0xffff);
439 int y = (int)((ny-lasty)*0xffff);
443 outline->type = T1_PATHTYPE_MOVE;
446 outline->link = (T1_OUTLINE*)new bezierpathsegment();
447 outline = (bezierpathsegment*)outline->link;
452 else if(subpath->getCurve(s) && !cpos)
458 else if(subpath->getCurve(s) && cpos)
469 outline->type = cpos?T1_PATHTYPE_BEZIER:T1_PATHTYPE_LINE;
471 outline->link = (T1_OUTLINE*)new bezierpathsegment();
472 outline = (bezierpathsegment*)outline->link;
480 return (T1_OUTLINE*)start;
482 /*----------------------------------------------------------------------------
483 * Primitive Graphic routines
484 *----------------------------------------------------------------------------*/
486 void SWFOutputDev::stroke(GfxState *state)
488 logf("<debug> %s stroke\n",gfxstate2str(state));
489 GfxPath * path = state->getPath();
491 m.m11 = 1; m.m21 = 0; m.m22 = 1;
492 m.m21 = 0; m.m13 = 0; m.m23 = 0;
493 T1_OUTLINE*outline = gfxPath_to_T1_OUTLINE(state, path);
494 swfoutput_setdrawmode(&output, DRAWMODE_STROKE);
495 swfoutput_drawpath(&output, outline, &m);
497 void SWFOutputDev::fill(GfxState *state)
499 logf("<debug> %s fill\n",gfxstate2str(state));
500 GfxPath * path = state->getPath();
502 m.m11 = 1; m.m21 = 0; m.m22 = 1;
503 m.m21 = 0; m.m13 = 0; m.m23 = 0;
504 T1_OUTLINE*outline = gfxPath_to_T1_OUTLINE(state, path);
505 swfoutput_setdrawmode(&output, DRAWMODE_FILL);
506 swfoutput_drawpath(&output, outline, &m);
508 void SWFOutputDev::eoFill(GfxState *state)
510 logf("<debug> %s eofill\n",gfxstate2str(state));
511 GfxPath * path = state->getPath();
513 m.m11 = 1; m.m21 = 0; m.m22 = 1;
514 m.m21 = 0; m.m13 = 0; m.m23 = 0;
515 T1_OUTLINE*outline = gfxPath_to_T1_OUTLINE(state, path);
516 swfoutput_setdrawmode(&output, DRAWMODE_EOFILL);
517 swfoutput_drawpath(&output, outline, &m);
519 void SWFOutputDev::clip(GfxState *state)
521 logf("<debug> %s clip\n",gfxstate2str(state));
522 GfxPath * path = state->getPath();
524 m.m11 = 1; m.m21 = 0; m.m22 = 1;
525 m.m21 = 0; m.m13 = 0; m.m23 = 0;
526 T1_OUTLINE*outline = gfxPath_to_T1_OUTLINE(state, path);
527 swfoutput_startclip(&output, outline, &m);
528 clipping[clippos] = 1;
530 void SWFOutputDev::eoClip(GfxState *state)
532 logf("<debug> %s eoclip\n",gfxstate2str(state));
533 GfxPath * path = state->getPath();
535 m.m11 = 1; m.m21 = 0; m.m22 = 1;
536 m.m21 = 0; m.m13 = 0; m.m23 = 0;
537 T1_OUTLINE*outline = gfxPath_to_T1_OUTLINE(state, path);
538 swfoutput_startclip(&output, outline, &m);
539 clipping[clippos] = 1;
542 SWFOutputDev::~SWFOutputDev()
544 swfoutput_destroy(&output);
547 GBool SWFOutputDev::upsideDown()
549 logf("<debug> upsidedown?");
552 GBool SWFOutputDev::useDrawChar()
554 logf("<debug> usedrawchar?");
558 void SWFOutputDev::beginString(GfxState *state, GString *s)
560 double m11,m21,m12,m22;
561 logf("<debug> %s beginstring \"%s\"\n", gfxstate2str(state), s->getCString());
562 state->getFontTransMat(&m11, &m12, &m21, &m22);
563 m11 *= state->getHorizScaling();
564 m21 *= state->getHorizScaling();
565 swfoutput_setfontmatrix(&output,m11,-m12,m21,-m22);
569 void SWFOutputDev::drawChar(GfxState *state, double x, double y, double dx, double dy, Guchar c)
571 logf("<debug> %s drawChar(%f,%f,%f,%f,'%c')\n",gfxstate2str(state), x,y,dx,dy,c);
572 // check for invisible text -- this is used by Acrobat Capture
573 if ((state->getRender() & 3) != 3)
575 FontEncoding*enc=state->getFont()->getEncoding();
580 state->transform(x, y, &x1, &y1);
582 swfoutput_drawchar(&output, x1, y1, c);
586 void SWFOutputDev::drawChar16(GfxState *state, double x, double y, double dx, double dy, int c)
588 printf("<error> %s drawChar16(%f,%f,%f,%f,%08x)\n",gfxstate2str(state), x,y,dx,dy,c);
592 void SWFOutputDev::endString(GfxState *state)
594 logf("<debug> %s endstring\n", gfxstate2str(state));
597 void SWFOutputDev::startPage(int pageNum, GfxState *state)
600 logf("<debug> %s, startPage %d\n", gfxstate2str(state), pageNum);
601 logf("<notice> processing page %d", pageNum);
603 state->transform(state->getX1(),state->getY1(),&x1,&y1);
604 state->transform(state->getX2(),state->getY2(),&x2,&y2);
606 swfoutput_init(&output, filename, abs((int)(x2-x1)),abs((int)(y2-y1)));
610 swfoutput_newpage(&output);
613 void SWFOutputDev::drawLink(Link *link, Catalog *catalog)
615 logf("<debug> drawlink\n");
616 double x1, y1, x2, y2, w;
621 link->getBorder(&x1, &y1, &x2, &y2, &w);
626 cvtUserToDev(x1, y1, &x, &y);
627 points[0].x = points[4].x = x;
628 points[0].y = points[4].y = y;
629 cvtUserToDev(x2, y1, &x, &y);
632 cvtUserToDev(x2, y2, &x, &y);
635 cvtUserToDev(x1, y2, &x, &y);
639 LinkAction*action=link->getAction();
641 switch(action->getKind())
644 LinkGoTo*l = (LinkGoTo*)action;
645 s = l->getNamedDest()->getCString();
649 LinkGoToR*l = (LinkGoToR*)action;
650 s = l->getNamedDest()->getCString();
654 LinkLaunch*l = (LinkLaunch*)action;
655 GString * str = new GString(l->getFileName());
656 str->append(l->getParams());
657 s = str->getCString();
661 LinkURI*l = (LinkURI*)action;
662 s = l->getURI()->getCString();
666 LinkNamed*l = (LinkNamed*)action;
667 s = l->getName()->getCString();
670 case actionUnknown: {
671 LinkUnknown*l = (LinkUnknown*)action;
676 logf("<verbose> link to \"%s\"\n", s);
680 void SWFOutputDev::saveState(GfxState *state) {
681 logf("<debug> %s saveState\n", gfxstate2str(state));
684 clipping[clippos] = 0;
687 void SWFOutputDev::restoreState(GfxState *state) {
688 logf("<debug> %s restoreState\n", gfxstate2str(state));
690 if(clipping[clippos])
691 swfoutput_endclip(&output);
697 int SWFOutputDev::setT1Font(char*name, FontEncoding*encoding)
704 for(i=0;i<sizeof(pdf2t1map)/sizeof(mapping);i++)
706 if(!strcmp(name, pdf2t1map[i].pdffont))
708 filename = pdf2t1map[i].filename;
713 for(i=0; i<T1_Get_no_fonts(); i++)
715 char*fontfilename = T1_GetFontFileName (i);
716 if(strstr(fontfilename, filename))
719 pdf2t1map[i].id = mapid;
725 initT1Font(id, encoding);
728 int SWFOutputDev::initT1Font(int id, FontEncoding*encoding)
735 /* reencode the font:
736 * This is the only way to get the unmapped characters
740 for (i = 0; i < 256 && i < encoding->getSize(); ++i) {
741 if (encoding->getCharName(i)) {
742 encStrSize += strlen(encoding->getCharName(i)) + 1;
745 char**enc = (char **)gmalloc(257 * sizeof(char *));
746 char*encStr = (char *)gmalloc(encStrSize * sizeof(char));
748 for (i = 0; i < 256 && i < encoding->getSize(); ++i) {
749 if (encoding->getCharName(i)) {
750 strcpy(encPtr, encoding->getCharName(i));
752 encPtr += strlen(encPtr) + 1;
757 for (; i < 256; ++i) {
761 int ret=T1_ReencodeFont(id, enc);
766 void SWFOutputDev::updateLineWidth(GfxState *state)
768 double width = state->getLineWidth();
769 swfoutput_setlinewidth(&output, width);
772 void SWFOutputDev::updateFillColor(GfxState *state)
775 double opaq = state->getFillOpacity();
776 state->getFillRGB(&rgb);
778 swfoutput_setfillcolor(&output, (char)(rgb.r*255), (char)(rgb.g*255),
779 (char)(rgb.b*255), (char)(opaq*255));
782 void SWFOutputDev::updateStrokeColor(GfxState *state)
785 double opaq = state->getStrokeOpacity();
786 state->getStrokeRGB(&rgb);
788 swfoutput_setstrokecolor(&output, (char)(rgb.r*255), (char)(rgb.g*255),
789 (char)(rgb.b*255), (char)(opaq*255));
792 void SWFOutputDev::updateFont(GfxState *state) {
793 double m11, m12, m21, m22;
795 GfxFont*gfxFont = state->getFont();
801 // look for Type 3 font
802 if (!type3Warning && gfxFont->getType() == fontType3) {
803 type3Warning = gTrue;
804 showFontError(gfxFont, 2);
806 //dumpFontInfo (gfxFont);
810 GBool embedded = gfxFont->getEmbeddedFontID(&embRef);
812 char*tmpFileName = NULL;
813 char*fileName = NULL;
817 Type1CFontConverter *cvt;
819 Object refObj, strObj;
821 if (!gfxFont->is16Bit() &&
822 (gfxFont->getType() == fontType1 ||
823 gfxFont->getType() == fontType1C) &&
824 gfxFont->getEmbeddedFontID(&embRef)) {
825 tmpFileName = "tmpfont";
826 f = fopen(tmpFileName, "wb");
828 logf("<error> Couldn't create temporary Type 1 font file");
831 if (gfxFont->getType() == fontType1C) {
832 if (!(fontBuf = gfxFont->readEmbFontFile(&fontLen))) {
834 logf("<error> Couldn't read embedded font file");
837 cvt = new Type1CFontConverter(fontBuf, fontLen, f);
842 gfxFont->getEmbeddedFontID(&embRef);
843 refObj.initRef(embRef.num, embRef.gen);
844 refObj.fetch(&strObj);
846 strObj.streamReset();
847 while ((c = strObj.streamGetChar()) != EOF) {
850 strObj.streamClose();
854 fileName = tmpFileName;
856 logf("<error> Embedded font writer didn't create a file");
861 showFontError(gfxFont,0);
864 t1id = T1_AddFont(fileName);
865 initT1Font(t1id, gfxFont->getEncoding());
868 if(gfxFont->getName()) {
869 fontname = gfxFont->getName()->getCString();
870 //logf("<notice> Processing font %s", fontname);
872 if(!fontname || !setT1Font(state->getFont()->getName()->getCString(), gfxFont->getEncoding()))
879 showFontError(gfxFont, 1);
880 if (!gfxFont->is16Bit()) {
881 if (gfxFont->isFixedWidth()) {
883 } else if (gfxFont->isSerif()) {
888 if (gfxFont->isBold())
890 if (gfxFont->isItalic())
892 fontname = fontnames[index];
893 // get width of 'm' in real font and substituted font
894 if ((code = gfxFont->getCharCode("m")) >= 0)
895 w1 = gfxFont->getWidth(code);
898 w2 = fontsizes[index];
899 if (gfxFont->getType() == fontType3) {
900 // This is a hack which makes it possible to substitute for some
901 // Type 3 fonts. The problem is that it's impossible to know what
902 // the base coordinate system used in the font is without actually
903 // rendering the font. This code tries to guess by looking at the
904 // width of the character 'm' (which breaks if the font is a
905 // subset that doesn't contain 'm').
906 if (w1 > 0 && (w1 > 1.1 * w2 || w1 < 0.9 * w2)) {
913 fm = gfxFont->getFontMatrix();
914 v = (fm[0] == 0) ? 1 : (fm[3] / fm[0]);
917 } else if (!gfxFont->isSymbolic()) {
918 // if real font is substantially narrower than substituted
919 // font, reduce the font size accordingly
920 if (w1 > 0.01 && w1 < 0.9 * w2) {
933 setT1Font(fontname, gfxFont->getEncoding());
937 swfoutput_setfont(&output,t1id);
940 void SWFOutputDev::drawImageMask(GfxState *state, Object *ref, Stream *str,
941 int width, int height, GBool invert,
946 double x1,y1,x2,y2,x3,y3,x4,y4;
947 state->transform(0, 1, &x1, &y1);
948 state->transform(0, 0, &x2, &y2);
949 state->transform(1, 0, &x3, &y3);
950 state->transform(1, 1, &x4, &y4);
952 if (str->getKind() == strDCT) {
953 sprintf(fileName, "/tmp/tmp%08x.jpg",lrand48());
954 logf("<notice> Found picture. Temporary storage is %s", fileName);
955 if (!(fi = fopen(fileName, "wb"))) {
956 logf("<error> Couldn't open temporary image file '%s'", fileName);
959 str = ((DCTStream *)str)->getRawStream();
961 while ((c = str->getChar()) != EOF)
964 swfoutput_drawimagefile(&output, fileName, width, height, x1,y1,x2,y2,x3,y3,x4,y4);
966 logf("<notice> File contains pbm pictures.");
970 void SWFOutputDev::drawImage(GfxState *state, Object *ref, Stream *str,
971 int width, int height,
972 GfxImageColorMap *colorMap, GBool inlineImg) {
976 double x1,y1,x2,y2,x3,y3,x4,y4;
977 state->transform(0, 1, &x1, &y1);
978 state->transform(0, 0, &x2, &y2);
979 state->transform(1, 0, &x3, &y3);
980 state->transform(1, 1, &x4, &y4);
982 if (str->getKind() == strDCT &&
983 colorMap->getNumPixelComps() == 3) {
984 sprintf(fileName, "/tmp/tmp%08x.jpg", lrand48());
985 logf("<notice> Found picture. Temporary storage is %s", fileName);
986 if (!(fi = fopen(fileName, "wb"))) {
987 error(-1, "Couldn't open temporary image file '%s'", fileName);
990 str = ((DCTStream *)str)->getRawStream();
992 while ((c = str->getChar()) != EOF)
995 swfoutput_drawimagefile(&output, fileName, width, height, x1,y1,x2,y2,x3,y3,x4,y4);
997 logf("<notice> File contains pbm pictures.");
1002 SWFOutputDev*output = 0;
1004 void pdfswf_init(char*filename, char*userPassword)
1006 GString *fileName = new GString(filename);
1013 initParams(xpdfConfigFile);
1017 if (userPassword && userPassword[0]) {
1018 userPW = new GString(userPassword);
1022 doc = new PDFDoc(fileName, userPW);
1031 doc->getDocInfo(&info);
1032 if (info.isDict()) {
1033 printInfoString(info.getDict(), "Title", "Title: %s\n");
1034 printInfoString(info.getDict(), "Subject", "Subject: %s\n");
1035 printInfoString(info.getDict(), "Keywords", "Keywords: %s\n");
1036 printInfoString(info.getDict(), "Author", "Author: %s\n");
1037 printInfoString(info.getDict(), "Creator", "Creator: %s\n");
1038 printInfoString(info.getDict(), "Producer", "Producer: %s\n");
1039 printInfoDate(info.getDict(), "CreationDate", "CreationDate: %s\n");
1040 printInfoDate(info.getDict(), "ModDate", "ModDate: %s\n");
1045 printf("Pages: %d\n", doc->getNumPages());
1047 // print linearization info
1048 printf("Linearized: %s\n", doc->isLinearized() ? "yes" : "no");
1050 // print encryption info
1051 printf("Encrypted: ");
1052 if (doc->isEncrypted()) {
1053 printf("yes (print:%s copy:%s change:%s addNotes:%s)\n",
1054 doc->okToPrint() ? "yes" : "no",
1055 doc->okToCopy() ? "yes" : "no",
1056 doc->okToChange() ? "yes" : "no",
1057 doc->okToAddNotes() ? "yes" : "no");
1058 /*ERROR: This pdf is encrypted, and disallows copying.
1059 Due to the DMCA, paragraph 1201, (2) A-C, circumventing
1060 a technological measure that efficively controls access to
1061 a protected work is violating American law.
1062 See www.eff.org for more information about DMCA issues.
1064 if(!doc->okToCopy()) {
1065 printf("PDF disallows copying. Bailing out.\n");
1068 if(!doc->okToChange() || !doc->okToAddNotes())
1069 swfoutput_setprotected();
1076 output = new SWFOutputDev();
1079 void pdfswf_setoutputfilename(char*_filename)
1081 filename = _filename;
1084 void pdfswf_convertpage(int page)
1086 doc->displayPage((OutputDev*)output, page, /*zoom*/100, /*rotate*/0, /*doLinks*/(int)1);
1089 int pdfswf_numpages()
1091 return doc->getNumPages();
1100 // check for memory leaks
1101 Object::memCheck(stderr);