Search found 3 matches

by honzajavorek
2013-03-15T03:34:22-07:00
Forum: Users
Topic: Why my ImageMagick performs colortoning with different resul
Replies: 5
Views: 5019

Re: Why my ImageMagick performs colortoning with different r

Great! This produces completely the same output as expected: convert test.jpg -set colorspace RGB \( -clone 0 -fill '#330000' -colorize 100% \) \( -clone 0 -colorspace gray -negate \) -compose blend -define compose:args=100,0 -composite test.jpg (mind the added -set colorspace RGB ) Thank you very m...
by honzajavorek
2013-03-15T03:13:07-07:00
Forum: Users
Topic: Why my ImageMagick performs colortoning with different resul
Replies: 5
Views: 5019

Re: Why my ImageMagick performs colortoning with different r

I compiled my own latest upstream version of ImageMagick and it produced the same, wrong output. $ convert --version Version: ImageMagick 6.8.3-9 2013-03-15 Q16 http://www.imagemagick.org Copyright: Copyright (C) 1999-2013 ImageMagick Studio LLC Features: DPC OpenMP Delegates: bzlib djvu mpeg fontco...
by honzajavorek
2013-03-14T03:20:35-07:00
Forum: Users
Topic: Why my ImageMagick performs colortoning with different resul
Replies: 5
Views: 5019

Why my ImageMagick performs colortoning with different resul

I found Instagraph PHP library ( GitHub , NetTuts ) for photo filters. However, I found out on my box it does not output the same images as presented on NetTuts. I localized the issue and it has to be within colortone function, because otherwise filters work well. Let's take Toaster as a showcase, b...