Search found 18 matches

by t.hoepfner
2011-06-10T13:03:16-07:00
Forum: Users
Topic: Problem generating CMYK color sample images
Replies: 3
Views: 7531

Re: Problem generating CMYK color sample images

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
by t.hoepfner
2011-06-10T06:40:44-07:00
Forum: Users
Topic: Problem generating CMYK color sample images
Replies: 3
Views: 7531

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 -...
by t.hoepfner
2011-06-10T02:57:23-07:00
Forum: Users
Topic: Problem generating CMYK color sample images
Replies: 3
Views: 7531

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 ...
by t.hoepfner
2007-08-24T06:03:14-07:00
Forum: Bugs
Topic: CMYK to RGB conversion broken in 6.3.3
Replies: 11
Views: 30168

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 ImageMa...
by t.hoepfner
2007-06-28T07:37:15-07:00
Forum: Bugs
Topic: ImageMagick 6.3.4 unocorrected JPEG resolution
Replies: 1
Views: 9829

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...
by t.hoepfner
2007-05-25T09:46:41-07:00
Forum: Bugs
Topic: CMYK to RGB conversion broken in 6.3.3
Replies: 11
Views: 30168

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
by t.hoepfner
2007-05-25T01:53:32-07:00
Forum: Bugs
Topic: CMYK to RGB conversion broken in 6.3.3
Replies: 11
Views: 30168

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?
by t.hoepfner
2007-05-24T10:12:42-07:00
Forum: Bugs
Topic: CMYK to RGB conversion broken in 6.3.3
Replies: 11
Views: 30168

Re: CMYK to RGB conversion broken in 6.3.3

I corrected the URLs in the original message. Sorry for that.

Timo
by t.hoepfner
2007-05-24T09:36:36-07:00
Forum: Bugs
Topic: CMYK to RGB conversion broken in 6.3.3
Replies: 11
Views: 30168

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:~...
by t.hoepfner
2007-01-10T08:43:18-07:00
Forum: Users
Topic: How to clip?
Replies: 11
Views: 29407

Did you find any solution to this? I have IM 6.3.1 on Windows XP and can't get any clipping to work. No, I didn't find a solution. I'm still interested in finding one, though. Currently, my workaround is quite complicated: Transfer the file via SFTP to some other server, which is running some prepr...
by t.hoepfner
2006-12-20T15:06:21-07:00
Forum: Users
Topic: Extracting a Single Page?
Replies: 0
Views: 5432

e.g.

convert "in.pdf[5]" out.jpg

to access page 5 (or 6?) in the pdf.

Timo
by t.hoepfner
2006-12-20T15:04:11-07:00
Forum: Users
Topic: Tiff To PDF Conversion
Replies: 3
Views: 10507

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....
by t.hoepfner
2006-12-20T03:09:47-07:00
Forum: Users
Topic: How to clip?
Replies: 11
Views: 29407

Use +clippath #1 to apply an operator to the image outside the clipping path. Mh, can't get it going... What's wrong? [th@localhost ~]$ uname -a Linux localhost.localdomain 2.6.18-1.2798.fc6 #1 SMP Mon Oct 16 14:37:32 EDT 2006 i686 i686 i386 GNU/Linux [th@localhost ~]$ convert -version Version: Ima...
by t.hoepfner
2006-12-19T13:42:59-07:00
Forum: Users
Topic: How to clip?
Replies: 11
Views: 29407

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...
by t.hoepfner
2006-12-19T11:00:52-07:00
Forum: Users
Topic: How to clip?
Replies: 11
Views: 29407

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 thi...