-background none doesn't work.
Don't know why
Search found 7 matches
- 2016-10-21T02:28:18-07:00
- Forum: Users
- Topic: Convert .tif with layers in .png
- Replies: 9
- Views: 4167
- 2016-10-21T02:08:28-07:00
- Forum: Users
- Topic: Convert .tif with layers in .png
- Replies: 9
- Views: 4167
Re: Convert .tif with layers in .png
I found the solution for my problem
convert test.tif \( -clone 0 -alpha on -channel rgba -evaluate set 0 \) -delete 0 -background none -layers merge test.png
convert test.tif \( -clone 0 -alpha on -channel rgba -evaluate set 0 \) -delete 0 -background none -layers merge test.png
- 2016-10-21T02:01:53-07:00
- Forum: Users
- Topic: Convert .tif with layers in .png
- Replies: 9
- Views: 4167
Re: Convert .tif with layers in .png
if i try this
convert test.tif \( -clone 0 -alpha on -channel rgba -evaluate set 0 \) \( -clone 1 \) -delete 0,1 -background none -layers merge test.png
Almost everything looks fine, just the sequence of the layers is wrong
convert test.tif \( -clone 0 -alpha on -channel rgba -evaluate set 0 \) \( -clone 1 \) -delete 0,1 -background none -layers merge test.png
Almost everything looks fine, just the sequence of the layers is wrong
- 2016-10-21T01:56:02-07:00
- Forum: Users
- Topic: Convert .tif with layers in .png
- Replies: 9
- Views: 4167
Re: Convert .tif with layers in .png
Okay, the combination of the layers is right, thanks, but now my background ist white.
- 2016-10-21T01:17:44-07:00
- Forum: Users
- Topic: Convert .tif with layers in .png
- Replies: 9
- Views: 4167
Re: Convert .tif with layers in .png
The result should be a single png with the layers combined.
- 2016-10-21T00:58:15-07:00
- Forum: Users
- Topic: Convert .tif with layers in .png
- Replies: 9
- Views: 4167
Re: Convert .tif with layers in .png
Oh, i'm using ImageMagick 6.9.6-2 Q16 x86_64 2016-10-21
- 2016-10-21T00:54:48-07:00
- Forum: Users
- Topic: Convert .tif with layers in .png
- Replies: 9
- Views: 4167
Convert .tif with layers in .png
Hi, i'm searching for a smart solution for converting tif files, cmyk, with 2 or more layers, without clipping path or any separate masks and no background (transparent) in a png with transparency I found this here: convert test_file.tif \( -clone 0 -alpha on -channel rgba -evaluate set 0 ...