Search found 10 matches
- 2019-05-01T04:42:45-07:00
- Forum: Users
- Topic: convert cmyk eps to tiff & keep transparency
- Replies: 16
- Views: 9029
Re: convert cmyk eps to tiff & keep transparency
That's right, because I don't want to fill the color (0,0,0,3) using antialias. Afterwards scaling the image it's turned on again to have smooth edges.
- 2019-04-30T05:52:45-07:00
- Forum: Users
- Topic: convert cmyk eps to tiff & keep transparency
- Replies: 16
- Views: 9029
Re: convert cmyk eps to tiff & keep transparency
This one finally solved all issues (tested with IM 6.9 on Ubuntu 18.04) convert -quiet -density 1200 -depth 8 -colorspace SRGB +antialias eps:"test02.eps" -colorspace CMYK -transparent 'cmyk(0,0,0,3)' -antialias -resize 1700x1700 -repage 0x0 -density 300 -strip -alpha Extract -negate +write mpr:MASK ...
- 2019-04-25T03:18:13-07:00
- Forum: Users
- Topic: convert cmyk eps to tiff & keep transparency
- Replies: 16
- Views: 9029
Re: convert cmyk eps to tiff & keep transparency
I'm on the right track, but there's still an issue taking the colorspace cmyk into the second conversion. Running the command without works like a charm. convert -quiet -density 300 -background None -colorspace sRGB "test02.eps" -alpha Extract +write mpr:MASK +delete -density 300 -colorspace CMYK ...
- 2019-04-24T07:38:32-07:00
- Forum: Users
- Topic: convert cmyk eps to tiff & keep transparency
- Replies: 16
- Views: 9029
Re: convert cmyk eps to tiff & keep transparency
... what gave me a clue about using a mask (see below). Now the only issue is to get this one running as an one-liner-command as decribed before. Is it possible to concat those separate commands into one and use some sort of temporary file instead of a physical one (here mask02.png)? convert -quiet ...
- 2019-04-24T07:26:40-07:00
- Forum: Users
- Topic: convert cmyk eps to tiff & keep transparency
- Replies: 16
- Views: 9029
Re: convert cmyk eps to tiff & keep transparency
You're right, the only way would be to use the RGB colorspace. The problem is thtat the colours are mixed up converting it back to a CMYK image. Even if I use the right color profiles I'm not able to get the correct color back.
- 2019-04-24T06:18:49-07:00
- Forum: Users
- Topic: convert cmyk eps to tiff & keep transparency
- Replies: 16
- Views: 9029
Re: convert cmyk eps to tiff & keep transparency
Here's one of my tries having already using density. convert -quiet -density 1200 -colorspace CMYK -channel RGBA -alpha on +antialias eps:"test01.eps" -background 'cmyk(0,0,0,0)' -fill transparent -opaque 'cmyk(0,0,0,1)' -antialias -resize 1700x1700 -repage 0x0 -density 300 -depth 8 -compress lzw ...
- 2019-04-24T06:08:22-07:00
- Forum: Users
- Topic: convert cmyk eps to tiff & keep transparency
- Replies: 16
- Views: 9029
Re: convert cmyk eps to tiff & keep transparency
We're using ImageMagick 6.8.9-9 Q16 x86_64 2018-09-28 on a Ubuntu 18.04 LTS. There can always be only one image submitted to the convert function through the frontend. Those values are from 0 to 100 with substractive color mixing. Therefore CMYK(0,0,0,1) is near to white and should be transparent as ...
- 2019-04-24T05:51:38-07:00
- Forum: Users
- Topic: convert cmyk eps to tiff & keep transparency
- Replies: 16
- Views: 9029
Re: convert cmyk eps to tiff & keep transparency
Maybe one more important note.
Our endpoint only only allows us to use "one-liner convert commands". So it might be not possible to reuse images etc.
Our endpoint only only allows us to use "one-liner convert commands". So it might be not possible to reuse images etc.
- 2019-04-24T05:32:19-07:00
- Forum: Users
- Topic: convert cmyk eps to tiff & keep transparency
- Replies: 16
- Views: 9029
Re: convert cmyk eps to tiff & keep transparency
Should be CMYK
- 2019-04-24T00:19:30-07:00
- Forum: Users
- Topic: convert cmyk eps to tiff & keep transparency
- Replies: 16
- Views: 9029
convert cmyk eps to tiff & keep transparency
Hi there, I'm almost finished reading all posts about this issue and I've also tried dozens of tipps to convert my images precisely to a transparent tiff. :? - transparent #000 > drops the required white areas - floodfill +0+0 > corrupts the image - colorspace RGB & and RGBA > distorts the colors ...