Hi
I want to convert a .png file to .jpg file using convert command of ImageMagick as follows:
convert file.png file.jpg
The convert command is executed with no errors, but there is no file.jpg produced.
Would you please help me in this regard?
Thanks in advance
Try naming the output file ...
Search found 2 matches
- 2010-02-01T01:03:13-07:00
- Forum: Users
- Topic: ImageMagick convert problem
- Replies: 3
- Views: 9297
- 2010-02-01T00:22:54-07:00
- Forum: Users
- Topic: RE: convert -crop: suppress creation of "extra" image file.
- Replies: 1
- Views: 11366
RE: convert -crop: suppress creation of "extra" image file.
EDIT: My bad. I discovered my mistake. In a command such as
convert gae39-3945-241-011.jpg -crop 800x1200x0x0 +repage kellybeach.jpg
...you can plainly see I had too many 'x' -es and not a single '+'. When I corrected this error in syntax, referring back here for any mistakes I might have made ...
convert gae39-3945-241-011.jpg -crop 800x1200x0x0 +repage kellybeach.jpg
...you can plainly see I had too many 'x' -es and not a single '+'. When I corrected this error in syntax, referring back here for any mistakes I might have made ...