Trim and resize PSD, convert to GIF - does not work
Posted: 2012-01-07T04:49:45-07:00
I'm trying to convert a bunch of PSD files by trimming the transparent space, resizing and converting to GIF.
Find a sample at http://www.ovula.de/images/ovula-caweli ... narzt1.psd
First try:
Result: http://www.ovula.de/images/ovula-caweli ... narzt1.gif
The result is resized, but the transparent space not cropped.
Second try:
Result: http://www.ovula.de/images/ovula-caweli ... rimmed.gif
The result is trimmed o.k, but somehow some blue border at the top and a GIF animation sneaked into the result.
I have similar issues with about 25 of 50 images. The others convert fine.
How can I resolve this problem?
Find a sample at http://www.ovula.de/images/ovula-caweli ... narzt1.psd
First try:
Code: Select all
convert zahnarzt1.psd -trim -resize 500x500 zahnarzt1.gif
Result: http://www.ovula.de/images/ovula-caweli ... narzt1.gif
The result is resized, but the transparent space not cropped.
Second try:
Code: Select all
convert zahnarzt1.psd -trim zahnarzt1.trimmed.psd
convert zahnarzt1.trimmed.psd -resize 500x500 zahnarzt1.trimmed.gif
The result is trimmed o.k, but somehow some blue border at the top and a GIF animation sneaked into the result.
I have similar issues with about 25 of 50 images. The others convert fine.
How can I resolve this problem?