Code Monkey home page Code Monkey logo

imagemagick6's Introduction

ImageMagick

Build Status Fuzzing Status Donate

ImageMagick logo

ImageMagick® is a free and open-source oftware suite, used for editing and manipulating digital images. It can be used to create, edit, compose, or convert bitmap images, and supports a wide range of file formats, including JPEG, PNG, GIF, TIFF, and PDF.

What is ImageMagick?

ImageMagick is widely used in industries such as web development, graphic design, and video editing, as well as in scientific research, medical imaging, and astronomy. Its versatile and customizable nature, along with its robust image processing capabilities, make it a popular choice for a wide range of image-related tasks.

ImageMagick includes a command-line interface for executing complex image processing tasks, as well as APIs for integrating its features into software applications. It is written in C and can be used on a variety of operating systems, including Linux, Windows, and macOS.

The main website for ImageMagick can be found at https://legacy.imagemagick.org. The source code for this software can be accessed through a repository. We recommend upgrading your legacy version of ImageMagick to version 7.

Creating a security policy that fits your specific local environment before making use of ImageMagick is highly advised. You can find guidance on setting up this policy. Also, it's important to verify your policy using the validation tool.

Features and Capabilities

One of the key features of ImageMagick is its support for scripting and automation. This allows users to create complex image manipulation pipelines that can be run automatically, without the need for manual intervention. This can be especially useful for tasks that require the processing of large numbers of images, or for tasks that need to be performed on a regular basis.

In addition to its core image manipulation capabilities, ImageMagick also includes a number of other features, such as support for animation, color management, and image rendering. These features make it a versatile tool for a wide range of image-related tasks, including graphic design, scientific visualization, and digital art.

Overall, ImageMagick is a powerful and versatile software suite for displaying, converting, and editing image files. Its support for scripting and automation, along with its other features, make it a valuable tool for a wide range of image-related tasks.

Here are just a few examples of what ImageMagick can do:

Examples of ImageMagick Usage, demonstrates how to use the software from the command line to achieve various effects. There are also several scripts available on the website called Fred's ImageMagick Scripts, which can be used to apply geometric transforms, blur and sharpen images, remove noise, and perform other operations. Additionally, there is a tool called Magick.NET that allows users to access the functionality of ImageMagick without having to install the software on their own systems. Finally, the website also includes a Cookbook with tips and examples for using ImageMagick on Windows systems.

News

Creating a security policy that fits your specific local environment before making use of ImageMagick is highly advised. You can find guidance on setting up this policy. Also, it's important to verify your policy using the validation tool. As of ImageMagick version 7.1.1-16, you can choose and customize one of these security policies: Open, Limited, Secure, and Websafe.

Want more performance from ImageMagick? Try these options:

If these options are prohibitive, you can reduce the quality of the image results. The default build is Q16. If you enable HDRI, you use twice the memory and instead of predominantly integer operations, you use the typically less efficient floating-point operations. The tradeoff is increased precision and you can process out of range pixel values (e.g. negative). If you instead build the Q8 non-HDRI version of ImageMagick, you can reduce the memory requirements in half-- and once again there is a tradeoff, even less precision and no out of range pixel values. For a Q8 non-HDRI build of ImageMagick, use these configure script options: --with-quantum-depth=8.

imagemagick6's People

Contributors

biswa96 avatar chris-liddell avatar dependabot[bot] avatar dlech avatar dlemstra avatar drivron avatar erw7 avatar glennrp avatar hifoolno avatar hrnchamd avatar ijt avatar jcupitt avatar jeroen avatar jonsneyers avatar joonsung-kim avatar lastique avatar lbartoletti avatar liclicli avatar maruno avatar pacien avatar remicollet avatar schnouki avatar thesamesam avatar timoteostewart avatar tpett avatar urban-warrior avatar vadage avatar xhorak avatar yoya avatar yoyap avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

imagemagick6's Issues

Reading PSD layers (except first) discards profile information

When doing something like convert foo.psd[1] output.jpg, any color profile or other metadata that was in the PSD is lost. This is a regression w.r.t. version 6.9.8, where it would (correctly) preserve that information.

(I think TIFF has the same problem, but PDF is fine)

heic.c build failure

coders/heic.c: In function ‘ReadHEICImage’:
coders/heic.c:345:7: error: too many arguments to function ‘IsHeifSuccess’
345 | if (IsHeifSuccess(&error,image,exception) == MagickFalse)
| ^~~~~~~~~~~~~
coders/heic.c:117:26: note: declared here
117 | static MagickBooleanType IsHeifSuccess(struct heif_error *error, Image *image)
| ^~~~~~~~~~~~~
make[1]: *** [Makefile:8235: coders/heic_la-heic.lo] Error 1
make[1]: *** Waiting for unfinished jobs....
make[1]: Leaving directory '/build/imagemagick6/src/ImageMagick-6.9.10-52'
make: *** [Makefile:5681: all] Error 2

Metadata in PGM file not being preserved

Description

When running "convert" on a PGM file with metadata between the magic number and dimension/bitdepth lines, any new line characters are removed. This behaviour started at 7.0.8-x from what I can tell. All prior versions that I have worked with have preserved the new line characters (7.0.7, 6.x).

Head of file before running convert:

$ head -n 6 white.pgm 
P5
# metadata line 1
# metadata line 2
# metadata line 3
100 100
65535

Head of file after running convert:

$ head -n 4 new.pgm 
P5
# metadata line 1 metadata line 2 metadata line 3
100 100
65535

Refer to ImageMagick V7 issue previously addressed. Looks like this issue was propagated to v6. ImageMagick/ImageMagick#1425

Steps to Reproduce

  1. Create a blank PGM file
    convert -size 100x100 xc:white white.pgm
  2. Insert metadata into file
    sed -i -e '/^P5/s/P5/P5\n# metadata line 1\n# metadata line 2\n# metadata line 3/g' white.pgm
  3. Run convert (note, I realize that running convert on this image actually doesn't accomplish anything, but, it's the most basic example)
    convert white.pgm new.pgm

System Configuration

  • CentOS 7, x64, kernel version, kernel 3.10.0-862.14.4.el7.x86_64
  • Behaviour occurs on ImageMagick 6.7.8-9

redefined scaleQuantumToDouble

ImageMagic 6.9.10-11, compiling on 32-bit Intel I get:

  CXX      Magick++/lib/Magick___lib_libMagick___6_Q16HDRI_la-ChannelMoments.lo
In file included from Magick++/lib/Magick++/Image.h:17,
                 from Magick++/lib/ChannelMoments.cpp:14:
./Magick++/lib/Magick++/Color.h:126:19: error: ‘static double Magick::Color::scaleQuantumToDouble(double ’ cannot be overloaded with ‘static double Magick::Color::scaleQuantumToDouble(MagickCore::Quantum)’
     static double scaleQuantumToDouble(const double quantum_)
                   ^~~~~~~~~~~~~~~~~~~~
./Magick++/lib/Magick++/Color.h:121:19: note: previous declaration ‘static double Magick::Color::scaleQuantumToDouble(MagickCore::Quantum)’
     static double scaleQuantumToDouble(const Quantum quantum_)
                   ^~~~~~~~~~~~~~~~~~~~
make[1]: *** [Makefile:10247: Magick++/lib/Magick___lib_libMagick___6_Q16HDRI_la-ChannelMoments.lo] Error 1
make[1]: Leaving directory '/root/imagemagick6/src/ImageMagick-6.9.10-11'
make: *** [Makefile:5246: all] Error 2

The code looks like a merge error to me:

    // Scale a value expressed as a Quantum (0-QuantumRange) to double range (0-1)
#if (MAGICKCORE_QUANTUM_DEPTH < 32) && (MAGICKCORE_SIZEOF_FLOAT_T != MAGICKCORE_SIZEOF_DOUBLE || !defined(MAGICKCORE_HDRI_SUPPORT))
    static double scaleQuantumToDouble(const Quantum quantum_)
    {
      return (static_cast<double>(quantum_)/QuantumRange);
    }
#endif
    static double scaleQuantumToDouble(const double quantum_)
    {
      return (quantum_/QuantumRange);
    }

I changed it into:

    // Scale a value expressed as a Quantum (0-QuantumRange) to double range (0-1)
#if (MAGICKCORE_QUANTUM_DEPTH < 32) && (MAGICKCORE_SIZEOF_FLOAT_T != MAGICKCORE_SIZEOF_DOUBLE || !defined(MAGICKCORE_HDRI_SUPPORT))
    static double scaleQuantumToDouble(const Quantum quantum_)
    {
      return (static_cast<double>(quantum_)/QuantumRange);
    }
#else
    static double scaleQuantumToDouble(const double quantum_)
    {
      return (quantum_/QuantumRange);
    }
#endif

Very slow convert of some images with 6.9.10-11

Hi, I've just upgraded to newest release of ImageMagick 6 (from 6.9.10-10 to 6.9.10-11) and convert performance is now about 10x slower.

Used image can be found here https://www.dropbox.com/s/fv11r9b0hepaxco/predsadka-first.jpg?dl=0.

Using version 6.9.10-10

time convert predsadka-first.jpg -resize '3000000@>' -quality 75 predsadka-first-smaller.jpg
convert predsadka-first.jpg -resize '3000000@>' -quality 75   1.54s user 0.14s system 99% cpu 1.694 total

Using version 6.9.10-11

time convert predsadka-first.jpg -resize '3000000@>' -quality 75 predsadka-first-smaller.jpg        
convert predsadka-first.jpg -resize '3000000@>' -quality 75   5.25s user 10.45s system 99% cpu 15.783 total

Both examples are done on same machine. MacOS Mojave 10.14 Beta (18A384a). Installed via brew without any options (brew install imagemagick@6)

No pixels defined in cache `[0]' @ error/cache.c/SetPixelCacheNexusPixels/5132

After updating to 6.9.10-42 the R bindings (via C++) give this error when calling writeImages() with a std::vector<Magick::Image> with more than 1 Image in it:

No pixels defined in cache `[0]' @ error/cache.c/SetPixelCacheNexusPixels/5132

It seems to happen for graphics when clipping is enabled. It does not happen when I disable clipping.

It also does not happen if the std::vector<Magick::Image> only has a single Image. Any guess what causes this? If needed I can try to produce a C++ example...

heic.c compile error for TransformImageColorspace


ImageMagick6% git branch

  • master
    ImageMagick6% make
    /Applications/Xcode.app/Contents/Developer/usr/bin/make all-am
    CC coders/magick_libMagickCore_6_Q16_la-heic.lo
    coders/heic.c:518:61: error: too many arguments to function call, expected 2,
    have 3
    status=TransformImageColorspace(image,YCbCrColorspace,exception);
    ~~~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~~~~
    ./magick/colorspace.h:68:1: note: 'TransformImageColorspace' declared here

Relation)
IM6: TransformImageColorspace(image,YCbCrColorspace,exception);
IM7: TransformImageColorspace(Image *,const ColorspaceType,ExceptionInfo *);


