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 */
39 #include "OutputDev.h"
43 //swftools header files
44 #include "swfoutput.h"
46 #include "../lib/log.h"
49 static char* swffilename = 0;
51 static void printInfoString(Dict *infoDict, char *key, char *fmt);
52 static void printInfoDate(Dict *infoDict, char *key, char *fmt);
54 static char userPassword[33] = "";
55 static GBool printVersion = gFalse;
56 static GBool printHelp = gFalse;
60 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
65 "Helvetica-BoldOblique",
73 "Courier-BoldOblique",
87 {"Times-Roman", "n021003l.pfb"},
88 {"Times-Italic", "n021023l.pfb"},
89 {"Times-Bold", "n021004l.pfb"},
90 {"Times-BoldItalic", "n021024l.pfb"},
91 {"Helvetica", "n019003l.pfb"},
92 {"Helvetica-Oblique", "n019023l.pfb"},
93 {"Helvetica-Bold", "n019004l.pfb"},
94 {"Helvetica-BoldOblique", "n019024l.pfb"},
95 {"Courier", "n022003l.pfb"},
96 {"Courier-Oblique", "n022023l.pfb"},
97 {"Courier-Bold", "n022004l.pfb"},
98 {"Courier-BoldOblique", "n022024l.pfb"},
99 {"Symbol", "s050000l.pfb"},
100 {"ZapfDingbats", "d050000l.pfb"}};
102 static void printInfoString(Dict *infoDict, char *key, char *fmt) {
107 if (infoDict->lookup(key, &obj)->isString()) {
108 s1 = obj.getString();
109 if ((s1->getChar(0) & 0xff) == 0xfe &&
110 (s1->getChar(1) & 0xff) == 0xff) {
112 for (i = 2; i < obj.getString()->getLength(); i += 2) {
113 if (s1->getChar(i) == '\0') {
114 s2->append(s1->getChar(i+1));
117 s2 = new GString("<unicode>");
121 printf(fmt, s2->getCString());
124 printf(fmt, s1->getCString());
130 static void printInfoDate(Dict *infoDict, char *key, char *fmt) {
134 if (infoDict->lookup(key, &obj)->isString()) {
135 s = obj.getString()->getCString();
136 if (s[0] == 'D' && s[1] == ':') {
145 class GfxImageColorMap;
147 class SWFOutputDev: public OutputDev {
148 struct swfoutput output;
156 virtual ~SWFOutputDev() ;
158 //----- get info about output device
160 // Does this device use upside-down coordinates?
161 // (Upside-down means (0,0) is the top left corner of the page.)
162 virtual GBool upsideDown();
164 // Does this device use drawChar() or drawString()?
165 virtual GBool useDrawChar();
167 //----- initialization and control
170 virtual void startPage(int pageNum, GfxState *state) ;
173 virtual void drawLink(Link *link, Catalog *catalog) ;
175 //----- save/restore graphics state
176 virtual void saveState(GfxState *state) ;
177 virtual void restoreState(GfxState *state) ;
179 //----- update graphics state
181 virtual void updateFont(GfxState *state);
182 virtual void updateFillColor(GfxState *state);
183 virtual void updateStrokeColor(GfxState *state);
184 virtual void updateLineWidth(GfxState *state);
186 virtual void updateAll(GfxState *state)
189 updateFillColor(state);
190 updateStrokeColor(state);
191 updateLineWidth(state);
194 //----- path painting
195 virtual void stroke(GfxState *state) ;
196 virtual void fill(GfxState *state) ;
197 virtual void eoFill(GfxState *state) ;
199 //----- path clipping
200 virtual void clip(GfxState *state) ;
201 virtual void eoClip(GfxState *state) ;
204 virtual void beginString(GfxState *state, GString *s) ;
205 virtual void endString(GfxState *state) ;
206 virtual void drawChar(GfxState *state, double x, double y,
207 double dx, double dy, Guchar c) ;
208 virtual void drawChar16(GfxState *state, double x, double y,
209 double dx, double dy, int c) ;
211 //----- image drawing
212 virtual void drawImageMask(GfxState *state, Object *ref, Stream *str,
213 int width, int height, GBool invert,
215 virtual void drawImage(GfxState *state, Object *ref, Stream *str,
216 int width, int height, GfxImageColorMap *colorMap,
220 void drawGeneralImage(GfxState *state, Object *ref, Stream *str,
221 int width, int height, GfxImageColorMap*colorMap, GBool invert,
222 GBool inlineImg, int mask);
226 int setT1Font(char*name,FontEncoding*enc);
228 int jpeginfo; // did we write "Page contains jpegs" yet?
229 int pbminfo; // did we write "Page contains jpegs" yet?
233 char* gfxstate2str(GfxState *state)
237 bufpos+=sprintf(bufpos,"CTM[%.3f/%.3f/%.3f/%.3f/%.3f/%.3f] ",
244 if(state->getX1()!=0.0)
245 bufpos+=sprintf(bufpos,"X1-%.1f ",state->getX1());
246 if(state->getY1()!=0.0)
247 bufpos+=sprintf(bufpos,"Y1-%.1f ",state->getY1());
248 bufpos+=sprintf(bufpos,"X2-%.1f ",state->getX2());
249 bufpos+=sprintf(bufpos,"Y2-%.1f ",state->getY2());
250 bufpos+=sprintf(bufpos,"PW%.1f ",state->getPageWidth());
251 bufpos+=sprintf(bufpos,"PH%.1f ",state->getPageHeight());
252 /*bufpos+=sprintf(bufpos,"FC[%.1f/%.1f] ",
253 state->getFillColor()->c[0], state->getFillColor()->c[1]);
254 bufpos+=sprintf(bufpos,"SC[%.1f/%.1f] ",
255 state->getStrokeColor()->c[0], state->getFillColor()->c[1]);*/
256 /* bufpos+=sprintf(bufpos,"FC[%.1f/%.1f/%.1f/%.1f/%.1f/%.1f/%.1f/%.1f]",
257 state->getFillColor()->c[0], state->getFillColor()->c[1],
258 state->getFillColor()->c[2], state->getFillColor()->c[3],
259 state->getFillColor()->c[4], state->getFillColor()->c[5],
260 state->getFillColor()->c[6], state->getFillColor()->c[7]);
261 bufpos+=sprintf(bufpos,"SC[%.1f/%.1f/%.1f/%.1f/%.1f/%.1f/%.1f/%.1f]",
262 state->getStrokeColor()->c[0], state->getFillColor()->c[1],
263 state->getStrokeColor()->c[2], state->getFillColor()->c[3],
264 state->getStrokeColor()->c[4], state->getFillColor()->c[5],
265 state->getStrokeColor()->c[6], state->getFillColor()->c[7]);*/
266 state->getFillRGB(&rgb);
267 if(rgb.r || rgb.g || rgb.b)
268 bufpos+=sprintf(bufpos,"FR[%.1f/%.1f/%.1f] ", rgb.r,rgb.g,rgb.b);
269 state->getStrokeRGB(&rgb);
270 if(rgb.r || rgb.g || rgb.b)
271 bufpos+=sprintf(bufpos,"SR[%.1f/%.1f/%.1f] ", rgb.r,rgb.g,rgb.b);
272 if(state->getFillColorSpace()->getNComps()>1)
273 bufpos+=sprintf(bufpos,"CS[[%d]] ",state->getFillColorSpace()->getNComps());
274 if(state->getStrokeColorSpace()->getNComps()>1)
275 bufpos+=sprintf(bufpos,"SS[[%d]] ",state->getStrokeColorSpace()->getNComps());
276 if(state->getFillPattern())
277 bufpos+=sprintf(bufpos,"FP%08x ", state->getFillPattern());
278 if(state->getStrokePattern())
279 bufpos+=sprintf(bufpos,"SP%08x ", state->getStrokePattern());
281 if(state->getFillOpacity()!=1.0)
282 bufpos+=sprintf(bufpos,"FO%.1f ", state->getFillOpacity());
283 if(state->getStrokeOpacity()!=1.0)
284 bufpos+=sprintf(bufpos,"SO%.1f ", state->getStrokeOpacity());
286 bufpos+=sprintf(bufpos,"LW%.1f ", state->getLineWidth());
291 state->getLineDash(&dash, &length, &start);
295 bufpos+=sprintf(bufpos,"DASH%.1f[",start);
296 for(t=0;t<length;t++) {
297 bufpos+=sprintf(bufpos,"D%.1f",dash[t]);
299 bufpos+=sprintf(bufpos,"]");
302 if(state->getFlatness()!=1)
303 bufpos+=sprintf(bufpos,"F%d ", state->getFlatness());
304 if(state->getLineJoin()!=0)
305 bufpos+=sprintf(bufpos,"J%d ", state->getLineJoin());
306 if(state->getLineJoin()!=0)
307 bufpos+=sprintf(bufpos,"C%d ", state->getLineCap());
308 if(state->getLineJoin()!=0)
309 bufpos+=sprintf(bufpos,"ML%d ", state->getMiterLimit());
311 if(state->getFont() && state->getFont()->getName() && state->getFont()->getName()->getCString())
312 bufpos+=sprintf(bufpos,"F\"%s\" ",((state->getFont())->getName())->getCString());
313 bufpos+=sprintf(bufpos,"FS%.1f ", state->getFontSize());
314 bufpos+=sprintf(bufpos,"MAT[%.1f/%.1f/%.1f/%.1f/%.1f/%.1f] ", state->getTextMat()[0],state->getTextMat()[1],state->getTextMat()[2],
315 state->getTextMat()[3],state->getTextMat()[4],state->getTextMat()[5]);
316 if(state->getCharSpace())
317 bufpos+=sprintf(bufpos,"CS%.5f ", state->getCharSpace());
318 if(state->getWordSpace())
319 bufpos+=sprintf(bufpos,"WS%.5f ", state->getWordSpace());
320 if(state->getHorizScaling()!=1.0)
321 bufpos+=sprintf(bufpos,"SC%.1f ", state->getHorizScaling());
322 if(state->getLeading())
323 bufpos+=sprintf(bufpos,"L%.1f ", state->getLeading());
325 bufpos+=sprintf(bufpos,"R%.1f ", state->getRise());
326 if(state->getRender())
327 bufpos+=sprintf(bufpos,"R%d ", state->getRender());
328 bufpos+=sprintf(bufpos,"P%08x ", state->getPath());
329 bufpos+=sprintf(bufpos,"CX%.1f ", state->getCurX());
330 bufpos+=sprintf(bufpos,"CY%.1f ", state->getCurY());
331 if(state->getLineX())
332 bufpos+=sprintf(bufpos,"LX%.1f ", state->getLineX());
333 if(state->getLineY())
334 bufpos+=sprintf(bufpos,"LY%.1f ", state->getLineY());
335 bufpos+=sprintf(bufpos," ");
339 void dumpFontInfo(char*loglevel, GfxFont*font);
346 void showFontError(GfxFont*font, int nr)
350 for(t=0;t<lastdumppos;t++)
351 if(lastdumps[t] == r.num)
355 if(lastdumppos<sizeof(lastdumps)/sizeof(int))
356 lastdumps[lastdumppos++] = r.num;
358 logf("<error> The following font caused problems:");
360 logf("<error> The following font caused problems (substituting):");
362 logf("<error> This document contains Type 3 Fonts: (some text may be incorrectly displayed)");
364 dumpFontInfo("<error>", font);
367 void dumpFontInfo(char*loglevel, GfxFont*font)
371 gstr = font->getName();
373 logf("%s=========== %s (ID:%d,%d) ==========\n", loglevel, gstr?gstr->getCString():"(unknown font)", r.num,r.gen);
375 gstr = font->getTag();
377 logf("%sTag: %s\n", loglevel, gstr->getCString());
378 if(font->is16Bit()) logf("%sis 16 bit\n", loglevel);
380 GfxFontType type=font->getType();
382 case fontUnknownType:
383 logf("%sType: unknown\n",loglevel);
386 logf("%sType: 0\n",loglevel);
389 logf("%sType: 1\n",loglevel);
392 logf("%sType: 1C\n",loglevel);
395 logf("%sType: 3\n",loglevel);
398 logf("%sType: TrueType\n",loglevel);
403 GBool embedded = font->getEmbeddedFontID(&embRef);
404 name = font->getEmbeddedFontName();
406 logf("%sEmbedded name: %s id: %d\n",loglevel, name, embRef.num);
408 gstr = font->getExtFontFile();
410 logf("%sExternal Font file: %s\n", loglevel, gstr->getCString());
412 // Get font descriptor flags.
413 if(font->isFixedWidth()) logf("%sis fixed width\n", loglevel);
414 if(font->isSerif()) logf("%sis serif\n", loglevel);
415 if(font->isSymbolic()) logf("%sis symbolic\n", loglevel);
416 if(font->isItalic()) logf("%sis italic\n", loglevel);
417 if(font->isBold()) logf("%sis bold\n", loglevel);
420 //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");}
421 //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");}
423 SWFOutputDev::SWFOutputDev()
426 clipping[clippos] = 0;
428 // printf("SWFOutputDev::SWFOutputDev() \n");
431 T1_OUTLINE* gfxPath_to_T1_OUTLINE(GfxState*state, GfxPath*path)
433 int num = path->getNumSubpaths();
435 bezierpathsegment*start,*last;
436 bezierpathsegment*outline = start = new bezierpathsegment();
438 double lastx=0,lasty=0;
439 for(t = 0; t < num; t++) {
440 GfxSubpath *subpath = path->getSubpath(t);
441 int subnum = subpath->getNumPoints();
443 for(s=0;s<subnum;s++) {
445 state->transform(subpath->getX(s),subpath->getY(s),&nx,&ny);
446 int x = (int)((nx-lastx)*0xffff);
447 int y = (int)((ny-lasty)*0xffff);
451 outline->type = T1_PATHTYPE_MOVE;
454 outline->link = (T1_OUTLINE*)new bezierpathsegment();
455 outline = (bezierpathsegment*)outline->link;
460 else if(subpath->getCurve(s) && !cpos)
466 else if(subpath->getCurve(s) && cpos)
477 outline->type = cpos?T1_PATHTYPE_BEZIER:T1_PATHTYPE_LINE;
479 outline->link = (T1_OUTLINE*)new bezierpathsegment();
480 outline = (bezierpathsegment*)outline->link;
488 return (T1_OUTLINE*)start;
490 /*----------------------------------------------------------------------------
491 * Primitive Graphic routines
492 *----------------------------------------------------------------------------*/
494 void SWFOutputDev::stroke(GfxState *state)
496 logf("<debug> stroke\n");
497 GfxPath * path = state->getPath();
499 m.m11 = 1; m.m21 = 0; m.m22 = 1;
500 m.m12 = 0; m.m13 = 0; m.m23 = 0;
501 T1_OUTLINE*outline = gfxPath_to_T1_OUTLINE(state, path);
502 swfoutput_setdrawmode(&output, DRAWMODE_STROKE);
503 swfoutput_drawpath(&output, outline, &m);
505 void SWFOutputDev::fill(GfxState *state)
507 logf("<debug> fill\n");
508 GfxPath * path = state->getPath();
510 m.m11 = 1; m.m21 = 0; m.m22 = 1;
511 m.m12 = 0; m.m13 = 0; m.m23 = 0;
512 T1_OUTLINE*outline = gfxPath_to_T1_OUTLINE(state, path);
513 swfoutput_setdrawmode(&output, DRAWMODE_FILL);
514 swfoutput_drawpath(&output, outline, &m);
516 void SWFOutputDev::eoFill(GfxState *state)
518 logf("<debug> eofill\n");
519 GfxPath * path = state->getPath();
521 m.m11 = 1; m.m21 = 0; m.m22 = 1;
522 m.m12 = 0; m.m13 = 0; m.m23 = 0;
523 T1_OUTLINE*outline = gfxPath_to_T1_OUTLINE(state, path);
524 swfoutput_setdrawmode(&output, DRAWMODE_EOFILL);
525 swfoutput_drawpath(&output, outline, &m);
527 void SWFOutputDev::clip(GfxState *state)
529 logf("<debug> clip\n");
530 GfxPath * path = state->getPath();
532 m.m11 = 1; m.m22 = 1;
533 m.m12 = 0; m.m21 = 0;
534 m.m13 = 0; m.m23 = 0;
535 T1_OUTLINE*outline = gfxPath_to_T1_OUTLINE(state, path);
536 swfoutput_startclip(&output, outline, &m);
537 clipping[clippos] = 1;
539 void SWFOutputDev::eoClip(GfxState *state)
541 logf("<debug> eoclip\n");
542 GfxPath * path = state->getPath();
544 m.m11 = 1; m.m21 = 0; m.m22 = 1;
545 m.m12 = 0; m.m13 = 0; m.m23 = 0;
546 T1_OUTLINE*outline = gfxPath_to_T1_OUTLINE(state, path);
547 swfoutput_startclip(&output, outline, &m);
548 clipping[clippos] = 1;
551 SWFOutputDev::~SWFOutputDev()
553 swfoutput_destroy(&output);
556 GBool SWFOutputDev::upsideDown()
558 logf("<debug> upsidedown?");
561 GBool SWFOutputDev::useDrawChar()
563 logf("<debug> usedrawchar?");
567 void SWFOutputDev::beginString(GfxState *state, GString *s)
569 double m11,m21,m12,m22;
570 logf("<debug> beginstring \"%s\"\n", s->getCString());
571 state->getFontTransMat(&m11, &m12, &m21, &m22);
572 m11 *= state->getHorizScaling();
573 m21 *= state->getHorizScaling();
574 swfoutput_setfontmatrix(&output, m11, -m12, m21, -m22);
578 void SWFOutputDev::drawChar(GfxState *state, double x, double y, double dx, double dy, Guchar c)
580 logf("<debug> drawChar(%f,%f,%f,%f,'%c')\n",x,y,dx,dy,c);
581 // check for invisible text -- this is used by Acrobat Capture
582 if ((state->getRender() & 3) != 3)
584 FontEncoding*enc=state->getFont()->getEncoding();
589 state->transform(x, y, &x1, &y1);
591 swfoutput_drawchar(&output, x1, y1, enc->getCharName(c));
595 void SWFOutputDev::drawChar16(GfxState *state, double x, double y, double dx, double dy, int c)
597 printf("<error> drawChar16(%f,%f,%f,%f,%08x)\n",x,y,dx,dy,c);
601 void SWFOutputDev::endString(GfxState *state)
603 logf("<debug> endstring\n");
606 void SWFOutputDev::startPage(int pageNum, GfxState *state)
609 logf("<debug> startPage %d\n", pageNum);
610 logf("<notice> processing page %d", pageNum);
614 state->transform(state->getX1(),state->getY1(),&x1,&y1);
615 state->transform(state->getX2(),state->getY2(),&x2,&y2);
617 swfoutput_init(&output, swffilename, abs((int)(x2-x1)),abs((int)(y2-y1)));
621 swfoutput_newpage(&output);
624 void SWFOutputDev::drawLink(Link *link, Catalog *catalog)
626 logf("<debug> drawlink\n");
627 double x1, y1, x2, y2, w;
632 link->getBorder(&x1, &y1, &x2, &y2, &w);
637 cvtUserToDev(x1, y1, &x, &y);
638 points[0].x = points[4].x = x;
639 points[0].y = points[4].y = y;
640 cvtUserToDev(x2, y1, &x, &y);
643 cvtUserToDev(x2, y2, &x, &y);
646 cvtUserToDev(x1, y2, &x, &y);
650 LinkAction*action=link->getAction();
652 switch(action->getKind())
655 LinkGoTo*l = (LinkGoTo*)action;
656 s = l->getNamedDest()->getCString();
660 LinkGoToR*l = (LinkGoToR*)action;
661 s = l->getNamedDest()->getCString();
665 LinkLaunch*l = (LinkLaunch*)action;
666 GString * str = new GString(l->getFileName());
667 str->append(l->getParams());
668 s = str->getCString();
672 LinkURI*l = (LinkURI*)action;
673 s = l->getURI()->getCString();
677 LinkNamed*l = (LinkNamed*)action;
678 s = l->getName()->getCString();
681 case actionUnknown: {
682 LinkUnknown*l = (LinkUnknown*)action;
687 logf("<verbose> link to \"%s\"\n", s);
691 void SWFOutputDev::saveState(GfxState *state) {
692 logf("<debug> saveState\n");
695 clipping[clippos] = 0;
698 void SWFOutputDev::restoreState(GfxState *state) {
699 logf("<debug> restoreState\n");
701 if(clipping[clippos])
702 swfoutput_endclip(&output);
708 int SWFOutputDev::setT1Font(char*name, FontEncoding*encoding)
715 for(i=0;i<sizeof(pdf2t1map)/sizeof(mapping);i++)
717 if(!strcmp(name, pdf2t1map[i].pdffont))
719 filename = pdf2t1map[i].filename;
724 for(i=0; i<T1_Get_no_fonts(); i++)
726 char*fontfilename = T1_GetFontFileName (i);
727 if(strstr(fontfilename, filename))
730 pdf2t1map[i].id = mapid;
739 void SWFOutputDev::updateLineWidth(GfxState *state)
741 double width = state->getLineWidth();
742 swfoutput_setlinewidth(&output, width);
745 void SWFOutputDev::updateFillColor(GfxState *state)
748 double opaq = state->getFillOpacity();
749 state->getFillRGB(&rgb);
751 swfoutput_setfillcolor(&output, (char)(rgb.r*255), (char)(rgb.g*255),
752 (char)(rgb.b*255), (char)(opaq*255));
755 void SWFOutputDev::updateStrokeColor(GfxState *state)
758 double opaq = state->getStrokeOpacity();
759 state->getStrokeRGB(&rgb);
761 swfoutput_setstrokecolor(&output, (char)(rgb.r*255), (char)(rgb.g*255),
762 (char)(rgb.b*255), (char)(opaq*255));
765 char*writeEmbeddedFontToFile(GfxFont*font)
767 char*tmpFileName = NULL;
768 char*fileName = NULL;
773 Type1CFontConverter *cvt;
775 Object refObj, strObj;
776 tmpFileName = "/tmp/tmpfont";
777 font->getEmbeddedFontID(&embRef);
779 f = fopen(tmpFileName, "wb");
781 logf("<error> Couldn't create temporary Type 1 font file");
784 if (font->getType() == fontType1C) {
785 if (!(fontBuf = font->readEmbFontFile(&fontLen))) {
787 logf("<error> Couldn't read embedded font file");
790 cvt = new Type1CFontConverter(fontBuf, fontLen, f);
795 font->getEmbeddedFontID(&embRef);
796 refObj.initRef(embRef.num, embRef.gen);
797 refObj.fetch(&strObj);
799 strObj.streamReset();
800 while ((c = strObj.streamGetChar()) != EOF) {
803 strObj.streamClose();
807 fileName = tmpFileName;
809 logf("<error> Embedded font writer didn't create a file");
815 char* gfxFontName(GfxFont* gfxFont)
818 gstr = gfxFont->getName();
820 return gstr->getCString();
824 Ref r=gfxFont->getID();
825 sprintf(buf, "UFONT%d", r.num);
830 void SWFOutputDev::updateFont(GfxState *state)
832 double m11, m12, m21, m22;
834 GfxFont*gfxFont = state->getFont();
841 if(swfoutput_queryfont(&output, gfxFontName(gfxFont)))
843 swfoutput_setfont(&output, gfxFontName(gfxFont), -1, 0);
847 // look for Type 3 font
848 if (!type3Warning && gfxFont->getType() == fontType3) {
849 type3Warning = gTrue;
850 showFontError(gfxFont, 2);
852 //dumpFontInfo ("<notice>", gfxFont);
855 GBool embedded = gfxFont->getEmbeddedFontID(&embRef);
857 if (!gfxFont->is16Bit() &&
858 (gfxFont->getType() == fontType1 ||
859 gfxFont->getType() == fontType1C)) {
861 fileName = writeEmbeddedFontToFile(gfxFont);
866 showFontError(gfxFont,0);
870 t1id = T1_AddFont(fileName);
873 if(gfxFont->getName()) {
874 fontname = gfxFont->getName()->getCString();
875 //logf("<notice> Processing font %s", fontname);
877 if(!fontname || !setT1Font(state->getFont()->getName()->getCString(), gfxFont->getEncoding()))
884 showFontError(gfxFont, 1);
885 if (!gfxFont->is16Bit()) {
886 if (gfxFont->isFixedWidth()) {
888 } else if (gfxFont->isSerif()) {
893 if (gfxFont->isBold())
895 if (gfxFont->isItalic())
897 fontname = fontnames[index];
898 // get width of 'm' in real font and substituted font
899 if ((code = gfxFont->getCharCode("m")) >= 0)
900 w1 = gfxFont->getWidth(code);
903 w2 = fontsizes[index];
904 if (gfxFont->getType() == fontType3) {
905 // This is a hack which makes it possible to substitute for some
906 // Type 3 fonts. The problem is that it's impossible to know what
907 // the base coordinate system used in the font is without actually
908 // rendering the font. This code tries to guess by looking at the
909 // width of the character 'm' (which breaks if the font is a
910 // subset that doesn't contain 'm').
911 if (w1 > 0 && (w1 > 1.1 * w2 || w1 < 0.9 * w2)) {
918 fm = gfxFont->getFontMatrix();
919 v = (fm[0] == 0) ? 1 : (fm[3] / fm[0]);
922 } else if (!gfxFont->isSymbolic()) {
923 // if real font is substantially narrower than substituted
924 // font, reduce the font size accordingly
925 if (w1 > 0.01 && w1 < 0.9 * w2) {
938 setT1Font(fontname, gfxFont->getEncoding());
942 swfoutput_setfont(&output,gfxFontName(gfxFont),t1id, fileName);
947 void SWFOutputDev::drawGeneralImage(GfxState *state, Object *ref, Stream *str,
948 int width, int height, GfxImageColorMap*colorMap, GBool invert,
949 GBool inlineImg, int mask)
954 double x1,y1,x2,y2,x3,y3,x4,y4;
955 state->transform(0, 1, &x1, &y1);
956 state->transform(0, 0, &x2, &y2);
957 state->transform(1, 0, &x3, &y3);
958 state->transform(1, 1, &x4, &y4);
960 if (str->getKind() == strDCT &&
961 (colorMap->getNumPixelComps() == 3 || !mask) )
963 sprintf(fileName, "/tmp/tmp%08x.jpg",lrand48());
964 logf("<verbose> Found jpeg. Temporary storage is %s", fileName);
967 logf("<notice> Page contains jpeg pictures");
970 if (!(fi = fopen(fileName, "wb"))) {
971 logf("<error> Couldn't open temporary image file '%s'", fileName);
974 str = ((DCTStream *)str)->getRawStream();
976 while ((c = str->getChar()) != EOF)
979 swfoutput_drawimagefile(&output, fileName, width, height, x1,y1,x2,y2,x3,y3,x4,y4);
984 logf("<notice> Page contains pbm pictures");
990 void SWFOutputDev::drawImageMask(GfxState *state, Object *ref, Stream *str,
991 int width, int height, GBool invert,
994 drawGeneralImage(state,ref,str,width,height,0,invert,inlineImg,1);
997 void SWFOutputDev::drawImage(GfxState *state, Object *ref, Stream *str,
998 int width, int height,
999 GfxImageColorMap *colorMap, GBool inlineImg)
1001 drawGeneralImage(state,ref,str,width,height,colorMap,0,inlineImg,0);
1005 SWFOutputDev*output = 0;
1007 void pdfswf_init(char*filename, char*userPassword)
1009 GString *fileName = new GString(filename);
1016 initParams(xpdfConfigFile);
1020 if (userPassword && userPassword[0]) {
1021 userPW = new GString(userPassword);
1025 doc = new PDFDoc(fileName, userPW);
1034 doc->getDocInfo(&info);
1035 if (info.isDict()) {
1036 printInfoString(info.getDict(), "Title", "Title: %s\n");
1037 printInfoString(info.getDict(), "Subject", "Subject: %s\n");
1038 printInfoString(info.getDict(), "Keywords", "Keywords: %s\n");
1039 printInfoString(info.getDict(), "Author", "Author: %s\n");
1040 printInfoString(info.getDict(), "Creator", "Creator: %s\n");
1041 printInfoString(info.getDict(), "Producer", "Producer: %s\n");
1042 printInfoDate(info.getDict(), "CreationDate", "CreationDate: %s\n");
1043 printInfoDate(info.getDict(), "ModDate", "ModDate: %s\n");
1048 printf("Pages: %d\n", doc->getNumPages());
1050 // print linearization info
1051 printf("Linearized: %s\n", doc->isLinearized() ? "yes" : "no");
1053 // print encryption info
1054 printf("Encrypted: ");
1055 if (doc->isEncrypted()) {
1056 printf("yes (print:%s copy:%s change:%s addNotes:%s)\n",
1057 doc->okToPrint() ? "yes" : "no",
1058 doc->okToCopy() ? "yes" : "no",
1059 doc->okToChange() ? "yes" : "no",
1060 doc->okToAddNotes() ? "yes" : "no");
1061 /*ERROR: This pdf is encrypted, and disallows copying.
1062 Due to the DMCA, paragraph 1201, (2) A-C, circumventing
1063 a technological measure that efficively controls access to
1064 a protected work is violating American law.
1065 See www.eff.org for more information about DMCA issues.
1067 if(!doc->okToCopy()) {
1068 printf("PDF disallows copying. Bailing out.\n");
1071 if(!doc->okToChange() || !doc->okToAddNotes())
1072 swfoutput_setprotected();
1079 output = new SWFOutputDev();
1082 void pdfswf_drawonlyshapes()
1087 void pdfswf_ignoredraworder()
1089 ignoredraworder = 1;
1092 void pdfswf_jpegquality(int val)
1095 if(val>100) val=100;
1099 void pdfswf_setoutputfilename(char*_filename)
1101 swffilename = _filename;
1104 void pdfswf_convertpage(int page)
1106 doc->displayPage((OutputDev*)output, page, /*zoom*/100, /*rotate*/0, /*doLinks*/(int)1);
1109 int pdfswf_numpages()
1111 return doc->getNumPages();
1117 logf("<debug> pdfswf.cc: pdfswf_close()");
1121 // check for memory leaks
1122 Object::memCheck(stderr);