That's a great tip, thanks for that! It's amazing what IM can do when you find out how to tell it to it.
Regarding the original problem of -draw implicitly operating in RGB, I think it would be be a good idea to add a notice regarding that to the official docs.
Thanks again for the hint,
Timo
Search found 18 matches
- 2011-06-10T13:03:16-07:00
- Forum: Users
- Topic: Problem generating CMYK color sample images
- Replies: 3
- Views: 7574
- 2011-06-10T06:40:44-07:00
- Forum: Users
- Topic: Problem generating CMYK color sample images
- Replies: 3
- Views: 7574
Re: Problem generating CMYK color sample images
Hi again, it appears that -draw always operates in RGB internally, so the CMYK value I passed in was implicitly converted to RGB and converted back to CMYK in a second step. As a result the color values change. I eventually came up with a simpler solution which gives me the desired result: convert ...
- 2011-06-10T02:57:23-07:00
- Forum: Users
- Topic: Problem generating CMYK color sample images
- Replies: 3
- Views: 7574
Problem generating CMYK color sample images
Hi list, I'm trying to create color sample images for given CMYK values. I'm currently using the following command: convert -size 90x90 xc:white -fill "cmyk(255,255,18,97)" -draw "rectangle 0,0 90,90" -colorspace CMYK -type ColorSeparation -depth 8 out.tif However, the resulting file has a different ...
- 2007-08-24T06:03:14-07:00
- Forum: Bugs
- Topic: CMYK to RGB conversion broken in 6.3.3
- Replies: 11
- Views: 30313
Re: CMYK to RGB conversion broken in 6.3.3
Yes, there is a more recent version of ImageMagick available in DarwinPorts (now called MacPorts). You have to force MacPorts to update its package descriptions. In Terminal execute: sudo port selfupdate to be sure execute it twice . then do a sudo port search ImageMagick which today returns ...
- 2007-06-28T07:37:15-07:00
- Forum: Bugs
- Topic: ImageMagick 6.3.4 unocorrected JPEG resolution
- Replies: 1
- Views: 9862
Re: ImageMagick 6.3.4 unocorrected JPEG resolution
Just a short "mee too". But the resolution detection is not always wrong. We especially have problems with photos from Canon cameras, which save their files as 180dpi JPGs. The resolution of the images coming from the camera is correctly determined. But when such a file is opened and saved with ...
- 2007-05-25T09:46:41-07:00
- Forum: Bugs
- Topic: CMYK to RGB conversion broken in 6.3.3
- Replies: 11
- Views: 30313
Re: CMYK to RGB conversion broken in 6.3.3
Just compiled a new version and did the test again. Works perfectly.
Thanks a lot for the super fast resolution of this problem.
Timo
Thanks a lot for the super fast resolution of this problem.
Timo
- 2007-05-25T01:53:32-07:00
- Forum: Bugs
- Topic: CMYK to RGB conversion broken in 6.3.3
- Replies: 11
- Views: 30313
Re: CMYK to RGB conversion broken in 6.3.3
That sounds great. Thanks a lot.
Will it then be available in /pub/ImageMagick/beta on the FTP server or only in SVN?
Will it then be available in /pub/ImageMagick/beta on the FTP server or only in SVN?
- 2007-05-24T10:12:42-07:00
- Forum: Bugs
- Topic: CMYK to RGB conversion broken in 6.3.3
- Replies: 11
- Views: 30313
Re: CMYK to RGB conversion broken in 6.3.3
I corrected the URLs in the original message. Sorry for that.
Timo
Timo
- 2007-05-24T09:36:36-07:00
- Forum: Bugs
- Topic: CMYK to RGB conversion broken in 6.3.3
- Replies: 11
- Views: 30313
CMYK to RGB conversion broken in 6.3.3
Hi, It seems, that CMYK to RGB conversion is broken in 6.3.3. I'm on MacOS X and use the MacPorts (ex DarwinPorts) version of ImageMagick. I've put some images showing my problem here: Input Output with 6.3.2 (OK) Output with 6.3.3 (broken) Here's what I did to create the images: # Test 6.3.2 [mbp ...
- 2007-01-10T08:43:18-07:00
- Forum: Users
- Topic: How to clip?
- Replies: 11
- Views: 29539
- 2006-12-20T15:06:21-07:00
- Forum: Users
- Topic: Extracting a Single Page?
- Replies: 0
- Views: 5453
- 2006-12-20T15:04:11-07:00
- Forum: Users
- Topic: Tiff To PDF Conversion
- Replies: 3
- Views: 10553
Try the following command: convert in.tif out.pdf ImageMagick guesses the output format by the file extension. If you want it more explicit, you could do: convert in.tif pdf:out.pdf If the TIFF contains several pages, and you want to access a certain page, use e.g. convert "in.tif[1]" out.pdf You ...
- 2006-12-20T03:09:47-07:00
- Forum: Users
- Topic: How to clip?
- Replies: 11
- Views: 29539
- 2006-12-19T13:42:59-07:00
- Forum: Users
- Topic: How to clip?
- Replies: 11
- Views: 29539
Update: I installed Fedora Core as a VM in Parallels and installed the Linux RPM. There, the convert in -clip -negate out works indeed. So it works OK on linux, but not on MacOS X and Windows... Any ideas how to continue from here? The Linux version also cannot find the clipping path in the JPG like ...
- 2006-12-19T11:00:52-07:00
- Forum: Users
- Topic: How to clip?
- Replies: 11
- Views: 29539
Hi, thanks for the quick reply. With 6.3.1-2 we get this clipping path: ... This is the same I get (for the TIFF and 6.3.1-2). and with this command: convert cliptest01.tif -clip -negate tif631.jpg We get a white rectangle on top surrounded by a black border and a black rectangle on bottom as we ...