Env) macOS high sierra.
% gcc -v
Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
Apple LLVM version 9.0.0 (clang-900.0.38)
Target: x86_64-apple-darwin17.5.0
Thread model: posix
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin

Convert crashing

Ubuntu 18.04

$ convert --version
Version: ImageMagick 6.9.7-4 Q16 x86_64 20170114 http://www.imagemagick.org
Copyright: © 1999-2017 ImageMagick Studio LLC
License: http://www.imagemagick.org/script/license.php
Features: Cipher DPC Modules OpenMP 
Delegates (built-in): bzlib djvu fftw fontconfig freetype jbig jng jpeg lcms lqr ltdl lzma openexr pangocairo png tiff wmf x xml zlib

Computer has inkscape installed.

$ convert file.png file2.png
convert: ../../magick/quantum.c:216: DestroyQuantumInfo: Assertion `quantum_info != (QuantumInfo *) NULL' failed.
Aborted (core dumped)

file.png itself: https://files.startupincluder.com/2019-08/kr0ri9gnnc2covqpl5vz6yvyqhjyk148101/1.Horizantal.png

Works without issues on Ubuntu 16.04 with ImageMagick 6.8.9-9 Q16 x86_64 2019-06-15

Performance degradation: convert -trim

I've upgraded from 6.9.10-29 to 6.9.10-43, version 32 bit for Windows.

Running convert test-trim.png -trim test-trim-out.png (with attached image) runs 2 times slower.

About 3 seconds vs 6 seconds run time between 6.9.10-29 and 6.9.10-43 (this is on a really old computer).

This seems like a serious performance degradation.

test-trim

make check failed with ImageMagick-6.9.10-12 on Ubuntu 14.04.5 LTS

$ make check
make check-am
make[1]: Entering directory /usr/local/src/imagemagick/ImageMagick-6.9.10-12' make tests/validate tests/drawtest tests/wandtest Magick++/demo/analyze Magick++/demo/button Magick++/demo/demo Magick++/demo/detrans Magick++/demo/flip Magick++/demo/gravity Magick++/demo/piddle Magick++/demo/shapes Magick++/demo/zoom Magick++/tests/appendImages Magick++/tests/attributes Magick++/tests/averageImages Magick++/tests/coalesceImages Magick++/tests/coderInfo Magick++/tests/color Magick++/tests/colorHistogram Magick++/tests/exceptions Magick++/tests/montageImages Magick++/tests/morphImages Magick++/tests/readWriteBlob Magick++/tests/readWriteImages make[2]: Entering directory /usr/local/src/imagemagick/ImageMagick-6.9.10-12'
CC tests/tests_validate-validate.o
CCLD tests/validate
CC tests/tests_drawtest-drawtest.o
CCLD tests/drawtest
CC tests/tests_wandtest-wandtest.o
CCLD tests/wandtest
CXX Magick++/demo/Magick___demo_analyze-analyze.o
CXXLD Magick++/demo/analyze
CXX Magick++/demo/Magick___demo_button-button.o
CXXLD Magick++/demo/button
CXX Magick++/demo/Magick___demo_demo-demo.o
CXXLD Magick++/demo/demo
CXX Magick++/demo/Magick___demo_detrans-detrans.o
CXXLD Magick++/demo/detrans
CXX Magick++/demo/Magick___demo_flip-flip.o
CXXLD Magick++/demo/flip
CXX Magick++/demo/Magick___demo_gravity-gravity.o
CXXLD Magick++/demo/gravity
CXX Magick++/demo/Magick___demo_piddle-piddle.o
CXXLD Magick++/demo/piddle
CXX Magick++/demo/Magick___demo_shapes-shapes.o
CXXLD Magick++/demo/shapes
CXX Magick++/demo/Magick___demo_zoom-zoom.o
CXXLD Magick++/demo/zoom
CXX Magick++/tests/Magick___tests_appendImages-appendImages.o
CXXLD Magick++/tests/appendImages
CXX Magick++/tests/Magick___tests_attributes-attributes.o
CXXLD Magick++/tests/attributes
CXX Magick++/tests/Magick___tests_averageImages-averageImages.o
CXXLD Magick++/tests/averageImages
CXX Magick++/tests/Magick___tests_coalesceImages-coalesceImages.o
CXXLD Magick++/tests/coalesceImages
CXX Magick++/tests/Magick___tests_coderInfo-coderInfo.o
CXXLD Magick++/tests/coderInfo
CXX Magick++/tests/Magick___tests_color-color.o
CXXLD Magick++/tests/color
CXX Magick++/tests/Magick___tests_colorHistogram-colorHistogram.o
CXXLD Magick++/tests/colorHistogram
CXX Magick++/tests/Magick___tests_exceptions-exceptions.o
CXXLD Magick++/tests/exceptions
CXX Magick++/tests/Magick___tests_montageImages-montageImages.o
CXXLD Magick++/tests/montageImages
CXX Magick++/tests/Magick___tests_morphImages-morphImages.o
CXXLD Magick++/tests/morphImages
CXX Magick++/tests/Magick___tests_readWriteBlob-readWriteBlob.o
CXXLD Magick++/tests/readWriteBlob
CXX Magick++/tests/Magick___tests_readWriteImages-readWriteImages.o
CXXLD Magick++/tests/readWriteImages
make[2]: Leaving directory /usr/local/src/imagemagick/ImageMagick-6.9.10-12' make check-TESTS check-local make[2]: Entering directory /usr/local/src/imagemagick/ImageMagick-6.9.10-12'
make[3]: Entering directory `/usr/local/src/imagemagick/ImageMagick-6.9.10-12'
PASS: tests/cli-pipe.tap 1
PASS: tests/cli-pipe.tap 2
PASS: tests/cli-pipe.tap 3
PASS: tests/cli-pipe.tap 4
PASS: tests/cli-pipe.tap 5
PASS: tests/cli-pipe.tap 6
PASS: tests/cli-pipe.tap 7
PASS: tests/cli-pipe.tap 8
PASS: tests/cli-colorspace.tap 1
PASS: tests/cli-colorspace.tap 2
PASS: tests/cli-colorspace.tap 3
PASS: tests/cli-colorspace.tap 4
PASS: tests/cli-colorspace.tap 5
PASS: tests/cli-colorspace.tap 6
PASS: tests/cli-colorspace.tap 7
PASS: tests/cli-colorspace.tap 8
PASS: tests/cli-colorspace.tap 9
PASS: tests/cli-colorspace.tap 10
PASS: tests/cli-colorspace.tap 11
PASS: tests/cli-colorspace.tap 12
PASS: tests/cli-colorspace.tap 13
PASS: tests/cli-colorspace.tap 14
PASS: tests/cli-colorspace.tap 15
PASS: tests/cli-colorspace.tap 16
PASS: tests/cli-colorspace.tap 17
PASS: tests/cli-colorspace.tap 18
PASS: tests/cli-colorspace.tap 19
PASS: tests/validate-colorspace.tap 1
PASS: tests/validate-compare.tap 1
PASS: tests/validate-composite.tap 1
PASS: tests/validate-convert.tap 1
PASS: tests/validate-formats-disk.tap 1
PASS: tests/validate-formats-map.tap 1
PASS: tests/validate-formats-memory.tap 1
PASS: tests/validate-identify.tap 1
PASS: tests/validate-import.tap 1
PASS: tests/validate-montage.tap 1
PASS: tests/validate-stream.tap 1
PASS: tests/drawtest.tap 1
FAIL: tests/wandtest.tap 1
PASS: Magick++/tests/tests.tap 1
PASS: Magick++/tests/tests.tap 2
PASS: Magick++/tests/tests.tap 3
PASS: Magick++/tests/tests.tap 4
PASS: Magick++/tests/tests.tap 5
PASS: Magick++/tests/tests.tap 6
PASS: Magick++/tests/tests.tap 7
PASS: Magick++/tests/tests.tap 8
PASS: Magick++/tests/tests.tap 9
PASS: Magick++/tests/tests.tap 10
PASS: Magick++/tests/tests.tap 11
PASS: Magick++/tests/tests.tap 12
PASS: Magick++/demo/demos.tap 1
PASS: Magick++/demo/demos.tap 2
PASS: Magick++/demo/demos.tap 3
PASS: Magick++/demo/demos.tap 4
PASS: Magick++/demo/demos.tap 5
FAIL: Magick++/demo/demos.tap 6
PASS: Magick++/demo/demos.tap 7
PASS: Magick++/demo/demos.tap 8
PASS: Magick++/demo/demos.tap 9
PASS: Magick++/demo/demos.tap 10
PASS: Magick++/demo/demos.tap 11
PASS: Magick++/demo/demos.tap 12
PASS: Magick++/demo/demos.tap 13
PASS: Magick++/demo/demos.tap 14
PASS: Magick++/demo/demos.tap 15
PASS: Magick++/demo/demos.tap 16
PASS: Magick++/demo/demos.tap 17
PASS: Magick++/demo/demos.tap 18
PASS: Magick++/demo/demos.tap 19
PASS: Magick++/demo/demos.tap 20
PASS: Magick++/demo/demos.tap 21
PASS: Magick++/demo/demos.tap 22
PASS: Magick++/demo/demos.tap 23
PASS: Magick++/demo/demos.tap 24

