![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Rules & FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| 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 !! |
|
|
||||
| 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 |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
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. |
| Forum Sponsor | ||
|
|
|
|||
|
ghostscript will convert ps to other graphic formats
example: Code:
gs -sDEVICE=gif8 -sOutputFile=blah.gif -r50 blah.ps So, Code:
for file in `ls -1 *.ps`
do
tmp=`basename $file`
$file1="$tmp".gif
gs -sDEVICE=gif8 -sOutputFile=$file1 -r50 $file
done
Download ghostscript here: http://www.ghostscript.com/ |
|||
| Google UNIX.COM |