X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=pdf2swf%2Fpdf2swf.cc;h=9e49a088be08ecb30240f55198b8758e45c0498e;hb=d384bf026261535d5bdddcc36d2e58325ac9e795;hp=7f064ccd0bc1c0fcd9fad0aa992bc655dcd05193;hpb=c8e0d0bd8cc515f60ab6a1248caf6fdc8945d89e;p=swftools.git diff --git a/pdf2swf/pdf2swf.cc b/pdf2swf/pdf2swf.cc index 7f064cc..9e49a08 100644 --- a/pdf2swf/pdf2swf.cc +++ b/pdf2swf/pdf2swf.cc @@ -3,9 +3,21 @@ Part of the swftools package. - Copyright (c) 2001 Matthias Kramm - - This file is distributed under the GPL, see file COPYING for details */ + Copyright (c) 2001,2002,2003 Matthias Kramm + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include #include @@ -16,12 +28,24 @@ #ifdef HAVE_DIRENT_H #include #endif +#ifdef HAVE_SYS_STAT_H +#include +#endif #include "../lib/args.h" #include "SWFOutputDev.h" #include "t1lib.h" extern "C" { #include "log.h" } +#include "xpdf/gfile.h" + +#ifndef WIN32 +#define FONTDIR SWFTOOLS_DATADIR "/fonts" +#define SWFDIR SWFTOOLS_DATADIR "/swfs" +#else +#define FONTDIR "C:\\swftools\\fonts" +#define SWFDIR "C:\\swftools\\swfs" +#endif static char * outputname = 0; static int loglevel = 3; @@ -160,14 +184,14 @@ int args_callback_option(char*name,char*val) { else if (!strcmp(name, "l")) { char buf[256]; - sprintf(buf, "%s/swfs/default_loader.swf", SWFTOOLS_DATADIR); + sprintf(buf, "%s/default_loader.swf", SWFDIR); preloader = strdup(buf); return 0; } else if (!strcmp(name, "b")) { char buf[256]; - sprintf(buf, "%s/swfs/default_viewer.swf", SWFTOOLS_DATADIR); + sprintf(buf, "%s/default_viewer.swf", SWFDIR); viewer = strdup(buf); return 0; } @@ -179,7 +203,7 @@ int args_callback_option(char*name,char*val) { } else { - systemf("ls %s/swfs/*_loader.swf", SWFTOOLS_DATADIR); + systemf("ls %s/*_loader.swf", SWFDIR); if(!system_quiet) printf("\n"); exit(1); @@ -194,7 +218,7 @@ int args_callback_option(char*name,char*val) { } else { - systemf("ls %s/swfs/*_viewer.swf", SWFTOOLS_DATADIR); + systemf("ls %s/*_viewer.swf", SWFDIR); if(!system_quiet) printf("\n"); exit(1); @@ -325,7 +349,8 @@ void addfontdir(FILE*database, char* dirname, int*numfonts, char*searchpath) strcat(searchpath, ":"); strcat(searchpath, dirname); } - msg(" Adding %s to search path\n", dirname); + if(!numfonts) + msg(" Adding %s to search path\n", dirname); DIR*dir = opendir(dirname); if(!dir) { @@ -353,12 +378,24 @@ void addfontdir(FILE*database, char* dirname, int*numfonts, char*searchpath) if(database && type==1) { char buf[256],a; FILE*fi; +#ifdef WIN32 + sprintf(buf, "%s\\%s", dirname,name); +#else sprintf(buf, "%s/%s", dirname,name); +#endif fi = fopen(buf, "rb"); if(!fi || !fread(&a,1,1,fi)) { msg(" Couldn't read from %s", buf); } - fprintf(database, "%s\n", buf); + +#ifdef WIN32 +/* might also work for all other systems, but we *need* it for win32 */ + if(!strncmp(buf, FONTDIR, strlen(FONTDIR))) + fprintf(database, "%s\n", buf+strlen(FONTDIR)); + else +#endif + fprintf(database, "%s\n", buf); + msg(" Found font %s\n", buf); fclose(fi); } @@ -396,6 +433,17 @@ int main(int argn, char *argv[]) int numfonts = 0; int t; char t1searchpath[1024]; + +#if defined(WIN32) && defined(HAVE_STAT) && defined(HAVE_SYS_STAT_H) + FILE*test = fopen(FONTDIR "\\d050000l.afm", "rb"); + if(!test) { + fprintf(stderr, "Couldn't find file " FONTDIR "\\d050000l.afm- pdf2swf not installed properly? OS says:\n"); + perror("open"); + exit(1); + } + fclose(test); +#endif + #ifdef HAVE_SRAND48 srand48(time(0)); #else @@ -434,31 +482,40 @@ int main(int argn, char *argv[]) exit(0); } - msg(" reading font files from %s/fonts\n", SWFTOOLS_DATADIR); + msg(" reading font files from %s\n", FONTDIR); //TODO: use tempnam here. Check if environment already contains a //T1LIB_CONFIG. - putenv( "T1LIB_CONFIG=/tmp/t1lib.config.tmp"); - FILE*db = fopen("/tmp/FontDataBase", "wb"); - FILE*fi = fopen("/tmp/t1lib.config.tmp", "wb"); + char buf1[256],buf2[256],buf3[256]; + char* t1lib_config = mktmpname(buf1); + char* fontdatabase = mktmpname(buf2); + + sprintf(buf3, "T1LIB_CONFIG=%s", t1lib_config); + putenv(buf3); + + FILE*db = fopen(fontdatabase, "wb"); + FILE*fi = fopen(t1lib_config, "wb"); if(!db || !fi) { - fprintf(stderr, "Couldn't create temporary file in /tmp/\n"); + if(!db) fprintf(stderr, "Couldn't create temporary file %s\n",fontdatabase); + if(!fi) fprintf(stderr, "Couldn't create temporary file %s\n",t1lib_config); exit(1); } t1searchpath[0] = 0; #ifdef HAVE_DIRENT_H - sprintf(buf, "%s/fonts",SWFTOOLS_DATADIR); // pass 1 - addfontdir(0, buf, &numfonts, 0); + addfontdir(0, FONTDIR, &numfonts, 0); for(t=0;t --preloader option without --viewer option doesn't make very much sense."); - ret = systemf("swfcombine `swfdump -r %s` %s/swfs/PreLoaderTemplate.swf loader=%s movie=%s -o %s", - preloader, SWFTOOLS_DATADIR, preloader, outputname, outputname); + ret = systemf("swfcombine `swfdump -r %s` %s/PreLoaderTemplate.swf loader=%s movie=%s -o %s", + preloader, SWFDIR, preloader, outputname, outputname); if(!system_quiet) printf("\n"); } if(preloader && viewer) { systemf("swfcombine %s viewport=%s -o __tmp__.swf", viewer, outputname, outputname); - systemf("swfcombine `swfdump -XY %s` `swfdump -r %s` %s/swfs/PreLoaderTemplate.swf loader=%s movie=__tmp__.swf -o %s", - outputname, preloader, SWFTOOLS_DATADIR, preloader, outputname); + systemf("swfcombine `swfdump -XY %s` `swfdump -r %s` %s/PreLoaderTemplate.swf loader=%s movie=__tmp__.swf -o %s", + outputname, preloader, SWFDIR, preloader, outputname); systemf("rm __tmp__.swf"); } - unlink("/tmp/FontDataBase"); + unlink(fontdatabase); return 0; }