Testsuite summary for ImageMagick 6.9.10

TOTAL: 76

PASS: 74

SKIP: 0

XFAIL: 0

FAIL: 2

XPASS: 0

ERROR: 0

============================================================================
See ./test-suite.log
Please report to https://github.com/ImageMagick/ImageMagick6/issues

make[3]: *** [test-suite.log] Error 1
make[3]: Leaving directory /usr/local/src/imagemagick/ImageMagick-6.9.10-12' make[2]: *** [check-TESTS] Error 2 make[2]: Leaving directory /usr/local/src/imagemagick/ImageMagick-6.9.10-12'
make[1]: *** [check-am] Error 2
make[1]: Leaving directory `/usr/local/src/imagemagick/ImageMagick-6.9.10-12'
make: *** [check] Error 2
dave_m@www-staging:/uls/imagemagick/ImageMagick-6.9.10-12$ cat /etc/lsb-release
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=14.04
DISTRIB_CODENAME=trusty
DISTRIB_DESCRIPTION="Ubuntu 14.04.5 LTS"
dave_m@www-staging:/uls/imagemagick/ImageMagick-6.9.10-12$ cat ./test-suite.log

ImageMagick 6.9.10: ./test-suite.log

TOTAL: 76

PASS: 74

SKIP: 0

XFAIL: 0

FAIL: 2

XPASS: 0

ERROR: 0

.. contents:: :depth: 2

FAIL: tests/wandtest

lt-wandtest: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-wandtest: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
tests/wandtest.c main 5321 non-conforming drawing primitive definition `text' @ error/draw.c/RenderMVGContent/4292
1..1
Reading images...
Iterate forward...
index 0 scene 0
index 1 scene 1
index 2 scene 2
index 3 scene 3
index 4 scene 4
Iterate reverse...
index 4 scene 4
index 3 scene 3
index 2 scene 2
index 1 scene 1
index 0 scene 0
Remove scene 1...
index 0 scene 0
index 1 scene 2
index 2 scene 3
index 3 scene 4
Insert scene 1 back in sequence...
index 0 scene 0
index 1 scene 1
index 2 scene 2
index 3 scene 3
index 4 scene 4
Set scene 2 to scene 1...
index 0 scene 0
index 1 scene 1
index 2 scene 1
index 3 scene 3
index 4 scene 4
Apply image processing options...
not ok
FAIL: tests/wandtest.tap 1

FAIL: Magick++/demo/demos

1..24
File: /uls/imagemagick/ImageMagick-6.9.10-12/Magick++/demo//model.miff
TopLeftColor =
TopRightColor =
BottomLeftColor =
BottomRightColor =
filter:brightness:mean = 31077.3
filter:brightness:standard-deviation = 14635.5
filter:brightness:kurtosis = 0.657217
filter:brightness:skewness = 1.34114
filter:saturation:mean = 14031.6
filter:saturation:standard-deviation = 8379.05
filter:saturation:kurtosis = 0.631727
filter:saturation:skewness = 1.03422
lt-button: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-button: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-button: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-button: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
ok
PASS: Magick++/demo/demos.tap 1
Writing to "button_out.miff" ...
ok
PASS: Magick++/demo/demos.tap 2
Read images ...
Creating thumbnails...
add noise ...
add noise (blue) ...
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
annotate ...
blur ...
blur red channel ...
border ...
channel ...
charcoal ...
composite ...
contrast ...
convolve ...
crop ...
despeckle ...
draw ...
edge ...
emboss ...
equalize ...
explode ...
flip ...
flop ...
frame ...
gamma ...
gaussian blur ...
gaussian blur channel ...
gradient ...
grayscale ...
implode ...
level ...
level red channel ...
median filter ...
modulate ...
monochrome ...
motion blur ...
negate ...
normalize ...
oil paint ...
ordered dither 2x2 ...
ordered dither 3x3...
ordered dither 4x4...
ordered dither red 4x4...
plasma ...
quantize ...
quantum operator ...
raise ...
reduce noise ...
resize ...
roll ...
rotate ...
scale ...
segment ...
shade ...
sharpen ...
shave ...
shear ...
spread ...
solarize ...
swirl ...
threshold ...
threshold random ...
unsharp mask ...
wave ...
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-demo: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-demo: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
Montage images...
Adding logo image ...
Writing image "demo_out.miff" ...
ok
PASS: Magick++/demo/demos.tap 3
Writing image "flip_out.miff" ...
ok
PASS: Magick++/demo/demos.tap 4
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
angle 0
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
angle 30
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
angle 60
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
angle 90
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
angle 120
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
angle 150
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
angle 180
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
angle 210
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
angle 240
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
angle 270
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
angle 300
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
lt-gravity: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-gravity: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
angle 330
Writing image "gravity_out.miff" ...
lt-piddle: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740. lt-piddle: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560.
ok
PASS: Magick++/demo/demos.tap 5
Caught exception: lt-piddle: non-conforming drawing primitive definition text' @ error/draw.c/RenderMVGContent/4292 lt-shapes: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740.
lt-shapes: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560. lt-shapes: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740.
lt-shapes: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560. lt-shapes: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740.
lt-shapes: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560. lt-shapes: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740.
lt-shapes: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560. lt-shapes: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740.
lt-shapes: no decode delegate for this image format PNG' @ error/constitute.c/ReadImage/560. lt-shapes: delegate library support not built-in /usr/share/fonts/type1/gsfonts/n019003l.pfb' (Freetype) @ warning/annotate.c/RenderFreetype/1740.
lt-shapes: no decode delegate for this image format `PNG' @ error/constitute.c/ReadImage/560.
not ok
FAIL: Magick++/demo/demos.tap 6
Writing image "shapes_out.miff" ...
ok
PASS: Magick++/demo/demos.tap 7
ok
PASS: Magick++/demo/demos.tap 8
ok
PASS: Magick++/demo/demos.tap 9
ok
PASS: Magick++/demo/demos.tap 10
ok
PASS: Magick++/demo/demos.tap 11
ok
PASS: Magick++/demo/demos.tap 12
ok
PASS: Magick++/demo/demos.tap 13
ok
PASS: Magick++/demo/demos.tap 14
ok
PASS: Magick++/demo/demos.tap 15
ok
PASS: Magick++/demo/demos.tap 16
ok
PASS: Magick++/demo/demos.tap 17
ok
PASS: Magick++/demo/demos.tap 18
ok
PASS: Magick++/demo/demos.tap 19
ok
PASS: Magick++/demo/demos.tap 20
ok
PASS: Magick++/demo/demos.tap 21
ok
PASS: Magick++/demo/demos.tap 22
ok
PASS: Magick++/demo/demos.tap 23
ok
PASS: Magick++/demo/demos.tap 24

Any way to force input file mimetype ?

For technical reason, i do need to convert imagemagick file who don't have file_extension in their own filename but i do have mimetype of the file. Is there is anyway to force imagemagick to use mimetype provided to process the file instead of guessed one by imagemagick.

Use case is for raw file like .ARW(image/x-sony-arw), they are considered as tiff if no file_extension is provided, which raise this kind of issue:


 ❯ convert DSC08523 -layers merge test.jpg
convert-im6.q16: Unknown field with tag 50341 (0xc4a5) encountered. `TIFFReadDirectory' @ warning/tiff.c/TIFFWarnings/912.
convert-im6.q16: TIFF directory is missing required "ImageLength" field. `MissingRequired' @ error/tiff.c/TIFFErrors/564.
convert-im6.q16: no images defined `test.jpg' @ error/convert.c/ConvertImageCommand/3258.

