Le 30/01/2011 13:10, Magnus Johansson a écrit :
> Salut Jean-Baptiste, and thank you for your response. How do I insert a high
> resolution preview in my EPS images? I do not know how to manipulate the EPS
> files themselves, I just insert the result I get from the other program into
> OOo and the ODT document.
Hi Magnus,

Here is a script I did for Linux to convert a PS into a EPS file and
include a preview in this EPS.

> #conversion d'un ensemble de fichiers ps en eps
> #addition d'une image de prévisualisation dans les fichiers eps créés
> # conversion ps -> eps
>
> ls *.ps > list
> for i in `cat list`
>     do  
>         echo  \>\>\>\>\> traitement de "$i"
>         ps2eps -f -R + "$i"
>     done
> exit
> #addition de la preview en 72 et 600 dpi
> ls *.eps > list
> #exemple : epstool -t6p --dpi 600 *.eps ../eps_files/
> for i in `cat list`
>     do  
>         echo \>\>\>\>\> traitement de "$i"
>         epstool -t6p --dpi 72 "$i" ./images_72/"$i"
>         epstool -t6p --dpi 600 "$i" ./images_600/"$i"
>     done

Best regards.
JBF

-- 
Seuls des formats ouverts peuvent assurer la pérennité de vos documents.


-- 
Unsubscribe instructions: E-mail to [email protected]
Archive: http://listarchives.documentfoundation.org/www/discuss/
*** All posts to this list are publicly archived for eternity ***

Reply via email to