Hi all,
Thanks so much for the help. I finally got it done this way.
#!/bin/bash
# Loop through all files ending in ".ps"
for f in *.ps; do
# Determine output filename
out=${f%%ps}
out="${out}png"
# Show the command we would run
gs -dSAFER -dBATCH -dNOPAUSE -sDEVICE=png16m ...
Search found 3 matches
- 2016-06-03T22:48:09-07:00
- Forum: Users
- Topic: Help on PS files
- Replies: 5
- Views: 2998
- 2016-06-03T22:00:26-07:00
- Forum: Users
- Topic: Help on PS files
- Replies: 5
- Views: 2998
Re: Help on PS files
Hi fmw42
thanks much for the reply.
my version is ImageMagick 6.7.7-10
When I use ghostscript command
gs -dEPSCrop -c "<</Orientation 3>> setpagedevice" -f plot001.ps -c quit
I can see the image in correct orientation.
Still I dont know how to save it in this orientation and change background to ...
thanks much for the reply.
my version is ImageMagick 6.7.7-10
When I use ghostscript command
gs -dEPSCrop -c "<</Orientation 3>> setpagedevice" -f plot001.ps -c quit
I can see the image in correct orientation.
Still I dont know how to save it in this orientation and change background to ...
- 2016-06-03T20:17:44-07:00
- Forum: Users
- Topic: Help on PS files
- Replies: 5
- Views: 2998
Help on PS files
Hi,
I have these .ps files with me. I have few basic questions as Im totally new to imagemagick.
https://drive.google.com/open?id=0BzSCwxiXMHrZVTBuZlducjRQWWs
1. The .ps files I have are rotated. How can I orient them correctly.
when I tried convert -rotate 90 only a part of the file is shown ...
I have these .ps files with me. I have few basic questions as Im totally new to imagemagick.
https://drive.google.com/open?id=0BzSCwxiXMHrZVTBuZlducjRQWWs
1. The .ps files I have are rotated. How can I orient them correctly.
when I tried convert -rotate 90 only a part of the file is shown ...