Issue for Converting Colorspace ( RGB PDF to CMYK)

I have an issue (ImageMagick version 6.9.3) for converting sRGB PDF file to CMYK.
The output PDF file always "RGB". It is not converting to CMYK
This issue only happening to convert PDF to PDF.
On PDF to JPG conversion colorspace change to CMYK.

The command we have used is
convert "source.pdf" -colorspace cmyk "output.pdf"

[6.9.10.37] failed tests on FreeBSD

Btw how do the test find fonts? I'm building with both fontconfig and freetype enabled and the test suite can't find the helvetica font. and I have several hiits for "Helvetica" when I run the fc-list command.

==========================================
ImageMagick 6.9.10: ./test-suite.log

TOTAL: 76

PASS: 70

SKIP: 0

XFAIL: 0

FAIL: 6

XPASS: 0

ERROR: 0

.. contents:: :depth: 2

FAIL: tests/wandtest

tests/wandtest.c main 5323 non-conforming drawing primitive definition `text' @ error/draw.c/RenderMVGContent/4348
1..1
Reading images...
Iterate forward...
index 0 scene 0
index 1 scene 1
index 2 scene 2
index 3 scene 3
index 4 scene 4
Iterate reverse...
index 4 scene 4
index 3 scene 3
index 2 scene 2
index 1 scene 1
index 0 scene 0
Remove scene 1...
index 0 scene 0
index 1 scene 2
index 2 scene 3
index 3 scene 4
Insert scene 1 back in sequence...
index 0 scene 0
index 1 scene 1
index 2 scene 2
index 3 scene 3
index 4 scene 4
Set scene 2 to scene 1...
index 0 scene 0
index 1 scene 1
index 2 scene 1
index 3 scene 3
index 4 scene 4
Apply image processing options...
not ok
FAIL: tests/wandtest.tap 1

FAIL: Magick++/demo/demos

1..24
File: /usr/home/kwm/sources/freebsd/ports/graphics/ImageMagick6/work/ImageMagick-6.9.10-37/Magick++/demo//model.miff
TopLeftColor =
TopRightColor =
BottomLeftColor =
BottomRightColor =
filter:brightness:mean = 31077.3
filter:brightness:standard-deviation = 14635.5
filter:brightness:kurtosis = 0.657217
filter:brightness:skewness = 1.34114
filter:saturation:mean = 14031.6
filter:saturation:standard-deviation = 8379.05
filter:saturation:kurtosis = 0.631727
filter:saturation:skewness = 1.03422
ok
PASS: Magick++/demo/demos.tap 1
Caught exception: button: unable to read font helvetica' @ error/annotate.c/RenderFreetype/1333 not ok FAIL: Magick++/demo/demos.tap 2 Read images ... Creating thumbnails... add noise ... add noise (blue) ... annotate ... Caught exception: demo: unable to read font helvetica' @ error/annotate.c/RenderFreetype/1333
not ok
FAIL: Magick++/demo/demos.tap 3
Writing image "flip_out.miff" ...
ok
PASS: Magick++/demo/demos.tap 4
angle 0
Caught exception: gravity: unable to read font helvetica' @ error/annotate.c/RenderFreetype/1333 not ok FAIL: Magick++/demo/demos.tap 5 Caught exception: piddle: non-conforming drawing primitive definition text' @ error/draw.c/RenderMVGContent/4348
not ok
FAIL: Magick++/demo/demos.tap 6
Caught exception: shapes: unable to read font `helvetica' @ error/annotate.c/RenderFreetype/1333
not ok
FAIL: Magick++/demo/demos.tap 7
ok
PASS: Magick++/demo/demos.tap 8
ok
PASS: Magick++/demo/demos.tap 9
ok
PASS: Magick++/demo/demos.tap 10
ok
PASS: Magick++/demo/demos.tap 11
ok
PASS: Magick++/demo/demos.tap 12
ok
PASS: Magick++/demo/demos.tap 13
ok
PASS: Magick++/demo/demos.tap 14
ok
PASS: Magick++/demo/demos.tap 15
ok
PASS: Magick++/demo/demos.tap 16
ok
PASS: Magick++/demo/demos.tap 17
ok
PASS: Magick++/demo/demos.tap 18
ok
PASS: Magick++/demo/demos.tap 19
ok
PASS: Magick++/demo/demos.tap 20
ok
PASS: Magick++/demo/demos.tap 21
ok
PASS: Magick++/demo/demos.tap 22
ok
PASS: Magick++/demo/demos.tap 23
ok
PASS: Magick++/demo/demos.tap 24

Build failure with MinGW-w64

I'm unable to cross-compile ImageMagick 6.9.10-80 with MinGW-w64. Here's the salient part of the build log: https://gist.github.com/kleisauke/d385c6b02d31690fb9b22a6ddecad612

Note that the multiple definition linker error also affects other dependent packages: Imagick/imagick#311

This patch fixes it for me:

diff --git a/magick/memory_.h b/magick/memory_.h
index 1111111..2222222 100644
--- a/magick/memory_.h
+++ b/magick/memory_.h
@@ -68,7 +68,7 @@ extern MagickExport void
   SetMagickMemoryMethods(AcquireMemoryHandler,ResizeMemoryHandler,
     DestroyMemoryHandler);
 
-inline MagickExport MagickBooleanType HeapOverflowSanityCheck(
+inline MagickBooleanType HeapOverflowSanityCheck(
   const size_t count,const size_t quantum)
 {
   if ((count == 0) || (quantum == 0))
@@ -81,7 +81,7 @@ inline MagickExport MagickBooleanType HeapOverflowSanityCheck(
   return(MagickFalse);
 }
 
-inline MagickExport MagickBooleanType HeapOverflowSanityCheckGetSize(
+inline MagickBooleanType HeapOverflowSanityCheckGetSize(
   const size_t count,const size_t quantum,size_t *const extent)
 {
   size_t
diff --git a/magick/magick-config.h b/magick/magick-config.h
index 1111111..2222222 100644
--- a/magick/magick-config.h
+++ b/magick/magick-config.h
@@ -162,7 +162,7 @@ extern "C" {
 #  define __has_builtin(x) 0
 #endif
 
-#if __STDC_VERSION__ > 201112L
+#if defined(__STDC_VERSION__) && __STDC_VERSION__ > 201112L && !defined(__MINGW32__)
 # define MAGICKCORE_HAVE_STDC_ALIGNED_ALLOC 1
 #endif
 

convert hdr to yuv

I have tried to convert the hdr files to yuv format by using "magick convert *.hdr *.yuv". However, I don't know the format of the file *.yuv.

Can I set the format of YUV in command line?

Magic++: Expanded color map not written to file

Using Magic++ 6.9.7.4+dfsg-16ubuntu6.4 amd64 on Ubuntu 18.04.2.
When I load a 8-bit paletted PNG, resize the color map and write to the file again the color map still has the same size, not the expanded size as expected. This also happens if I I set the expanded, previously unused entries.
Example code:

Image img;
img.read("in.png"); //<-- 8bit paletted file, 255 colors
std::vector<Color> colorMap;
for (size_t i = 0; i < img->colorMapSize(); ++i) {
    colorMap.push_back(img->colorMap(i));
}
img.colorMapSize(img.colorMapSize() + 1); //<--after this this the color map is actually 1 entry bigger
colorMap.push_back(Color("#ff00ff"));
for (size_t i = 0; i < colorMap.size(); ++i) {
    img->colorMap(i, colorMap.at(i));
}
img.write("out.png"); //<--image written has still 255 colors

I also tried calling img.modifyImage() before and img.syncPixels () afterwards, but that didn't change anything. There's no need to expand the color map. A simple swap of color map entries refuses to work for me...

Segmentation fault inside ProfileImage

New tests are being added to the https://github.com/rmagick/rmagick/ project and one of these tests discovered an issue inside the ProfileImage method in ImageMagick 6 (cannot be reproduced in ImageMagick 7). This issue can be reproduce by cloning the rmagick repository and running the following command: convert doc/ex/images/Button_0.gif[0] -profile test/cmyk.icm -profile test/srgb.icm. Below is the output of gdb (inside an ubuntu docker container with ImageMagick 6.9.10-39):

root@c8c88a53272f:/rmagick# gdb --args /ImageMagick-6.9.10-39/utilities/.libs/convert doc/ex/images/Button_0.gif[0] -profile test/cmyk.icm -profile test/srgb.icm null:
GNU gdb (Debian 7.12-6) 7.12.0.20161007-git
Copyright (C) 2016 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "x86_64-linux-gnu".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>.
Find the GDB manual and other documentation resources online at:
<http://www.gnu.org/software/gdb/documentation/>.
For help, type "help".
Type "apropos word" to search for commands related to "word"...
Reading symbols from /ImageMagick-6.9.10-39/utilities/.libs/convert...done.
(gdb) r
Starting program: /ImageMagick-6.9.10-39/utilities/.libs/convert doc/ex/images/Button_0.gif\[0\] -profile test/cmyk.icm -profile test/srgb.icm null:
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".

Program received signal SIGSEGV, Segmentation fault.
ProfileImage._omp_fn.0 () at magick/profile.c:1179
1179                      *p++=LCMSScaleSource(GetPixelIndex(indexes+x));
(gdb) bt
#0  ProfileImage._omp_fn.0 () at magick/profile.c:1179
#1  0x00007ffff4fbdcff in GOMP_parallel () from /usr/lib/x86_64-linux-gnu/libgomp.so.1
#2  0x00007ffff788b005 in ProfileImage (image=0x555555787e70, name=name@entry=0x5555557a2af0 "icc", datum=<optimized out>, length=length@entry=3144,
    magick_unused_clone=magick_unused_clone@entry=MagickFalse) at magick/profile.c:1136
#3  0x00007ffff7488aa9 in MogrifyImage (image_info=image_info@entry=0x55555576e5f0, argc=argc@entry=5, argv=argv@entry=0x555555772798, image=image@entry=0x7fffffffd0f8,
    exception=exception@entry=0x555555768dd0) at wand/mogrify.c:2521
#4  0x00007ffff7490539 in MogrifyImages (image_info=0x55555576e5f0, post=post@entry=MagickTrue, argc=5, argv=0x555555772798, images=images@entry=0x7fffffffd0f8,
    exception=exception@entry=0x555555768dd0) at wand/mogrify.c:8928
#5  0x00007ffff741ac3f in ConvertImageCommand (image_info=0x55555576e5f0, image_info@entry=0x55555576a450, argc=<optimized out>, argc@entry=7, argv=<optimized out>,
    argv@entry=0x7fffffffeb58, metadata=metadata@entry=0x0, exception=exception@entry=0x555555768dd0) at wand/convert.c:3256
#6  0x00007ffff7485456 in MagickCommandGenesis (image_info=0x55555576a450, command=0x7ffff7418700 <ConvertImageCommand>, argc=7, argv=0x7fffffffeb58, metadata=<optimized out>,
    exception=0x555555768dd0) at wand/mogrify.c:172
