Automatized .ps into .tiff conversion


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Automatized .ps into .tiff conversion
# 1  
Old 01-18-2006
Power Automatized .ps into .tiff conversion

Hi everybody,

I have more tan 300 images postscripts (.ps) in my UNIX enviroment.

I would like to have all these images in a single Power Point presentation (windows enviroment).

Anybody has a clue how to convert all those .ps file into a format recognized by Power Point in an automatic way? (In order not to repeat the process hundreds of times.....)

Thank you very much,

Pablo.
# 2  
Old 01-18-2006
ghostscript will convert ps to other graphic formats
example:
Code:
gs -sDEVICE=gif8 -sOutputFile=blah.gif -r50 blah.ps

makes a gif file

So,
Code:
for file in `ls -1 *.ps`
do
     tmp=`basename $file`
     $file1="$tmp".gif
     gs -sDEVICE=gif8 -sOutputFile=$file1 -r50 $file
done

will convert all of the ps files in the current directory.

Download ghostscript here:

http://www.ghostscript.com/
 
Login or Register to Ask a Question

Previous Thread | Next Thread

4 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to identify a corrupted TIFF image

Hi everyone! Here's my first thread... I have to recognize if a TIFF image is corrupted or not. I've always usedfile -b to identify file type, but I've experienced that sometimes it returns "TIFF image data, little endian" even if the image is truncated or something. Do you know another trick... (6 Replies)
Discussion started by: canduc17
6 Replies

2. UNIX for Dummies Questions & Answers

How to convert Unix executable file to Tiff

Hi, I know nothing about Unix. Recently received image files from a client. Mac sees it as a Unix executable file. How do I convert these files to Tiff? Thanks for helping. (1 Reply)
Discussion started by: Pet Teoh
1 Replies

3. UNIX for Dummies Questions & Answers

View TIFF images from UNIX

I am new to unix. I want to know if there is any tool or plugin available for AIX unix system through which a user can see the TIFF images. Below are the details: Our application runs on AIX Unix box. The users log in to the application through telnet clients running on Windows 2000/XP systems.... (1 Reply)
Discussion started by: erpankajgupta
1 Replies

4. UNIX for Dummies Questions & Answers

Printing .TIFF files

Please forgive my ignorance...but I was hoping a Unix guru could help me with sending .TIFF files to an HP color laserjet 8550. I understand that .TIFF is not one of the languages used in this case, but I understood that there might be some commands that could be added to the queue to allow it to... (3 Replies)
Discussion started by: elbryan
3 Replies
Login or Register to Ask a Question