The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
Google UNIX.COM


UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !!

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
Tiff Plugin 0.3.2 (Default branch) iBot Software Releases - RSS News 0 03-27-2008 06:00 PM
View TIFF images from UNIX erpankajgupta UNIX for Dummies Questions & Answers 1 12-15-2006 08:00 AM
Printing .TIFF files elbryan UNIX for Dummies Questions & Answers 3 09-05-2001 11:12 AM

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 01-18-2006
Registered User
 

Join Date: Jan 2006
Posts: 5
Red face 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.
Reply With Quote
Forum Sponsor
  #2 (permalink)  
Old 01-18-2006
...@...
 

Join Date: Feb 2004
Location: NM
Posts: 3,465
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/
Reply With Quote
Google UNIX.COM
Reply

Thread Tools
Display Modes




All times are GMT -7. The time now is 07:39 AM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited.
The UNIX and Linux Forums Content Copyright ©1993-2008 The CEP Blog All Rights Reserved -Ad Management by RedTyger Visit The Global Fact Book

Content Relevant URLs by vBSEO 3.2.0