Danack

Results 291 comments of Danack

Also, identifyFormat ``` #if MagickLibVersion >= 0x700 { //TODO - handle exception info. ExceptionInfo *exception = NULL; result = InterpretImageProperties(image_info, image, embedText, exception); } #else ```

Short version, this message seems to appear when ImageMagick can't find either the Arial or Helvetica system fonts....which is kind of weird on Windows. How did you install ImageMagick please?...

@CristianNi You'll probably need to contact CloudLinux support. Short version - ImageMagick changed how they detect fonts at compile time. As a result of that, quite a few people building...

Hi @LIXiangChen , I made some test with image compression in a previous thread here: https://github.com/ImageMagick/ImageMagick/issues/29#issuecomment-143263506 Apparently it is $image->setCompressionQuality() that should be used for png images.

The general idea is that I'd _really_ like to have a single source of truth for which functions take/return int or float depending on the HDRI compile option, so that...

Can you try doing the same on the command line with ImageMagick convert program? If you can get the same very different result, then it can be reported upstream straight...

> The pixels are now fully white, btw, that's wrong.....with hdri they are close to white, but are unlikely to all be 255. Saving to PNG will convert them to...

I don't think it's a bug. Have some code: ``` $scale = 8; // Resize just the source image. $imagick = new Imagick(__DIR__ . "/og_crop.png"); $imagick->interpolativeResizeImage( $scale * $imagick->getImageWidth(), $scale...