Search found 5 matches

by halichu
2014-10-27T08:32:00-07:00
Forum: IMagick
Topic: NoDecodeDelegateForThisImageFormat ReadImage 555
Replies: 1
Views: 6823

Re: NoDecodeDelegateForThisImageFormat ReadImage 555

I literally have been messing around with Imagick FOR DAYS to get it configured properly. However this solved everything: http://stackoverflow.com/questions/21055786/running-imagemagick-on-xampp-1-8-3-with-windows-7/21084043#21084043 Hopefully that helps anybody else who is having trouble getting it...
by halichu
2014-10-27T06:38:45-07:00
Forum: IMagick
Topic: NoDecodeDelegateForThisImageFormat ReadImage 555
Replies: 1
Views: 6823

NoDecodeDelegateForThisImageFormat ReadImage 555

So whenever I try to initiate a new Imagick instance, I get this error: NoDecodeDelegateForThisImageFormat `E:\WD SmartWare.swstor\HALEY-HP\Source2\bunny-meadows\public/assets/img/pets/backgrounds/blank.png' @ error/constitute.c/ReadImage/555 This is my code: $layer = new Imagick( $asset ); $layer->...
by halichu
2014-09-22T10:19:32-07:00
Forum: IMagick
Topic: paintOpaqueImage() making edges rough
Replies: 5
Views: 9420

Re: paintOpaqueImage() making edges rough

snibgo.. thank you so much. I can't believe I didn't think of setting it at 80% opacity in Photoshop and just colorizing it from there.. I was going to go down the route I posted in my edit, but it's tough trying to get the color of the image without knowing the position.
by halichu
2014-09-22T09:41:47-07:00
Forum: IMagick
Topic: paintOpaqueImage() making edges rough
Replies: 5
Views: 9420

Re: paintOpaqueImage() making edges rough

Yeah if you look at my second example, I did do colorizeImage() and it works perfectly.. but unfortunately, the opacity doesn't work the way I wanted it to when I set it to .8 instead of 1. I have an image preview of what it's showing when I do that. I'm looking to paint the entire thing at 100% of ...
by halichu
2014-09-22T06:14:42-07:00
Forum: IMagick
Topic: paintOpaqueImage() making edges rough
Replies: 5
Views: 9420

paintOpaqueImage() making edges rough

This is the code I have: <?php header('Content-type: image/png'); $oldColor = '#000000'; $baseColor = '#f9d9c4'; $base = new Imagick('assets/background.png'); $image = new Imagick('assets/lop-base2.png'); $color = new Imagick('assets/lop-color2.png'); $base->thumbnailImage(200, 0); $color->thumbnail...