Search found 5 matches

by indjeto
2016-07-08T12:41:36-07:00
Forum: Bugs
Topic: Wrong image orientation recognition
Replies: 4
Views: 7069

Re: Wrong image orientation recognition

I experienced the same problem with the php extension. (Todays last versions, compiled from source ; ImageMagick-7.0.2-2; php lib:imagick-3.4.3RC1) I made this workaround: Substitute $orientation = $image->getImageOrientation(); with $props = $image->getImageProperties('exif:Orientation', true ...
by indjeto
2016-07-08T08:19:52-07:00
Forum: Bugs
Topic: B/W Images Lighten on Annotation
Replies: 7
Views: 4661

Re: B/W Images Lighten on Annotation

I'm using it from php.
I updated to ImageMagick-7.0.2-2.
It works as expected.
by indjeto
2016-07-06T08:05:04-07:00
Forum: Bugs
Topic: B/W Images Lighten on Annotation
Replies: 7
Views: 4661

Re: B/W Images Lighten on Annotation

fmw42, convert in2.jpg -set colorspace RGB -background Orange label:'Faerie Dragon' +swap -gravity Center -append out.jpg did not work. It works only when you put it at the end. I found and some other issues with my version, trying to auto orient images, so it seems installing a new version will be ...
by indjeto
2016-07-05T03:19:49-07:00
Forum: Bugs
Topic: B/W Images Lighten on Annotation
Replies: 7
Views: 4661

Re: B/W Images Lighten on Annotation

Thanks all for the replies. I attached the files here: http://ge.tt/2kvlr8c2 fmw42, the original image got lightened. I tried changing Orange with White, but the same effect. I tried this command and it worked fine: convert in2.jpg -background Orange label:'Faerie Dragon' +swap -gravity Center ...
by indjeto
2016-07-03T12:50:52-07:00
Forum: Bugs
Topic: B/W Images Lighten on Annotation
Replies: 7
Views: 4661

B/W Images Lighten on Annotation

I saw that on B/W images while trying to annotate them, the whole image becomes lighter than the source image. For full color images it is ok. I saw the same affect happens also when trying to composite one small image over the b/w source. I was using php lib, but also tried with this command ...