Search found 22 matches

by cs_rol
2011-07-21T03:03:06-07:00
Forum: Users
Topic: Changes in clipping path behavior?
Replies: 1
Views: 4423

Changes in clipping path behavior?

Hi! I'm using ImageMagick as a library in my own Conversion-tool. I just updated from 6.5.2 to 6.7.1-0 and i noticed changes in how clipping paths would be handled. In the old version clipping paths would be applied automatically wheres i have to do it on my own now. Is that correct? How would I wri...
by cs_rol
2010-08-31T01:57:03-07:00
Forum: Bugs
Topic: switching colorspaces RGB -> YCbCr
Replies: 5
Views: 14075

Re: switching colorspaces RGB -> YCbCr

Did something come up on the investigation?
by cs_rol
2009-05-19T01:44:34-07:00
Forum: Bugs
Topic: switching colorspaces RGB -> YCbCr
Replies: 5
Views: 14075

Re: switching colorspaces RGB -> YCbCr

I tried out the new version, but this still doesn't work. (see my introductory posting) this is due to the libjpeg which sets jpeg_color_space to JSC_YCbCr and out_color_space to JSC_RGB jdapimin.c: /* Guess the input colorspace, and set output colorspace accordingly. */ /* (Wish JPEG committee had ...
by cs_rol
2009-05-18T03:42:58-07:00
Forum: Bugs
Topic: ICC Colorprofile not read
Replies: 8
Views: 18017

Re: ICC Colorprofile not read

i tried out the new 4.0.0 beta3 version of libtiff and it seems that they have fixed that problem.
maybe a that newer version schould be added to the windows source download and used for the precompiled binaries.
are there any known problems with newer libtiff versions?

thanks,
richard
by cs_rol
2009-05-14T09:39:55-07:00
Forum: Bugs
Topic: ICC Colorprofile not read
Replies: 8
Views: 18017

ICC Colorprofile not read

Hi, I was trying to geht the icc color profile out of several files but i faild to do so from a Illustrator CS4 generated TIFF. Photoshop says that it has an embedded profile, but ImageMagick says there is none. the file can be found at: http://portal.celum.com/pindownload/login.do?pin=EYD7G thanks ...
by cs_rol
2009-05-14T05:31:04-07:00
Forum: Bugs
Topic: switching colorspaces RGB -> YCbCr
Replies: 5
Views: 14075

Re: switching colorspaces RGB -> YCbCr

hi, i had a look at the sourcecode. I found a wrong statement in jpeg.c ReadJPEGImage 1020 if (jpeg_info.out_color_space == YCbCrColorspace) 1021 image->colorspace=YCbCrColorspace; since YCbCrColorSpace is a ImageMagick type and jpeg_info.out_color_space is a libjpeg type this I think this compariso...
by cs_rol
2009-05-13T06:37:44-07:00
Forum: Bugs
Topic: Stack corruption in GetEXIFProperty function
Replies: 1
Views: 4620

Stack corruption in GetEXIFProperty function

Visual studio memory guard complained about corruption of the stack near variable 'buffer' I had a closer look a the code and figured out it was right: the macros EXIFMultipleValues and EXIFMultipleFractions do write on index -2 under some cirumstances: property.c 728 #define EXIFMultipleValues(size...
by cs_rol
2009-03-16T05:10:54-07:00
Forum: Bugs
Topic: switching colorspaces RGB -> YCbCr
Replies: 5
Views: 14075

switching colorspaces RGB -> YCbCr

Hello!

When i try to convert a file to YCbCr its still RGB in the end (at least identify suggest it so)

Code: Select all

identify -verbose in.jpg
convert in.jpg -colorspace ycbcr out.jpg
identify -verbose out.jpg
Is this a bug or are RGB and YCbCr indistinguishable?

Thanks for comments.
regards,
richard
by cs_rol
2009-02-19T08:00:30-07:00
Forum: Bugs
Topic: convert: crash on unsharp mask
Replies: 3
Views: 7993

Re: convert: crash on unsharp mask

sry, I've corrected the link
http://mail.werk3at.com/rol/gradient.jpg
by cs_rol
2009-02-19T06:38:19-07:00
Forum: Bugs
Topic: convert: crash on unsharp mask
Replies: 3
Views: 7993

convert: crash on unsharp mask

Hi! When I convert with following command the application crashes due to heap corruption: convert gradient.jpg -unsharp 1x2+1+0.6 out.jpg The file can be downloaded here: http://mail.werk3at.com/rol/gradient.jpg I use ImageMagick-6.4.9-Q8 on Windows Vista. I've also got troubles with some other file...
by cs_rol
2007-09-10T05:52:48-07:00
Forum: Users
Topic: Flatten changes color
Replies: 4
Views: 10596

Re: Flatten changes color

ideas?
by cs_rol
2007-08-23T00:18:22-07:00
Forum: Users
Topic: Flatten changes color
Replies: 4
Views: 10596

Re: Flatten changes color

why do you think this image isn't RGB? Either Photoshop and identify say the image's colorspace is RGB.

the weird change of the texcolor is also done if i only do:

Code: Select all

convert color.psd -flatten color.jpg
why is this so?
by cs_rol
2007-08-22T06:21:51-07:00
Forum: Users
Topic: Flatten changes color
Replies: 4
Views: 10596

Flatten changes color

Hi! I have a psd file, which was created by photoshop, and it has a red text in it. http://werk3at.net/rol/color.psd when i convert it to jpg I set background color to white and flatten it to get rid of all transparency. afterwards the text color changes to green. convert color.psd -background white...
by cs_rol
2007-03-06T02:47:58-07:00
Forum: Users
Topic: combining two images
Replies: 8
Views: 25220

Re: combining two images

i resolved this by changing the tiff-coder by adding an asociated alpha channel in order to make the file be displayed correct in photoshop tiff.c@~line1734 sample_info[0]=EXTRASAMPLE_ASSOCALPHA;// remove: EXTRASAMPLE_UNASSALPHA Now I have the task to implement this command with MagickWand or Magick...