#7  0x00005555555549e9 in ConvertMain (argv=0x7fffffffeb58, argc=7) at utilities/convert.c:81
#8  main (argc=7, argv=0x7fffffffeb58) at utilities/convert.c:92

Please bump version when soname change #1150

Hi,

Soname have changed again (.5 => .6) in a patch version which is terribly hard to manage when we want to be able to install multiple version (ImageMagick6 package and default ImageMagick from the distro), especially because only version (6.9.9) is used for directory layout.

So, 6.9.10 will be better.

Assertion failed on macOS

I've updated ImageMagick6 to version 6.9.9-42 with homebrew. I'm using it with the ruby gem rmagick.

ImageMagick crashes the ruby process with

Assertion failed: (image != (Image *) NULL), function NegateImageChannel, file magick/enhance.c, line 3991.
Received signal 6

I do not have the exact call causing the issue since it's breaking in a large code base. If it's required I could try to do a small script to reproduce the issue.

Downgrading to 6.9.9-40 fixes the issue.

Wrong format detection for TIFF image

Hello! I have an error (improper image header /Users/qtdev/Desktop/Untitled.tif' @ error/psd.c/ReadPSDLayersInternal/1678.) for a TIFF image Untitled.tif.zip created in Photoshop.
Here is identify -verbose /Users/qtdev/Desktop/Untitled.tif result:

Image: /Users/qtdev/Desktop/Untitled.tif
  Format: TIFF (Tagged Image File Format)
  Mime type: image/tiff
  Class: DirectClass
  Geometry: 1000x1000+0+0
  Resolution: 300x300
  Print size: 3.33333x3.33333
  Units: PixelsPerInch
  Colorspace: sRGB
  Type: Palette
  Base type: TrueColor
  Endianess: LSB
  Depth: 8/1-bit
  Channel depth:
    red: 1-bit
    green: 1-bit
    blue: 1-bit
  Channel statistics:
    Pixels: 1000000
    Red:
      min: 255  (1)
      max: 255 (1)
      mean: 255 (1)
      standard deviation: 0 (0)
      kurtosis: 8.192e+51
      skewness: 1e+36
      entropy: 0
    Green:
      min: 0  (0)
      max: 255 (1)
      mean: 223.741 (0.877416)
      standard deviation: 83.6296 (0.327959)
      kurtosis: 3.29737
      skewness: -2.3016
      entropy: 0.536743
    Blue:
      min: 0  (0)
      max: 255 (1)
      mean: 223.741 (0.877416)
      standard deviation: 83.6296 (0.327959)
      kurtosis: 3.29737
      skewness: -2.3016
      entropy: 0.536743
  Image statistics:
    Overall:
      min: 0  (0)
      max: 255 (1)
      mean: 234.161 (0.918277)
      standard deviation: 55.7531 (0.21864)
      kurtosis: 7.3255
      skewness: -3.05377
      entropy: 0.357829
  Colors: 2
  Histogram:
    122584: (255,  0,  0) #FF0000 red
    877416: (255,255,255) #FFFFFF white
  Rendering intent: Perceptual
  Gamma: 0.454545
  Chromaticity:
    red primary: (0.64,0.33)
    green primary: (0.3,0.6)
    blue primary: (0.15,0.06)
    white point: (0.3127,0.329)
  Background color: white
  Border color: srgb(223,223,223)
  Matte color: grey74
  Transparent color: black
  Interlace: None
  Intensity: Undefined
  Compose: Over
  Page geometry: 1000x1000+0+0
  Dispose: Undefined
  Iterations: 0
  Compression: None
  Orientation: TopLeft
  Properties:
    date:create: 2018-07-26T16:01:36+03:00
    date:modify: 2018-07-26T16:01:36+03:00
    dc:format: image/tiff
    exif:PixelXDimension: 1000
    exif:PixelYDimension: 1000
    icc:copyright: Copyright 1999 Adobe Systems Incorporated
    icc:description: Adobe RGB (1998)
    photoshop:ColorMode: 3
    photoshop:ICCProfile: Adobe RGB (1998)
    signature: 27a9acb34d4d0c286ada0e59e96e2dd5e46e787a2e703427bbb1169997b91b05
    tiff:alpha: unspecified
    tiff:endian: lsb
    tiff:photometric: RGB
    tiff:rows-per-strip: 2
    tiff:software: Adobe Photoshop CC (Macintosh)
    tiff:timestamp: 2018:07:26 16:01:21
    xmp:CreateDate: 2018-07-26T16:01:21+03:00
    xmp:CreatorTool: Adobe Photoshop CC (Macintosh)
    xmp:MetadataDate: 2018-07-26T16:01:21+03:00
    xmp:ModifyDate: 2018-07-26T16:01:21+03:00
    xmpMM:DocumentID: xmp.did:c919506e-be00-4845-a9a1-9012fad8276f
    xmpMM:InstanceID: xmp.iid:c919506e-be00-4845-a9a1-9012fad8276f
    xmpMM:OriginalDocumentID: xmp.did:c919506e-be00-4845-a9a1-9012fad8276f
  Profiles:
    Profile-8bim: 3704 bytes
    Profile-icc: 560 bytes
    Profile-tiff:37724: 1604 bytes
    Profile-xmp: 13922 bytes
  Artifacts:
    filename: /Users/qtdev/Desktop/Untitled.tif
    verbose: true
  Tainted: False
  Filesize: 2.88028MiB
  Number pixels: 1000000
  Pixels per second: 100MB
  User time: 0.020u
  Elapsed time: 0:01.009
  Version: ImageMagick 6.9.10-7 Q16 x86_64 2018-07-26 https://www.imagemagick.org
identify: improper image header `/Users/qtdev/Desktop/Untitled.tif' @ error/psd.c/ReadPSDLayersInternal/1678.

System: macOS 10.13.6
Magick: ImageMagick-6.9.10-7;ImageMagick-6.9.10-8
Another TIFF image with the problem:
TIFF-1998.tif.zip

Convert command always taking policy from global policy.xml file instead of custom path

Description

I use ImageMagick to convert pdf files to png, the ImageMagick version I am using (6.8.9-9) ships with a default policy.xml file that has no permissions for reading PDF files. I changed that policy.xml file and everything is working correctly, but I want to be able to have my own policy.xml file in a path of my choice that I can ship with my project, so I can deploy the project in a new server without having to configure the server's default policy.xml file every time.

According to ImageMagick v6 documentation the policy will be looked for in the following locations (I'm using the precompiled binary installation for Ubuntu 16.04):

$MAGICK_CONFIGURE_PATH
$MAGICK_HOME/etc/ImageMagick-6 
$MAGICK_HOME/share/ImageMagick-6 
$PREFIX/share/ImageMagick-6 
$XDG_CACHE_HOME/ImageMagick
$HOME/.config/ImageMagick/
<client path>/etc/ImageMagick
<current directory>

So I set the env variable MAGICK_CONFIGURE_PATH to the path I put my policy file on. I would expect the convert command to find it there and use that policy to execute, but it seems to be using the one in /etc/ImageMagick-6 anyway. The policy file is correctly found when using the command to list the policy:

$convert -list policy

Path: /home/<user>/path/to/file/policy.xml
  Policy: undefined
    rights: None 
  Policy: Coder
    rights: None 
    pattern: EPHEMERAL
  Policy: Coder
    rights: None 
    pattern: URL
  Policy: Coder
    rights: None 
    pattern: HTTPS
  Policy: Coder
    rights: None 
    pattern: MVG
  Policy: Coder
    rights: None 
    pattern: MSL
  Policy: Coder
    rights: None 
    pattern: TEXT
  Policy: Coder
    rights: None 
    pattern: SHOW
  Policy: Coder
    rights: None 
    pattern: WIN
  Policy: Coder
    rights: None 
    pattern: PLT
  Policy: Path
    rights: None 
    pattern: @*
  Policy: Coder
    rights: None 
    pattern: PS
  Policy: Coder
    rights: None 
    pattern: EPS
  Policy: Coder
    rights: Read 
    pattern: PDF
  Policy: Coder
    rights: None 
    pattern: XPS

Path: /etc/ImageMagick-6/policy.xml
  Policy: undefined
    rights: None 
  Policy: Coder
    rights: None 
    pattern: EPHEMERAL
  Policy: Coder
    rights: None 
    pattern: URL
  Policy: Coder
    rights: None 
    pattern: HTTPS
  Policy: Coder
    rights: None 
    pattern: MVG
  Policy: Coder
    rights: None 
    pattern: MSL
  Policy: Coder
    rights: None 
    pattern: TEXT
  Policy: Coder
    rights: None 
    pattern: SHOW
  Policy: Coder
    rights: None 
    pattern: WIN
  Policy: Coder
    rights: None 
    pattern: PLT
  Policy: Path
    rights: None 
    pattern: @*
  Policy: Coder
    rights: None 
    pattern: PS
  Policy: Coder
    rights: None 
    pattern: EPS
  Policy: Coder
    rights: None 
    pattern: PDF
  Policy: Coder
    rights: None 
    pattern: XPS

Path: [built-in]
  Policy: Undefined
    rights: None 

But I get a not authorized error. If I change the policy file in /etc/ImageMagick-6/policy.xml to allow reading PDF files, my convert command works.

I have also tried to place the policy file in the <current directory> from where I call the convert command, it also appears when I execute convert -list policy, but I still get the not authorized error unless I changed the global policy file.

System Configuration

  • ImageMagick version: 6.8.9-9
  • Environment (Operating system, version and so on): Ubuntu 16.04.4

[6.9.10-86] Broken build with old librsvg

Same as ImageMagick/ImageMagick#1830


coders/svg.c: In function 'ReadSVGImage':
coders/svg.c:3316: warning: implicit declaration of function 'rsvg_handle_new_with_flags'
coders/svg.c:3316: error: 'RSVG_HANDLE_FLAG_UNLIMITED' undeclared (first use in this function)
coders/svg.c:3316: error: (Each undeclared identifier is reported only once
coders/svg.c:3316: error: for each function it appears in.)
make[1]: Leaving directory `/builddir/build/BUILD/ImageMagick-6.9.10-86'
make[1]: *** [coders/svg_la-svg.lo] Error 1
make: *** [all] Error 2

ERROR_DELEGATE error persists until application is restarted

I have a program written in Go using the gographics/imagick binding. I'm not entirely sure where this problem occurs as it could be the Go binding, the magicwand library, or the core library, based on my understanding. My program takes a PDF and uses this library to convert each page into an image (for display in a browser).

The problem I'm experiencing is not the fact that ImageMagick couldn't run Ghostscript (that could be for a number of reasons, including RAM usage - I'm not sure yet), but that as soon as the error happens once, it then persists until my program (an HTTP server) is restarted. I assume this means there's a global state that's affected by the error occurring the first time.

I posted a similar issue on the GitHub repo for the Go binding:
gographics/imagick#164

This is the error message I receive:

ERROR_DELEGATE: FailedToExecuteCommand `"gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r200x200"  "-sOutputFile=/tmp/magick-24400PpSXLyVuSma4%d" "-f/tmp/magick-24400QWICA9Cnlcm4" "-f/tmp/magick-24400qFq7Wa4N4ay4"' (-1) @ error/delegate.c/ExternalDelegateCommand/461

win7: Procedure starting point “_free_locale” not found in DLL “msvcrt.dll”

On Windows 7, an application linked with libMagickCore-6.Q8-6.dll shows the following error:
Procedure starting point “_free_locale” not found in DLL “msvcrt.dll”

The application and libMagickCore were compiled on Windows 10 in Msys2 with both mingw64 and mingw32. The problem is, that the library imports "_free_locale" from "msvcrt.dll", but on Windows 7, the import is missing.

It seems that the issue was caused by the commit 75c562a which calls freelocale(), which is translated to _free_locale by the preprocessor:

# define freelocale _free_locale

Our workaround was to change this line:

#if defined(MAGICKCORE_HAVE_NEWLOCALE) || defined(MAGICKCORE_WINDOWS_SUPPORT)

to:

#if (defined(MAGICKCORE_HAVE_NEWLOCALE) || defined(MAGICKCORE_WINDOWS_SUPPORT)) && !defined(__MINGW32__)

which disables MAGICKCORE_LOCALE_SUPPORT

GCC version: g++.exe (Rev1, Built by MSYS2 project) 7.3.0
msys2 package name: mingw64/mingw-w64-x86_64-gcc 7.3.0-1

Thanks for your hard work,
Michal

Error reading pdf/pam files when the background is set to transparent

When reading a CMYK pdf file with python-wand, the following error is thrown:

wand.exceptions.CorruptImageError: unable to read image data `...' @ error/pnm.c/ReadPNMImage/1346

This issue was described on [1], [2], [3] and [4].
[1] https://imagemagick.org/discourse-server/viewtopic.php?f=6&t=35326&p=163174
[2] https://stackoverflow.com/q/50723020
[3] https://stackoverflow.com/q/52049129
[4] https://stackoverflow.com/q/54756773

In the case of CMYK pdf files, ImageMagick uses GS to convert the image to the
PAM format, by using the '-sDEVICE=pamcmyk32' argument.
I've extracted the intermediate PAM files produced by GS. Those files can be
converted by the ImageMagick command line utilities, but opening them with
python-wand produced the same error.
Such PAM image file is attached here.
This short python snippet can be used to reproduce the error:

import wand.image
wand.image.Image(filename="/path/to/cmyk.pam")

Digging into the python-wand code, I found that the following code [5] is related to
the issue:

with Color('transparent') as bg:  # FIXME: parameterize this
    result = library.MagickSetBackgroundColor(self.wand,
                                              bg.resource)

[5] https://github.com/emcconville/wand/blob/master/wand/image.py#L4996

Changing the background color to 'white' or commenting-out those lines made
the error go away.

Looking at the reader code on "coders/pnm.c", I believe that I found the root
cause of the issue. This code takes the transparent background color as an
indication that the image file contains an alpha channel.

In line 450, SetImageBackgroundColor is called. It sets image->matte based on
the background color transparency.
Then, in line 970, the number of expected channels on the file is
increased based on image->matte.
So, setting the background color to transparent made the reader expect an
alpha channel in the input image, although the headers of the image tell that
it doesn't include such a channel.

As a result, the reader expects more data bytes than the file has, leading to
the described exception.

config.xml when crosscompiling

After googling, trying out different flags and getting a bit lost of what to actually do, I thought it makes the most sense to just ask here.
I'm crosscompile binaries for ImageMagick for the Julia ImageMagick wrapper:
https://github.com/JuliaIO/ImageMagickBuilder/releases
The problem is, it doesn't seem to find the config.xml, and the config xml I find has all paths hardcoded to the ones of the crosscompilation environment. The binary does actually work and passes our tests, but callling MagickQueryConfigureOption for the version number doesn't work:

julia> ENV["MAGICK_DEBUG"] = "All" # somehow it doesn't pick up the environment variable?!
julia> using ImageMagick
julia> option = "LIB_VERSION_NUMBER"
julia> p = ccall((:MagickQueryConfigureOption, ImageMagick.libwand), Ptr{UInt8}, (Ptr{UInt8},), option)
Please submit a bug report with steps to reproduce this fault, and any error messages that follow (in their entirety). Thanks.
Exception: EXCEPTION_ACCESS_VIOLATION at 0x11310e64 -- MagickQueryConfigureOption at /workspace/srcdir/ImageMagick6\wand\magick-wand.c:424
while loading no file, in expression starting on line 0
MagickQueryConfigureOption at /workspace/srcdir/ImageMagick6\wand\magick-wand.c:424
anonymous at .\<missing> (unknown line)
jl_call_fptr_internal at /home/Administrator/buildbot/worker/package_win64/build/src/home/Administrator/buildbot/worker/package_win64/build/src\julia_internal.h:339 [inlined]
jl_call_method_internal at /home/Administrator/buildbot/worker/package_win64/build/src/home/Administrator/buildbot/worker/package_win64/build/src\julia_internal.h:358 [inlined]
jl_toplevel_eval_flex at /home/Administrator/buildbot/worker/package_win64/build/src/home/Administrator/buildbot/worker/package_win64/build/src\toplevel.c:589
jl_toplevel_eval_in at /home/Administrator/buildbot/worker/package_win64/build/src/home/Administrator/buildbot/worker/package_win64/build/src\builtins.c:496
eval at .\boot.jl:235

Some more outputs:

PS C:\Users\sdani\.julia\v0.6\ImageMagick\deps\usr\bin> .\convert.exe -debug all -list configure
2018-07-09T19:24:05+02:00 0:00.004 0.000u 6.9.10 Configure convert.exe[14744]: magick/utility.c/ExpandFilenames/954/Configure
  Command line: C:\Users\sdani\.julia\v0.6\ImageMagick\deps\usr\bin\convert.exe {-debug} {all} {-list} {configure}
2018-07-09T19:24:05+02:00 0:00.068 0.000u 6.9.10 Configure convert.exe[14744]: magick/configure.c/GetConfigureOptions/685/Configure
  Searching for configure file: "/workspace/destdir/share/ImageMagick-6/configure.xml"
2018-07-09T19:24:05+02:00 0:00.594 0.000u 6.9.10 Configure convert.exe[14744]: magick/configure.c/GetConfigureOptions/685/Configure
  Searching for configure file: "/workspace/destdir/lib/ImageMagick-6.9.10/\config-Q16\configure.xml"
2018-07-09T19:24:06+02:00 0:01.280 0.016u 6.9.10 Configure convert.exe[14744]: magick/configure.c/GetConfigureOptions/685/Configure
  Searching for configure file: "/workspace/destdir/etc/ImageMagick-6/configure.xml"
2018-07-09T19:24:07+02:00 0:02.309 0.031u 6.9.10 Configure convert.exe[14744]: magick/configure.c/GetConfigureOptions/685/Configure
  Searching for configure file: "/workspace/destdir/share/doc/ImageMagick-6/configure.xml"
2018-07-09T19:24:07+02:00 0:02.488 0.031u 6.9.10 Configure convert.exe[14744]: magick/configure.c/GetConfigureOptions/685/Configure
  Searching for configure file: "C:\Users\sdani\AppData\Local\ImageMagick\configure.xml"
2018-07-09T19:24:08+02:00 0:03.167 0.031u 6.9.10 Exception convert.exe[14744]: magick/configure.c/GetConfigureOptions/712/Exception
  UnableToOpenConfigureFile `configure.xml'

Path: [built-in]

Name           Value
-------------------------------------------------------------------------------
FEATURES
NAME           ImageMagick
QuantumDepth   16
convert.exe: UnableToOpenConfigureFile `configure.xml' @ warning/configure.c/GetConfigureOptions/712.
>convert.exe -version
Version: ImageMagick 6.9.10-4 Q16 x86_64 2018-07-09 https://www.imagemagick.org
Copyright: ┬® 1999-2018 ImageMagick Studio LLC
License: https://www.imagemagick.org/script/license.php
Features: Cipher DPC Modules
Delegates (built-in): gslib jng jpeg png ps tiff zlib

With the environment variable MAGICK_CONFIGURE_PATH set to the config folder i found I get:

PS C:\Users\sdani\.julia\v0.6\ImageMagick\deps\usr\bin> .\convert.exe -debug all -list configure
2018-07-09T19:29:32+02:00 0:00.003 0.000u 6.9.10 Configure convert.exe[17036]: magick/utility.c/ExpandFilenames/954/Configure
  Command line: C:\Users\sdani\.julia\v0.6\ImageMagick\deps\usr\bin\convert.exe {-debug} {all} {-list} {configure}
2018-07-09T19:29:32+02:00 0:00.025 0.000u 6.9.10 Configure convert.exe[17036]: magick/configure.c/GetConfigureOptions/685/Configure
  Searching for configure file: "C:\Users\sdani\.julia\v0.6\ImageMagick\deps\usr\lib\ImageMagick-6.9.10\config-Q16\configure.xml"
2018-07-09T19:29:32+02:00 0:00.039 0.000u 6.9.10 Configure convert.exe[17036]: magick/configure.c/GetConfigureOptions/685/Configure
  Searching for configure file: "/workspace/destdir/share/ImageMagick-6/configure.xml"
2018-07-09T19:29:32+02:00 0:00.148 0.000u 6.9.10 Configure convert.exe[17036]: magick/configure.c/GetConfigureOptions/685/Configure
  Searching for configure file: "/workspace/destdir/lib/ImageMagick-6.9.10/\config-Q16\configure.xml"
2018-07-09T19:29:33+02:00 0:00.486 0.000u 6.9.10 Configure convert.exe[17036]: magick/configure.c/GetConfigureOptions/685/Configure
  Searching for configure file: "/workspace/destdir/etc/ImageMagick-6/configure.xml"
2018-07-09T19:29:34+02:00 0:01.304 0.000u 6.9.10 Configure convert.exe[17036]: magick/configure.c/GetConfigureOptions/685/Configure
  Searching for configure file: "/workspace/destdir/share/doc/ImageMagick-6/configure.xml"
2018-07-09T19:29:34+02:00 0:01.776 0.000u 6.9.10 Configure convert.exe[17036]: magick/configure.c/GetConfigureOptions/685/Configure
  Searching for configure file: "C:\Users\sdani\AppData\Local\ImageMagick\configure.xml"
2018-07-09T19:29:35+02:00 0:02.480 0.016u 6.9.10 Configure convert.exe[17036]: magick/configure.c/LoadConfigureCache/1175/Configure
  Loading configure file "C:\Users\sdani\.julia\v0.6\ImageMagick\deps\usr\lib\ImageMagick-6.9.10\config-Q16\configure.xml" ...

Path: [built-in]

Name           Value
-------------------------------------------------------------------------------
FEATURES
NAME           ImageMagick
QuantumDepth   16
Path: C:\Users\sdani\.julia\v0.6\ImageMagick\deps\usr\lib\ImageMagick-6.9.10\config-Q16\configure.xml
Name           Value
-------------------------------------------------------------------------------
CC             /opt/x86_64-w64-mingw32/bin/x86_64-w64-mingw32-gcc
CFLAGS         -I/workspace/destdir/include/libpng16 -I/workspace/destdir/include  -I/workspace/destdir/include    -g -O2 -Wall -fexceptions -pthread -DMAGICKCORE_HDRI_ENABLE=0 -DMAGICKCORE_QUANTUM_DEPTH=16
CODER_PATH     /workspace/destdir/lib/ImageMagick-6.9.10/modules-Q16/coders
CONFIGURE      ./configure  '--prefix=/workspace/destdir' '--host=x86_64-w64-mingw32' '--disable-openmp' 'host_alias=x86_64-w64-mingw32' 'CC=/opt/x86_64-w64-mingw32/bin/x86_64-w64-mingw32-gcc' 'CXX=/opt/x86_64-w64-mingw32/bin/x86_64-w64-mingw32-g++' 'PKG_CONFIG_PATH=/workspace/destdir/lib/pkgconfig'
CONFIGURE_PATH /workspace/destdir/etc/ImageMagick-6/
COPYRIGHT      Copyright (C) 1999-2018 ImageMagick Studio LLC
CPPFLAGS       -I/workspace/destdir/include/ImageMagick-6 -D_DLL -D_MT
CXX            /opt/x86_64-w64-mingw32/bin/x86_64-w64-mingw32-g++
CXXFLAGS       -g -O2 -pthread
DEFS           -DHAVE_CONFIG_H
DELEGATES      mpeg jng jpeg png ps tiff zlib
DISTCHECK_CONFIG_FLAGS 'CC=/opt/x86_64-w64-mingw32/bin/x86_64-w64-mingw32-gcc' 'CXX=/opt/x86_64-w64-mingw32/bin/x86_64-w64-mingw32-g++'  --disable-deprecated  --with-quantum-depth=16  --with-jemalloc=no  --with-umem=no  --with-autotrace=no  --with-gslib=no  --with-fontpath=  --with-rsvg=no  --with-perl=no
DOCUMENTATION_PATH /workspace/destdir/share/doc/ImageMagick-6
EXEC-PREFIX    /workspace/destdir
EXECUTABLE_PATH /workspace/destdir/bin
FEATURES       Cipher
FILTER_PATH    /workspace/destdir/lib/ImageMagick-6.9.10/modules-Q16/filters
GIT_REVISION
HOST           x86_64-w64-mingw32
INCLUDE_PATH   /workspace/destdir/include/ImageMagick-6
LDFLAGS        -L/workspace/destdir/lib
LIB_VERSION    0x69A
LIB_VERSION_NUMBER 6,9,10,4
LIBRARY_PATH   /workspace/destdir/lib/ImageMagick-6.9.10
LIBS              -ltiff   -ljpeg   -L/workspace/destdir/lib -lpng16 -L/workspace/destdir/bin -lz                          -L/workspace/destdir/lib -L/workspace/destdir/bin -lz   -lgdi32 -lws2_32 -lm
NAME           ImageMagick
PCFLAGS        -DMAGICKCORE_HDRI_ENABLE=0 -DMAGICKCORE_QUANTUM_DEPTH=16 -D_DLL -D_MT
PREFIX         /workspace/destdir
QuantumDepth   16
RELEASE_DATE   2018-07-05
SHARE_PATH     /workspace/destdir/share/ImageMagick-6
SHAREARCH_PATH /workspace/destdir/lib/ImageMagick-6.9.10/config-Q16
TARGET_CPU     x86_64
TARGET_OS      mingw32
TARGET_VENDOR  w64
VERSION        6.9.10
WEBSITE        http://www.imagemagick.org

Which is better, but also shows all those hardcoded paths and still segfaults when calling query options.

The configure flags I'm currently using are:

./configure --prefix=$prefix --host=$target --disable-openmp --disable-install --disable-dependency-tracking --without-frozenpaths --without-perl

And before I actually just used ./configure --prefix=$prefix --host=$target --disable-openmp, which also worked.

Is there any environment variable or configure flag I can use to fix this?
I tried a few things like setting MAGICK_HOME, MAGICK_CONFIGURE_PATH etc, but it didn't really improve the situation

--with-fontconfig not working

brew install imagemagick@6 --with-fontconfig --with-librsvg
Warning: imagemagick@6: this formula has no --with-fontconfig option so it will be ignored!
Warning: imagemagick@6: this formula has no --with-librsvg option so it will be ignored!

Bug: PSD alpha sometimes incorrect

For PSD files with just a single layer, there are cases where the layer does have an alpha channel but the image itself should be considered to not have an alpha channel. Photoshop and GIMP correctly load these images as being fully opaque, but ImageMagick (incorrectly) uses the alpha channel from the layer data.

Silent ABI break in 6.9.10-11 on i386

Prerequisites

  • I have written a descriptive issue title
  • I have verified that I am using the latest version of ImageMagick
  • I have searched open and closed issues to ensure it has not already been reported

Description

Commit 94a86b3 changed sizeof(MagickDoubleType) on i386 and made the low level ABI break for programs accessing some public structs via pointers.

Steps to Reproduce

test.c:
#include <magick/MagickCore.h>
#include <stddef.h>
int main(){
printf("%d %d\n", offsetof(DrawInfo, text), sizeof(MagickDoubleType));
return 0;
}

# compiled with 6.9.10-8
$ ./a.out
280 12

# compiled with 6.9.10-14
$ ./a.out
272 8

System Configuration

  • ImageMagick version: 6.9.10-14
  • Environment (Operating system, version and so on): Ubuntu 19.04 i386

Magic++: Expanding the color map destroys it

Using Magic++ 6.9.7.4+dfsg-16ubuntu6.4 amd64 on Ubuntu 18.04.2.
When I load a 8-bit paletted PNG, resize the color map and write the file again the palette is destroyed. This is due to AcquireImageColormap() being called internally. The color map should at least retain the minimum possible number or colors.
Example code:

Image img;
img.read("in.png"); //<-- 8bit paletted file
img.colorMapSize(img.colorMapSize() + 1);
img.write("out.png");

Use after free in magick/blob.c

In magick/blob.c line 702, the function UnmapBlob freed the object 'blob_info->data', but it did't set the point null. The code returned this dangling point in line 716, it will cause UAF in this code.

coders/heic.c:320:3: error: too many arguments to function ‘SetImageProperty’

Since commit d7dc3ea, .e.g fix for #32, we can no longer build ImageMagick6 (tested with 6.9.10-21):

coders/heic.c: In function ‘ReadHEICImage’:
coders/heic.c:320:3: error: too many arguments to function ‘SetImageProperty’
   SetImageProperty(image, "exif:Orientation", "1", exception);
   ^~~~~~~~~~~~~~~~
In file included from coders/heic.c:53:
./magick/property.h:40:3: note: declared here
   SetImageProperty(Image *,const char *,const char *);
   ^~~~~~~~~~~~~~~~
coders/heic.c: In function ‘WriteHEICImage’:
coders/heic.c:572:13: warning: comparison of distinct pointer types lacks a cast
       if (p == (const Quantum *) NULL)
             ^~
make[1]: *** [Makefile:8235: coders/heic_la-heic.lo] Error 1

perl: issue vith VERSION=6.9A with old perl

Trying to run the demo on RHEL-7 (perl 5.16)

$ perl demo.pl 
Invalid version format (non-numeric data) at /usr/lib64/perl5/DynaLoader.pm line 213.
Compilation failed in require at /usr/share/perl5/vendor_perl/parent.pm line 20.
BEGIN failed--compilation aborted at /usr/lib64/perl5/vendor_perl/Image/Magick.pm line 22.
Compilation failed in require at demo.pl line 8.
BEGIN failed--compilation aborted at demo.pl line 8.
&Image::Magick::Q16::constant not defined. The required ImageMagick libraries are not installed or not installed properly.
END failed--call queue aborted at demo.pl line 8.

No issue with recent perl (e.g. 5.26 on Fedora)

data corruption bug in HEIC coder

@dlemstra
Hi.

I think there is a memory corruption bug in the HEIC coder.

file_data=RelinquishMagickMemory(file_data);

Currently, ImageMagick frees (relinquish) an allocated memory (containing a HEIF image file) right after initializing a heif_context variable. The current version uses "heif_context_read_from_memory_without_copy" (which simply sets a given memory pointer as the source of an image) not "heif_context_read_from_memory".
Here, HEIC decoder functions (in libheif library) refer the given memory pointer (which is allocated from AcquireMagickMemory and immediately freed); therefore, if the given memory region is overwritten by other memory allocations, data (raw HEIC image) will be corrupted.

To fix this problem, I think we have two options.

  1. use "heif_context_read_from_memory", not "heif_context_read_from_memory_without_copy".

  2. remove a "RelinquishMagickMemory" function in the line number 208

========
I found the commit switching to "heif_context_read_from_memory_without_copy" as some methods has been deprecated. (looks like "heif_context_read_from_memory" is deprecated??) (665b5fd)

So I recommend the option 2. (remove the invalid free operation causing memory corruption)

Thanks.

SVG to PNG

Hi, just recently we've noticed an inability to convert from SVG to PNG.

the error in the php-fpm logs we have is magick/blob.c:1252: WriteBlobStream: Assertion image->blob->type != UndefinedStream' failed.`

we use with php-pecl-imagick and centos 7.6, version 6.9.10.62-1.el7.remi appears to have the issue whilst version 6.9.10.59-1.el7.remi appears to work

We've tried to roll back but repositories no longer list the packages despite them being only 2 weeks old...

Thanks in advance for assistance.

[6.9.10-86] failed test on Manjaro

I'm trying to compile a legacy ImageMagick6-git AUR package for Arch/Manjaro Linux and I copied and modified the PKGBUILD file of the 7.x version to try compile the 6.9 version. Everything compiles, but one test fails:

Magick++/tests/tests.log:

1..12
ok
PASS: Magick++/tests/tests.tap 1
Testing throwing and catching exceptions. A program crash or a message
that the exception was not caught indicates a test failure.  A properly
formatted exception message indicates success:
Caught exception, good!:
  "lt-attributes: unable to open image `foo': No such file or directory @ error/blob.c/OpenBlob/2881"
Line: 1300, signature (1bee74f71cd8a2054a49d04df3f8c099623b1f8eac2b66b7394ec329c42a15b9) is incorrect
1 failures
not ok
FAIL: Magick++/tests/tests.tap 2
ok
PASS: Magick++/tests/tests.tap 3

Any clues?

SVG conversion regression(?)

convert file.svg -auto-orient -resize 28x28 -size 28x28 xc:white +swap -gravity center -composite file.png
results correct png using ImageMagick 6.8.9-9 Q16 x86_64 2019-06-15 (Ubuntu 16.04)
but invalid image using ImageMagick 6.9.7-4 Q16 x86_64 20170114 (Ubuntu 18.04)
During conversion latter displays:
convert-im6.q16: unrecognized color `_Linear1' @ warning/color.c/GetColorCompliance/1052. convert-im6.q16: unable to open image `_Linear1': No such file or directory @ error/blob.c/OpenBlob/2701. convert-im6.q16: no decode delegate for this image format `' @ error/constitute.c/ReadImage/504.

SVG file has internally

<path style="fill:url(#_Linear1);fill-rule:nonzero;" ...
<linearGradient id="_Linear1" ...

BTW, the 20170114 in version number under Ubuntu 18.04 looks bit weird compared to 2019-06-15 on Ubuntu 16.04

Thanks in advance.

link static library error

checking for ngx_small_light dependencies

/tmp/cckafL1q.o: In function main': nginx/objs/autotest.c:8: undefined reference to MagickWandGenesis'
collect2: ld returned 1 exit status
ImageMagick6-master/wand/.libs/libMagickWand-6.Q8.a: line 1: syntax error near unexpected token newline
ImageMagick6-master/wand/.libs/libMagickWand-6.Q8.a: line 1: !<arch>

#include <sys/types.h>
#include <unistd.h>
#include <wand/MagickWand.h>

int main() {
MagickWandGenesis();
;
return 0;
}


cc -DMAGICKCORE_HDRI_ENABLE -DMAGICKCORE_QUANTUM_DEPTH=8 -g -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/ImageMagick6-master/ -o objs/autotest objs/autotest.c /ImageMagick6-master/wand/.libs/libMagickWand-6.Q8.a /ImageMagick6-master/magick/.libs/libMagickCore-6.Q8.a /nginx/modules/ngx_small_light/deps/libwebp/src/.libs/libwebp.a /nginx/modules/ngx_small_light/deps/libjpeg-turbo/.libs/libjpeg.a /nginx/modules/ngx_small_light/deps/giflib/lib/.libs/libgif.a /nginx/modules/ngx_small_light/deps/freetype/objs/.libs/libfreetype.a /nginx/modules/ngx_small_light/deps/bzip2/libbz2.a /nginx/modules/ngx_small_light/deps/zlib/libz.a /nginx/modules/ngx_small_light/deps/libpng/.libs/libpng16.a -lm -pthread

but, link .so file is OK, how fix this problem.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.