Hi, I have a question about converting eps files to png format. I used command
convert -rotate -90 -flatten -density 300 image01.eps image01.png. The resulting png file looks OK, but the right-most edges (about 5% of the whole length of the picture) is missing. I cannot attach image here, so if anyone has a clue about how to deal with it, or is interested in my case, please email me back at wtcipher@gmail.com, I can send you the original eps files and my converted png files. Thanks!
convert eps to png, edge is missing, why?
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: convert eps to png, edge is missing, why?
try
convert -density 300 image01.eps -rotate -90 -flatten +repage image01.png
convert -density 300 image01.eps -rotate -90 -flatten +repage image01.png
Re: convert eps to png, edge is missing, why?
Hi, thank you very much for your help. But, unfortunately, this still doesn't work. I have no idea of how to put figure here, so I cannot show you the results. Do you mind send me your email address? My email address is wtcipher@gmail.com.fmw42 wrote:try
convert -density 300 image01.eps -rotate -90 -flatten +repage image01.png
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: convert eps to png, edge is missing, why?
Post your input an output image to some free image hosting server. Then put a link here to those images.wtcipher wrote:Hi, thank you very much for your help. But, unfortunately, this still doesn't work. I have no idea of how to put figure here, so I cannot show you the results. Do you mind send me your email address? My email address is wtcipher@gmail.com.fmw42 wrote:try
convert -density 300 image01.eps -rotate -90 -flatten +repage image01.png
What version of IM are you using, what platform and what version of ghostscript?