X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=pdf2swf%2Fpdf2swf.cc;h=143b867ea3a7fdc12b4b4e139d7827030acc42dd;hb=ad7f1930dea85253c37ccc377ddeb2de281f9ee2;hp=c943c691848a51ccf5c8262e0037c2f0811b0274;hpb=3dab974276d6a99794e4dd33622a1dc098e4a27c;p=swftools.git diff --git a/pdf2swf/pdf2swf.cc b/pdf2swf/pdf2swf.cc index c943c69..143b867 100644 --- a/pdf2swf/pdf2swf.cc +++ b/pdf2swf/pdf2swf.cc @@ -51,6 +51,7 @@ static char * password = 0; static char * preloader = 0; static char * viewer = 0; +static int nup = 0; char* fontpaths[256]; int fontpathpos = 0; @@ -87,11 +88,23 @@ int args_callback_option(char*name,char*val) { else if (!strcmp(name, "v")) { loglevel ++; + setConsoleLogging(loglevel); + return 0; + } + else if (!strcmp(name, "2")) + { + nup = 2; + return 0; + } + else if (!strcmp(name, "4")) + { + nup = 4; return 0; } else if (!strcmp(name, "q")) { loglevel --; + setConsoleLogging(loglevel); system_quiet = 1; return 0; } @@ -331,6 +344,9 @@ void args_callback_usage(char*name) " graphic errors)\n"); printf("-s filloverlap Make intersecting shapes overlap, instead of canceling each\n" " other out. (Needed for some Powerpoint PDFs)\n"); + //deliberately undocumented (for now) + //printf("-2 Put 2 pages into each frame.\n"); + //printf("-4 Put 4 pages into each frame.\n"); printf("Postprocessing options:\n"); #ifndef SYSTEM_BACKTICKS printf("(They might not work because your system call doesn't support command substitution)\n"); @@ -341,56 +357,6 @@ void args_callback_usage(char*name) printf("-L --preloader=filename Link preloader \"name\" to the pdf (\"%s -L\" for list)\n",name); } -#ifdef HAVE_DIRENT_H -static void addfontdir(char* dirname, int*numfonts) -{ - if(!numfonts) - msg(" Adding %s to search path\n", dirname); - - DIR*dir = opendir(dirname); - if(!dir) { - msg(" Couldn't open directory %s\n", dirname); - return; - } - struct dirent*ent; - while(1) { - ent = readdir (dir); - if (!ent) - break; - int l; - char*name = ent->d_name; - char type = 0; - if(!name) continue; - l=strlen(name); - if(l<4) - continue; - if(!strncasecmp(&name[l-4], ".pfa", 4)) - type=1; - if(!strncasecmp(&name[l-4], ".pfb", 4)) - type=3; - if(!strncasecmp(&name[l-4], ".ttf", 4)) - type=2; - if(type) - { - char*fontname = (char*)malloc(strlen(dirname)+strlen(name)+2); - strcpy(fontname, dirname); -#ifdef WIN32 - strcat(fontname, "\\"); -#else - strcat(fontname, "/"); -#endif - strcat(fontname, name); - if(!numfonts) - msg(" Adding %s to fonts", fontname); - pdfswf_addfont(fontname); - if(numfonts) - (*numfonts)++; - } - } - closedir(dir); -} -#endif - static char* stripfilename(char*filename, char*newext) { char*last1 = strrchr(filename, '/'); @@ -417,6 +383,10 @@ int main(int argn, char *argv[]) int numfonts = 0; int t; char t1searchpath[1024]; + int nup_pos = 0; + int x,y; + + initLog(0,-1,0,0,-1,loglevel); #if defined(WIN32) && defined(HAVE_STAT) && defined(HAVE_SYS_STAT_H) FILE*test = fopen(FONTDIR "\\d050000l.afm", "rb"); @@ -436,7 +406,6 @@ int main(int argn, char *argv[]) #endif #endif processargs(argn, argv); - initLog(0,-1,0,0,-1,loglevel); if(!filename) { @@ -466,20 +435,11 @@ int main(int argn, char *argv[]) exit(0); } -#ifdef HAVE_DIRENT_H - // pass 1 - addfontdir(FONTDIR, &numfonts); + /* add fonts */ + pdfswf_addfontdir(FONTDIR); for(t=0;t Couldn't find any fonts!"); -#endif pdf_doc_t* pdf = pdf_init(filename, password); if(!pdf) { @@ -496,11 +456,34 @@ int main(int argn, char *argv[]) } if(is_in_range(t, pagerange)) { pdf_page_t*page = pdf_getpage(pdf, t); - pdf_page_render(page, swf); + if(nup) { + pdf_page_info_t* info = pdf_page_getinfo(page); + if(nup_pos%nup == 0) { + pdf_page_render(page, swf); + x = info->xMax; + y = info->yMax; + } else if(nup_pos%nup == 1) { + pdf_page_rendersection(page, swf, x, 0, info->xMin+x, info->yMin, info->xMax+x, info->yMax); + } else if(nup_pos%nup == 2) { + pdf_page_rendersection(page, swf, 0, y, info->xMin, info->yMin+y, info->xMax, info->yMax+y); + } else if(nup_pos%nup == 3) { + pdf_page_rendersection(page, swf, x, y, info->xMin+x, info->yMin+y, info->xMax+x, info->yMax+y); + } + if(nup_pos % nup == nup-1) + swf_output_pagefeed(swf); + + pdf_page_info_destroy(info); + } else { + pdf_page_render(page, swf); + swf_output_pagefeed(swf); + } + pdf_page_destroy(page); } + nup_pos++; } - swf_output_save(swf, outputname); + if(!swf_output_save(swf, outputname)) + exit(1); swf_output_destroy(swf); pdf_destroy(pdf);