Search found 8 matches
- 2011-02-16T02:56:17-07:00
- Forum: Users
- Topic: path-information are scaling down
- Replies: 2
- Views: 5080
Re: path-information are scaling down
Ok I think I was wrong. What I tried to explain also happens if I use -crop . Problem: The clipping-path is relative to the new, converted image. What I need is the clipping-path applied to the new (alter convert) image with the offset and scale of the old (before convert) image. Example: I souround ...
- 2011-02-15T11:32:22-07:00
- Forum: Users
- Topic: path-information are scaling down
- Replies: 2
- Views: 5080
path-information are scaling down
Hello,
the path-information are scaling down if I use -trim . I think by the amount of the trimmed area. The path should keep the same scale as before because I use it for clipping. How can I just trim the image and dont touch the path?
Thank you
the path-information are scaling down if I use -trim . I think by the amount of the trimmed area. The path should keep the same scale as before because I use it for clipping. How can I just trim the image and dont touch the path?
Thank you
- 2011-01-21T05:19:04-07:00
- Forum: Users
- Topic: Convert PSD to TIFF and apply clipping-path
- Replies: 5
- Views: 12957
Re: Convert PSD to TIFF and apply clipping-path
Ok thank you.. this command also does it right: convert gmw.psd -profile "C:\Program Files\ImageMagick-6.6.7-Q16\config\sRGB.icm" -alpha transparent -clip -alpha opaque out.tiff I finaly found out what the problem is: TIFF-files use the alpha-channel for transparency. It depends on a program whether ...
- 2011-01-20T06:48:29-07:00
- Forum: Users
- Topic: Convert PSD to TIFF and apply clipping-path
- Replies: 5
- Views: 12957
Re: Convert PSD to TIFF and apply cliping-path
Ok I found out, that -strip removes the clipping-path. So if I dont use -strip and convert a PSD to a PSD with the command (see above) I get the right result. But I want to convert the PSD to a TIFF. And if I try that I get a file where the image has been clipped with white but not with transparency ...
- 2011-01-19T03:21:04-07:00
- Forum: Users
- Topic: Convert PSD to TIFF and apply clipping-path
- Replies: 5
- Views: 12957
Convert PSD to TIFF and apply clipping-path
Hello again. I try to convert a PSD file to TIFF and remove the background by using a cliping-path. This works fine with this command: convert source.psd -background white -fill white -draw "color 0 0 reset" -transparent white -clip -draw "Image Copy 0,0 0,0 source.psd" -strip out.tiff But the ...
- 2011-01-17T02:39:51-07:00
- Forum: Users
- Topic: Knockout PSD path
- Replies: 2
- Views: 4872
Re: Knockout PSD path
Ok it works with this comand. But I lose the path-information in the result-file. Does anybody know how to apply them?
- 2011-01-17T01:29:40-07:00
- Forum: Users
- Topic: Knockout PSD path
- Replies: 2
- Views: 4872
Re: Knockout PSD path
No ideas?
- 2011-01-13T07:56:13-07:00
- Forum: Users
- Topic: Knockout PSD path
- Replies: 2
- Views: 4872
Knockout PSD path
Hello, i try to delete the inverted path af an PSD-file, make the deleted part transparent and save the file. I found a solution that works for TIFF-files: convert source.tif -background white -fill white -draw "color 0 0 reset" -transparent white -clip -draw "Image Copy 0,0 0,0 source.tif" -strip ...