Danack
Danack
> I think its imagick Windows builds have some bug... I'd suggest opening an issue on the ImageMagick github https://github.com/ImageMagick/ImageMagick Imagick itself is a thin wrapper around ImageMagick, and doesn't...
Top-tip: using multiple exclamation marks sounds like you're shouting. >JUST try it and you will see.... I'm not saying I don't believe you, I'm saying even if it's true there's...
> simple logic tells me that if the first-thing works and the second-thing does no You've missed that it's not the same thing. For various reasons, the ImageMagick guys have...
> And in all of them was no one word about delegates.xml file Do you want to write some words then? Open a pull request for the readme of this...
That's a pretty good idea. Do you know if it's possible, or of another extension that does something similar? I guess it might be possible to do, by skipping calling...
Could you do me a favour and give some example PHP code that you expect to work? Maybe something similar to the code in https://github.com/Imagick/imagick/blob/master/tests/269_ImagickPixel_setColorFromPixel_basic.phpt
I have no idea. If you want this to work, please could you ask upstream at https://github.com/ImageMagick/ImageMagick something like 'how get the connected components output through the magick wand api?...
Possibly including the details of what you're trying to do i.e. the first code box from above, might be clearer....I think they have a younger volunteer triaging their issues who...
For reference. ``` typedef struct _CCObjectInfo { ssize_t id; RectangleInfo bounding_box; PixelInfo color; PointInfo centroid; double area, census; } CCObjectInfo; ``` This is going to need thinking about, if nothing...
Looking the example at: https://github.com/ImageMagick/ImageMagick/blob/306762972e7c7dd2158bf00d39ed2ebd87c49e65/PerlMagick/demo/steganography.pl It seems the following code should work, but doesn't. ``` # Hide an image within an image $watermark = new Imagick(); $watermark->readImage('smile.gif'); $width = $watermark->getImageWidth();...