update to ImageMagick-6.9.12-2

This commit is contained in:
sthen 2021-03-01 20:42:10 +00:00
parent bcdc4b6262
commit 22270bae8e
10 changed files with 57 additions and 757 deletions

View File

@ -1,16 +1,15 @@
# $OpenBSD: Makefile,v 1.200 2020/02/03 20:40:38 sthen Exp $
# $OpenBSD: Makefile,v 1.201 2021/03/01 20:42:10 sthen Exp $
BROKEN-arm= libm functions (cabs etc) not detected, fallback code is broken
COMMENT= image processing tools
VER= 6.9.10
DASHVER= 86
VER= 6.9.12
DASHVER= 2
DISTNAME= ImageMagick-${VER}-${DASHVER}
PKGNAME= ImageMagick-${VER}.${DASHVER}
PORTROACH= site:https://imagemagick.org/download/ limit:6.*
EXTRACT_SUFX= .tar.xz
REVISION= 0
SHARED_LIBS += MagickCore-6.Q16 7.0 # 6.0
SHARED_LIBS += MagickWand-6.Q16 4.2 # 6.0
@ -27,10 +26,11 @@ MASTER_SITES= https://imagemagick.org/download/releases/ \
# https://imagemagick.org/script/license.php
PERMIT_PACKAGE= Yes
WANTLIB += ${COMPILER_LIBCXX} ICE SM X11 Xau Xdmcp Xext Xt bz2
WANTLIB += c djvulibre expat fftw3 fontconfig freetype iconv jasper
WANTLIB += jbig jpeg lcms2 lzma m openjp2 perl png raw_r tiff webp
WANTLIB += webpdemux webpmux xcb xml2 z zstd
WANTLIB += ${COMPILER_LIBCXX} ICE SM X11 Xau Xdmcp Xext Xt aom
WANTLIB += bz2 c dav1d de265 djvulibre expat fftw3 fontconfig
WANTLIB += freetype heif iconv jasper jbig jpeg lcms2 lzma m openjp2
WANTLIB += perl png raw_r tiff webp webpdemux webpmux x265 xcb
WANTLIB += xml2 z zstd
COMPILER = base-clang ports-gcc base-gcc
@ -47,6 +47,11 @@ LIB_DEPENDS = archivers/bzip2 \
graphics/png \
graphics/tiff \
math/fftw3 \
multimedia/aom \
multimedia/dav1d \
multimedia/libde265 \
multimedia/libheif \
multimedia/x265 \
textproc/libxml
BUILD_DEPENDS = print/ghostscript/gnu

View File

@ -1,2 +1,2 @@
SHA256 (ImageMagick-6.9.10-86.tar.xz) = AE/8EdVcKlsjdX9W6LO/zfc1gDfI8Rw7f5Gj91A50Dc=
SIZE (ImageMagick-6.9.10-86.tar.xz) = 9064960
SHA256 (ImageMagick-6.9.12-2.tar.xz) = SquDgwzY951npF9/KzJ3vVQjDN9LB+MDqRiVD+Mvqp0=
SIZE (ImageMagick-6.9.12-2.tar.xz) = 9168640

View File

@ -1,4 +1,4 @@
$OpenBSD: patch-Magick++_lib_ImageMagick++_pc_in,v 1.5 2019/08/31 15:20:15 sthen Exp $
$OpenBSD: patch-Magick++_lib_ImageMagick++_pc_in,v 1.6 2021/03/01 20:42:10 sthen Exp $
Index: Magick++/lib/ImageMagick++.pc.in
--- Magick++/lib/ImageMagick++.pc.in.orig
@ -16,9 +16,9 @@ Index: Magick++/lib/ImageMagick++.pc.in
Name: ImageMagick++
Description: Magick++ - C++ API for ImageMagick (ABI @MAGICK_ABI_SUFFIX@)
Version: @PACKAGE_VERSION@
Requires: MagickWand
Requires: MagickWand-@MAGICK_MAJOR_VERSION@.@MAGICK_ABI_SUFFIX@
-Libs: -L${libdir} -l${libname}
-Libs.private: -L${libdir} -l${libname} @MAGICK_LIBS@ @MATH_LIBS@
+Libs: -L${libdir} -L${X11BASE}/lib -l${libname}
+Libs.private: -L${libdir} -L${X11BASE}/lib -l${libname} @MAGICK_LIBS@ @MATH_LIBS@
+Libs: -L${X11BASE}/lib -L${libdir} -l${libname}
+Libs.private: -L${X11BASE}/lib -L${libdir} -l${libname} @MAGICK_LIBS@ @MATH_LIBS@
Cflags: -I${includearchdir} -I${includedir} @MAGICK_PCFLAGS@

View File

@ -1,4 +1,4 @@
$OpenBSD: patch-Magick++_lib_Magick++_pc_in,v 1.5 2019/08/31 15:20:15 sthen Exp $
$OpenBSD: patch-Magick++_lib_Magick++_pc_in,v 1.6 2021/03/01 20:42:10 sthen Exp $
Index: Magick++/lib/Magick++.pc.in
--- Magick++/lib/Magick++.pc.in.orig
@ -15,10 +15,10 @@ Index: Magick++/lib/Magick++.pc.in
Name: Magick++
Description: Magick++ - C++ API for ImageMagick (ABI @MAGICK_ABI_SUFFIX@)
Version: @PACKAGE_VERSION@
Requires: MagickWand
Version: @PACKAGE_BASE_VERSION@
Requires: MagickWand-@MAGICK_MAJOR_VERSION@.@MAGICK_ABI_SUFFIX@
-Libs: -L${libdir} -l${libname}
-Libs.private: -L${libdir} -l${libname} @MAGICK_LIBS@ @MATH_LIBS@
+Libs: -L${libdir} -L${X11BASE}/lib -l${libname}
+Libs.private: -L${libdir} -L${X11BASE}/lib -l${libname} @MAGICK_LIBS@ @MATH_LIBS@
+Libs: -L${X11BASE}/lib -L${libdir} -l${libname}
+Libs.private: -L${X11BASE}/lib -L${libdir} -l${libname} @MAGICK_LIBS@ @MATH_LIBS@
Cflags: -I${includearchdir} -I${includedir} @MAGICK_PCFLAGS@

View File

@ -1,4 +1,4 @@
$OpenBSD: patch-config_policy_xml,v 1.5 2019/08/31 15:20:15 sthen Exp $
$OpenBSD: patch-config_policy_xml,v 1.6 2021/03/01 20:42:10 sthen Exp $
As recommended in http://www.openwall.com/lists/oss-security/2018/08/21/2
plus followups.
@ -6,13 +6,14 @@ plus followups.
Index: config/policy.xml
--- config/policy.xml.orig
+++ config/policy.xml
@@ -52,6 +52,9 @@
@@ -56,6 +56,10 @@
<policy domain="coder" rights="read|write" pattern="{GIF,JPEG,PNG,WEBP}" />
-->
<policymap>
+ <!-- Disable ghostscript delegate by default. Re-enable only if you
+ completely trust all ps/pdf etc. that you feed to ImageMagick. -->
+ <policy domain="delegate" rights="none" pattern="gs" />
<!-- <policy domain="system" name="shred" value="2"/> -->
<!-- <policy domain="system" name="precision" value="6"/> -->
<!-- <policy domain="system" name="memory-map" value="anonymous"/> -->
+
<!-- <policy domain="resource" name="temporary-path" value="/tmp"/> -->
<!-- <policy domain="resource" name="memory" value="2GiB"/> -->
<!-- <policy domain="resource" name="map" value="4GiB"/> -->

View File

@ -1,9 +1,9 @@
$OpenBSD: patch-configure_ac,v 1.22 2019/12/19 15:39:10 sthen Exp $
$OpenBSD: patch-configure_ac,v 1.23 2021/03/01 20:42:10 sthen Exp $
Index: configure.ac
--- configure.ac.orig
+++ configure.ac
@@ -1191,7 +1191,7 @@ fi
@@ -1184,7 +1184,7 @@ fi
# Assume that delegate headers reside under same directory as ImageMagick
# installation prefix.
@ -12,7 +12,7 @@ Index: configure.ac
#
# Find the X11 RGB database
@@ -2907,7 +2907,7 @@ AC_SUBST([PERLMAINCC])
@@ -2934,7 +2934,7 @@ AC_SUBST([PERLMAINCC])
#
# Path to ImageMagick header files
@ -21,16 +21,16 @@ Index: configure.ac
INCLUDE_PATH="${INCLUDE_DIR}/${INCLUDE_RELATIVE_PATH}"
DEFINE_INCLUDE_PATH="${INCLUDE_DIR}/${INCLUDE_RELATIVE_PATH}/"
case "${build_os}" in
@@ -2930,7 +2930,7 @@ AC_DEFINE_UNQUOTED(INCLUDEARCH_PATH,"$DEFINE_INCLUDE_P
AC_SUBST(INCLUDEARCH_PATH)
@@ -2957,7 +2957,7 @@ AC_DEFINE_UNQUOTED([INCLUDEARCH_PATH],["$DEFINE_INCLUD
AC_SUBST([INCLUDEARCH_PATH])
# Subdirectory under lib to place ImageMagick lib files
-LIBRARY_RELATIVE_PATH="${PACKAGE_NAME}-${PACKAGE_VERSION}"
-LIBRARY_RELATIVE_PATH="${PACKAGE_NAME}-${PACKAGE_BASE_VERSION}"
+LIBRARY_RELATIVE_PATH="${PACKAGE_NAME}"
AC_DEFINE_UNQUOTED(LIBRARY_RELATIVE_PATH,"$LIBRARY_RELATIVE_PATH",[Subdirectory of lib where ImageMagick architecture dependent files are installed.])
AC_DEFINE_UNQUOTED([LIBRARY_RELATIVE_PATH],["$LIBRARY_RELATIVE_PATH"],[Subdirectory of lib where ImageMagick architecture dependent files are installed.])
# Path to ImageMagick bin directory
@@ -3021,7 +3021,7 @@ AC_SUBST(FILTER_PATH)
@@ -3048,7 +3048,7 @@ AC_SUBST([FILTER_PATH])
#
# Path to ImageMagick documentation files
@ -39,21 +39,21 @@ Index: configure.ac
DOCUMENTATION_PATH="${DOC_DIR}/${DOCUMENTATION_RELATIVE_PATH}"
DEFINE_DOCUMENTATION_PATH="${DOC_DIR}/${DOCUMENTATION_RELATIVE_PATH}/"
case "${build_os}" in
@@ -3041,7 +3041,7 @@ AC_ARG_ENABLE([docs],
AM_CONDITIONAL([INSTALL_DOC], [test "$wantdocs" = "yes"])
@@ -3068,7 +3068,7 @@ AC_ARG_ENABLE([docs],
AM_CONDITIONAL([INSTALL_DOC],[test "$wantdocs" = "yes"])
# Subdirectory to place architecture-dependent configuration files
-CONFIGURE_RELATIVE_PATH="${PACKAGE_NAME}-${MAGICK_MAJOR_VERSION}"
+CONFIGURE_RELATIVE_PATH="${PACKAGE_NAME}"
AC_DEFINE_UNQUOTED(CONFIGURE_RELATIVE_PATH,"$CONFIGURE_RELATIVE_PATH",[Subdirectory of lib where architecture-dependent configuration files live.])
AC_DEFINE_UNQUOTED([CONFIGURE_RELATIVE_PATH],"$CONFIGURE_RELATIVE_PATH",[Subdirectory of lib where architecture-dependent configuration files live.])
CONFIGURE_PATH="${SYSCONF_DIR}/${CONFIGURE_RELATIVE_PATH}/"
DEFINE_CONFIGURE_PATH="${SYSCONF_DIR}/${CONFIGURE_RELATIVE_PATH}/"
@@ -3054,7 +3054,7 @@ AC_DEFINE_UNQUOTED(CONFIGURE_PATH,"$DEFINE_CONFIGURE_P
AC_SUBST(CONFIGURE_PATH)
@@ -3081,7 +3081,7 @@ AC_DEFINE_UNQUOTED([CONFIGURE_PATH],"$DEFINE_CONFIGURE
AC_SUBST([CONFIGURE_PATH])
# Subdirectory to place architecture-independent configuration files
-SHARE_RELATIVE_PATH="${PACKAGE_NAME}-${MAGICK_MAJOR_VERSION}"
+SHARE_RELATIVE_PATH="${PACKAGE_NAME}"
AC_DEFINE_UNQUOTED(SHARE_RELATIVE_PATH,"$SHARE_RELATIVE_PATH",[Subdirectory of lib where architecture-independent configuration files live.])
AC_DEFINE_UNQUOTED([SHARE_RELATIVE_PATH],"$SHARE_RELATIVE_PATH",[Subdirectory of lib where architecture-independent configuration files live.])
SHARE_PATH="${DATA_DIR}/${SHARE_RELATIVE_PATH}"
DEFINE_SHARE_PATH="${DATA_DIR}/${SHARE_RELATIVE_PATH}/"

View File

@ -1,4 +1,4 @@
$OpenBSD: patch-magick_ImageMagick_pc_in,v 1.6 2019/08/31 15:20:15 sthen Exp $
$OpenBSD: patch-magick_ImageMagick_pc_in,v 1.7 2021/03/01 20:42:10 sthen Exp $
Index: magick/ImageMagick.pc.in
--- magick/ImageMagick.pc.in.orig
@ -16,7 +16,7 @@ Index: magick/ImageMagick.pc.in
Name: ImageMagick
@@ -10,5 +10,5 @@ Description: ImageMagick - convert, edit, and compose
URL: https://github.com/ImageMagick/ImageMagick6
Version: @PACKAGE_VERSION@
Version: @PACKAGE_BASE_VERSION@
Cflags: -I${includearchdir} -I${includedir} @MAGICK_PCFLAGS@
-Libs: -L${libdir} -l${libname}
-Libs.private: -L${libdir} -l${libname} @MAGICK_LIBS@ @MATH_LIBS@

View File

@ -1,4 +1,4 @@
$OpenBSD: patch-magick_MagickCore_pc_in,v 1.6 2019/08/31 15:20:15 sthen Exp $
$OpenBSD: patch-magick_MagickCore_pc_in,v 1.7 2021/03/01 20:42:10 sthen Exp $
Index: magick/MagickCore.pc.in
--- magick/MagickCore.pc.in.orig
@ -16,7 +16,7 @@ Index: magick/MagickCore.pc.in
@@ -11,5 +11,5 @@ Description: MagickCore - C API for ImageMagick (ABI @
URL: https://github.com/ImageMagick/ImageMagick6
Version: @PACKAGE_VERSION@
Version: @PACKAGE_BASE_VERSION@
Cflags: -I${includearchdir} -I${includedir} @MAGICK_PCFLAGS@
-Libs: -L${libdir} -l${libname}
-Libs.private: -L${libdir} -l${libname} @MAGICK_LIBS@ @MATH_LIBS@

View File

@ -1,4 +1,4 @@
$OpenBSD: patch-wand_MagickWand_pc_in,v 1.8 2019/08/31 15:20:15 sthen Exp $
$OpenBSD: patch-wand_MagickWand_pc_in,v 1.9 2021/03/01 20:42:10 sthen Exp $
Index: wand/MagickWand.pc.in
--- wand/MagickWand.pc.in.orig
@ -15,7 +15,7 @@ Index: wand/MagickWand.pc.in
Name: MagickWand
@@ -11,5 +11,5 @@ URL: https://github.com/ImageMagick/ImageMagick6
Version: @PACKAGE_VERSION@
Version: @PACKAGE_BASE_VERSION@
Requires: MagickCore-@MAGICK_MAJOR_VERSION@.@MAGICK_ABI_SUFFIX@
Cflags: -I${includearchdir} -I${includedir} @MAGICK_PCFLAGS@
-Libs: -L${libdir} -l${libname}

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST,v 1.60 2020/01/14 11:41:11 sthen Exp $
@comment $OpenBSD: PLIST,v 1.61 2021/03/01 20:42:11 sthen Exp $
@conflict p5-PerlMagick-*
@pkgpath graphics/ImageMagick,no_x11
@sample ${SYSCONFDIR}/ImageMagick/
@ -224,6 +224,7 @@ share/doc/ImageMagick/images/annotate.png
share/doc/ImageMagick/images/arc.png
share/doc/ImageMagick/images/atop.gif
share/doc/ImageMagick/images/background.jpg
share/doc/ImageMagick/images/bitcoin.svg
share/doc/ImageMagick/images/black.png
share/doc/ImageMagick/images/bluebells_clipped.jpg
share/doc/ImageMagick/images/bluebells_darker.jpg
@ -240,8 +241,8 @@ share/doc/ImageMagick/images/fuzzy-magick.png
share/doc/ImageMagick/images/gaussian-blur.png
share/doc/ImageMagick/images/granite.png
share/doc/ImageMagick/images/imade_art2.jpg
share/doc/ImageMagick/images/julia-set.png
share/doc/ImageMagick/images/label.gif
share/doc/ImageMagick/images/litecoin.png
share/doc/ImageMagick/images/logo-sm-flop.png
share/doc/ImageMagick/images/logo-sm-fx.png
share/doc/ImageMagick/images/logo-sm.png
@ -379,719 +380,9 @@ share/doc/ImageMagick/www/advanced-unix-installation.html
share/doc/ImageMagick/www/advanced-windows-installation.html
share/doc/ImageMagick/www/animate.html
share/doc/ImageMagick/www/api/
share/doc/ImageMagick/www/api.html
share/doc/ImageMagick/www/api/Image++.html
share/doc/ImageMagick/www/api/MagickCore/
share/doc/ImageMagick/www/api/MagickCore/ImageMagick_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/ImageMagick_8h.html
share/doc/ImageMagick/www/api/MagickCore/MagickCore_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/MagickCore_8h.html
share/doc/ImageMagick/www/api/MagickCore/PreRvIcccm_8c.html
share/doc/ImageMagick/www/api/MagickCore/PreRvIcccm_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/PreRvIcccm_8h.html
share/doc/ImageMagick/www/api/MagickCore/animate-private_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/animate-private_8h.html
share/doc/ImageMagick/www/api/MagickCore/animate_8c.html
share/doc/ImageMagick/www/api/MagickCore/animate_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/animate_8h.html
share/doc/ImageMagick/www/api/MagickCore/annotate_8c.html
share/doc/ImageMagick/www/api/MagickCore/annotate_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/annotate_8h.html
share/doc/ImageMagick/www/api/MagickCore/annotated.html
share/doc/ImageMagick/www/api/MagickCore/api_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/api_8h.html
share/doc/ImageMagick/www/api/MagickCore/artifact_8c.html
share/doc/ImageMagick/www/api/MagickCore/artifact_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/artifact_8h.html
share/doc/ImageMagick/www/api/MagickCore/blob-private_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/blob-private_8h.html
share/doc/ImageMagick/www/api/MagickCore/blob_8c.html
share/doc/ImageMagick/www/api/MagickCore/blob_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/blob_8h.html
share/doc/ImageMagick/www/api/MagickCore/cache-private_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/cache-private_8h.html
share/doc/ImageMagick/www/api/MagickCore/cache-view_8c.html
share/doc/ImageMagick/www/api/MagickCore/cache-view_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/cache-view_8h.html
share/doc/ImageMagick/www/api/MagickCore/cache_8c.html
share/doc/ImageMagick/www/api/MagickCore/cache_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/cache_8h.html
share/doc/ImageMagick/www/api/MagickCore/classes.html
share/doc/ImageMagick/www/api/MagickCore/client_8c.html
share/doc/ImageMagick/www/api/MagickCore/client_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/client_8h.html
share/doc/ImageMagick/www/api/MagickCore/coder_8c.html
share/doc/ImageMagick/www/api/MagickCore/coder_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/coder_8h.html
share/doc/ImageMagick/www/api/MagickCore/color-private_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/color-private_8h.html
share/doc/ImageMagick/www/api/MagickCore/color_8c.html
share/doc/ImageMagick/www/api/MagickCore/color_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/color_8h.html
share/doc/ImageMagick/www/api/MagickCore/colorspace-private_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/colorspace-private_8h.html
share/doc/ImageMagick/www/api/MagickCore/colorspace_8c.html
share/doc/ImageMagick/www/api/MagickCore/colorspace_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/colorspace_8h.html
share/doc/ImageMagick/www/api/MagickCore/compare_8c.html
share/doc/ImageMagick/www/api/MagickCore/compare_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/compare_8h.html
share/doc/ImageMagick/www/api/MagickCore/composite-private_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/composite-private_8h.html
share/doc/ImageMagick/www/api/MagickCore/composite_8c.html
share/doc/ImageMagick/www/api/MagickCore/composite_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/composite_8h.html
share/doc/ImageMagick/www/api/MagickCore/compress_8c.html
share/doc/ImageMagick/www/api/MagickCore/compress_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/compress_8h.html
share/doc/ImageMagick/www/api/MagickCore/configure_8c.html
share/doc/ImageMagick/www/api/MagickCore/configure_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/configure_8h.html
share/doc/ImageMagick/www/api/MagickCore/constitute_8c.html
share/doc/ImageMagick/www/api/MagickCore/constitute_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/constitute_8h.html
share/doc/ImageMagick/www/api/MagickCore/decorate_8c.html
share/doc/ImageMagick/www/api/MagickCore/decorate_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/decorate_8h.html
share/doc/ImageMagick/www/api/MagickCore/delegate_8c.html
share/doc/ImageMagick/www/api/MagickCore/delegate_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/delegate_8h.html
share/doc/ImageMagick/www/api/MagickCore/deprecate_8c.html
share/doc/ImageMagick/www/api/MagickCore/deprecate_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/deprecate_8h.html
share/doc/ImageMagick/www/api/MagickCore/dir_b44b349db36f8365f5234e57d3038770.html
share/doc/ImageMagick/www/api/MagickCore/dirs.html
share/doc/ImageMagick/www/api/MagickCore/display-private_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/display-private_8h.html
share/doc/ImageMagick/www/api/MagickCore/display_8c.html
share/doc/ImageMagick/www/api/MagickCore/display_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/display_8h.html
share/doc/ImageMagick/www/api/MagickCore/distort_8c.html
share/doc/ImageMagick/www/api/MagickCore/distort_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/distort_8h.html
share/doc/ImageMagick/www/api/MagickCore/doxygen.css
share/doc/ImageMagick/www/api/MagickCore/doxygen.png
share/doc/ImageMagick/www/api/MagickCore/draw-private_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/draw-private_8h.html
share/doc/ImageMagick/www/api/MagickCore/draw_8c.html
share/doc/ImageMagick/www/api/MagickCore/draw_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/draw_8h.html
share/doc/ImageMagick/www/api/MagickCore/effect_8c.html
share/doc/ImageMagick/www/api/MagickCore/effect_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/effect_8h.html
share/doc/ImageMagick/www/api/MagickCore/enhance_8c.html
share/doc/ImageMagick/www/api/MagickCore/enhance_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/enhance_8h.html
share/doc/ImageMagick/www/api/MagickCore/exception-private_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/exception-private_8h.html
share/doc/ImageMagick/www/api/MagickCore/exception_8c.html
share/doc/ImageMagick/www/api/MagickCore/exception_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/exception_8h.html
share/doc/ImageMagick/www/api/MagickCore/files.html
share/doc/ImageMagick/www/api/MagickCore/ftv2blank.png
share/doc/ImageMagick/www/api/MagickCore/ftv2doc.png
share/doc/ImageMagick/www/api/MagickCore/ftv2folderclosed.png
share/doc/ImageMagick/www/api/MagickCore/ftv2folderopen.png
share/doc/ImageMagick/www/api/MagickCore/ftv2lastnode.png
share/doc/ImageMagick/www/api/MagickCore/ftv2link.png
share/doc/ImageMagick/www/api/MagickCore/ftv2mlastnode.png
share/doc/ImageMagick/www/api/MagickCore/ftv2mnode.png
share/doc/ImageMagick/www/api/MagickCore/ftv2node.png
share/doc/ImageMagick/www/api/MagickCore/ftv2plastnode.png
share/doc/ImageMagick/www/api/MagickCore/ftv2pnode.png
share/doc/ImageMagick/www/api/MagickCore/ftv2vertline.png
share/doc/ImageMagick/www/api/MagickCore/functions.html
share/doc/ImageMagick/www/api/MagickCore/functions_0x61.html
share/doc/ImageMagick/www/api/MagickCore/functions_0x62.html
share/doc/ImageMagick/www/api/MagickCore/functions_0x63.html
share/doc/ImageMagick/www/api/MagickCore/functions_0x64.html
share/doc/ImageMagick/www/api/MagickCore/functions_0x65.html
share/doc/ImageMagick/www/api/MagickCore/functions_0x66.html
share/doc/ImageMagick/www/api/MagickCore/functions_0x67.html
share/doc/ImageMagick/www/api/MagickCore/functions_0x68.html
share/doc/ImageMagick/www/api/MagickCore/functions_0x69.html
share/doc/ImageMagick/www/api/MagickCore/functions_0x6b.html
share/doc/ImageMagick/www/api/MagickCore/functions_0x6c.html
share/doc/ImageMagick/www/api/MagickCore/functions_0x6d.html
share/doc/ImageMagick/www/api/MagickCore/functions_0x6e.html
share/doc/ImageMagick/www/api/MagickCore/functions_0x6f.html
share/doc/ImageMagick/www/api/MagickCore/functions_0x70.html
share/doc/ImageMagick/www/api/MagickCore/functions_0x71.html
share/doc/ImageMagick/www/api/MagickCore/functions_0x72.html
share/doc/ImageMagick/www/api/MagickCore/functions_0x73.html
share/doc/ImageMagick/www/api/MagickCore/functions_0x74.html
share/doc/ImageMagick/www/api/MagickCore/functions_0x75.html
share/doc/ImageMagick/www/api/MagickCore/functions_0x76.html
share/doc/ImageMagick/www/api/MagickCore/functions_0x77.html
share/doc/ImageMagick/www/api/MagickCore/functions_0x78.html
share/doc/ImageMagick/www/api/MagickCore/functions_0x79.html
share/doc/ImageMagick/www/api/MagickCore/functions_0x7a.html
share/doc/ImageMagick/www/api/MagickCore/functions_func.html
share/doc/ImageMagick/www/api/MagickCore/functions_vars.html
share/doc/ImageMagick/www/api/MagickCore/functions_vars_0x61.html
share/doc/ImageMagick/www/api/MagickCore/functions_vars_0x62.html
share/doc/ImageMagick/www/api/MagickCore/functions_vars_0x63.html
share/doc/ImageMagick/www/api/MagickCore/functions_vars_0x64.html
share/doc/ImageMagick/www/api/MagickCore/functions_vars_0x65.html
share/doc/ImageMagick/www/api/MagickCore/functions_vars_0x66.html
share/doc/ImageMagick/www/api/MagickCore/functions_vars_0x67.html
share/doc/ImageMagick/www/api/MagickCore/functions_vars_0x68.html
share/doc/ImageMagick/www/api/MagickCore/functions_vars_0x69.html
share/doc/ImageMagick/www/api/MagickCore/functions_vars_0x6b.html
share/doc/ImageMagick/www/api/MagickCore/functions_vars_0x6c.html
share/doc/ImageMagick/www/api/MagickCore/functions_vars_0x6d.html
share/doc/ImageMagick/www/api/MagickCore/functions_vars_0x6e.html
share/doc/ImageMagick/www/api/MagickCore/functions_vars_0x6f.html
share/doc/ImageMagick/www/api/MagickCore/functions_vars_0x70.html
share/doc/ImageMagick/www/api/MagickCore/functions_vars_0x71.html
share/doc/ImageMagick/www/api/MagickCore/functions_vars_0x72.html
share/doc/ImageMagick/www/api/MagickCore/functions_vars_0x73.html
share/doc/ImageMagick/www/api/MagickCore/functions_vars_0x74.html
share/doc/ImageMagick/www/api/MagickCore/functions_vars_0x75.html
share/doc/ImageMagick/www/api/MagickCore/functions_vars_0x76.html
share/doc/ImageMagick/www/api/MagickCore/functions_vars_0x77.html
share/doc/ImageMagick/www/api/MagickCore/functions_vars_0x78.html
share/doc/ImageMagick/www/api/MagickCore/functions_vars_0x79.html
share/doc/ImageMagick/www/api/MagickCore/functions_vars_0x7a.html
share/doc/ImageMagick/www/api/MagickCore/fx-private_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/fx-private_8h.html
share/doc/ImageMagick/www/api/MagickCore/fx_8c.html
share/doc/ImageMagick/www/api/MagickCore/fx_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/fx_8h.html
share/doc/ImageMagick/www/api/MagickCore/gem_8c.html
share/doc/ImageMagick/www/api/MagickCore/gem_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/gem_8h.html
share/doc/ImageMagick/www/api/MagickCore/geometry_8c.html
share/doc/ImageMagick/www/api/MagickCore/geometry_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/geometry_8h.html
share/doc/ImageMagick/www/api/MagickCore/globals.html
share/doc/ImageMagick/www/api/MagickCore/globals_0x61.html
share/doc/ImageMagick/www/api/MagickCore/globals_0x62.html
share/doc/ImageMagick/www/api/MagickCore/globals_0x63.html
share/doc/ImageMagick/www/api/MagickCore/globals_0x64.html
share/doc/ImageMagick/www/api/MagickCore/globals_0x65.html
share/doc/ImageMagick/www/api/MagickCore/globals_0x66.html
share/doc/ImageMagick/www/api/MagickCore/globals_0x67.html
share/doc/ImageMagick/www/api/MagickCore/globals_0x68.html
share/doc/ImageMagick/www/api/MagickCore/globals_0x69.html
share/doc/ImageMagick/www/api/MagickCore/globals_0x6a.html
share/doc/ImageMagick/www/api/MagickCore/globals_0x6b.html
share/doc/ImageMagick/www/api/MagickCore/globals_0x6c.html
share/doc/ImageMagick/www/api/MagickCore/globals_0x6d.html
share/doc/ImageMagick/www/api/MagickCore/globals_0x6e.html
share/doc/ImageMagick/www/api/MagickCore/globals_0x6f.html
share/doc/ImageMagick/www/api/MagickCore/globals_0x70.html
share/doc/ImageMagick/www/api/MagickCore/globals_0x71.html
share/doc/ImageMagick/www/api/MagickCore/globals_0x72.html
share/doc/ImageMagick/www/api/MagickCore/globals_0x73.html
share/doc/ImageMagick/www/api/MagickCore/globals_0x74.html
share/doc/ImageMagick/www/api/MagickCore/globals_0x75.html
share/doc/ImageMagick/www/api/MagickCore/globals_0x76.html
share/doc/ImageMagick/www/api/MagickCore/globals_0x77.html
share/doc/ImageMagick/www/api/MagickCore/globals_0x78.html
share/doc/ImageMagick/www/api/MagickCore/globals_0x79.html
share/doc/ImageMagick/www/api/MagickCore/globals_0x7a.html
share/doc/ImageMagick/www/api/MagickCore/globals_defs.html
share/doc/ImageMagick/www/api/MagickCore/globals_defs_0x61.html
share/doc/ImageMagick/www/api/MagickCore/globals_defs_0x62.html
share/doc/ImageMagick/www/api/MagickCore/globals_defs_0x63.html
share/doc/ImageMagick/www/api/MagickCore/globals_defs_0x64.html
share/doc/ImageMagick/www/api/MagickCore/globals_defs_0x65.html
share/doc/ImageMagick/www/api/MagickCore/globals_defs_0x66.html
share/doc/ImageMagick/www/api/MagickCore/globals_defs_0x67.html
share/doc/ImageMagick/www/api/MagickCore/globals_defs_0x68.html
share/doc/ImageMagick/www/api/MagickCore/globals_defs_0x69.html
share/doc/ImageMagick/www/api/MagickCore/globals_defs_0x6b.html
share/doc/ImageMagick/www/api/MagickCore/globals_defs_0x6c.html
share/doc/ImageMagick/www/api/MagickCore/globals_defs_0x6d.html
share/doc/ImageMagick/www/api/MagickCore/globals_defs_0x6e.html
share/doc/ImageMagick/www/api/MagickCore/globals_defs_0x6f.html
share/doc/ImageMagick/www/api/MagickCore/globals_defs_0x70.html
share/doc/ImageMagick/www/api/MagickCore/globals_defs_0x71.html
share/doc/ImageMagick/www/api/MagickCore/globals_defs_0x72.html
share/doc/ImageMagick/www/api/MagickCore/globals_defs_0x73.html
share/doc/ImageMagick/www/api/MagickCore/globals_defs_0x74.html
share/doc/ImageMagick/www/api/MagickCore/globals_defs_0x75.html
share/doc/ImageMagick/www/api/MagickCore/globals_defs_0x76.html
share/doc/ImageMagick/www/api/MagickCore/globals_defs_0x77.html
share/doc/ImageMagick/www/api/MagickCore/globals_defs_0x78.html
share/doc/ImageMagick/www/api/MagickCore/globals_defs_0x79.html
share/doc/ImageMagick/www/api/MagickCore/globals_enum.html
share/doc/ImageMagick/www/api/MagickCore/globals_eval.html
share/doc/ImageMagick/www/api/MagickCore/globals_eval_0x62.html
share/doc/ImageMagick/www/api/MagickCore/globals_eval_0x63.html
share/doc/ImageMagick/www/api/MagickCore/globals_eval_0x64.html
share/doc/ImageMagick/www/api/MagickCore/globals_eval_0x65.html
share/doc/ImageMagick/www/api/MagickCore/globals_eval_0x66.html
share/doc/ImageMagick/www/api/MagickCore/globals_eval_0x67.html
share/doc/ImageMagick/www/api/MagickCore/globals_eval_0x68.html
share/doc/ImageMagick/www/api/MagickCore/globals_eval_0x69.html
share/doc/ImageMagick/www/api/MagickCore/globals_eval_0x6a.html
share/doc/ImageMagick/www/api/MagickCore/globals_eval_0x6b.html
share/doc/ImageMagick/www/api/MagickCore/globals_eval_0x6c.html
share/doc/ImageMagick/www/api/MagickCore/globals_eval_0x6d.html
share/doc/ImageMagick/www/api/MagickCore/globals_eval_0x6e.html
share/doc/ImageMagick/www/api/MagickCore/globals_eval_0x6f.html
share/doc/ImageMagick/www/api/MagickCore/globals_eval_0x70.html
share/doc/ImageMagick/www/api/MagickCore/globals_eval_0x71.html
share/doc/ImageMagick/www/api/MagickCore/globals_eval_0x72.html
share/doc/ImageMagick/www/api/MagickCore/globals_eval_0x73.html
share/doc/ImageMagick/www/api/MagickCore/globals_eval_0x74.html
share/doc/ImageMagick/www/api/MagickCore/globals_eval_0x75.html
share/doc/ImageMagick/www/api/MagickCore/globals_eval_0x76.html
share/doc/ImageMagick/www/api/MagickCore/globals_eval_0x77.html
share/doc/ImageMagick/www/api/MagickCore/globals_eval_0x78.html
share/doc/ImageMagick/www/api/MagickCore/globals_eval_0x79.html
share/doc/ImageMagick/www/api/MagickCore/globals_eval_0x7a.html
share/doc/ImageMagick/www/api/MagickCore/globals_func.html
share/doc/ImageMagick/www/api/MagickCore/globals_func_0x62.html
share/doc/ImageMagick/www/api/MagickCore/globals_func_0x63.html
share/doc/ImageMagick/www/api/MagickCore/globals_func_0x64.html
share/doc/ImageMagick/www/api/MagickCore/globals_func_0x65.html
share/doc/ImageMagick/www/api/MagickCore/globals_func_0x66.html
share/doc/ImageMagick/www/api/MagickCore/globals_func_0x67.html
share/doc/ImageMagick/www/api/MagickCore/globals_func_0x68.html
share/doc/ImageMagick/www/api/MagickCore/globals_func_0x69.html
share/doc/ImageMagick/www/api/MagickCore/globals_func_0x6a.html
share/doc/ImageMagick/www/api/MagickCore/globals_func_0x6b.html
share/doc/ImageMagick/www/api/MagickCore/globals_func_0x6c.html
share/doc/ImageMagick/www/api/MagickCore/globals_func_0x6d.html
share/doc/ImageMagick/www/api/MagickCore/globals_func_0x6e.html
share/doc/ImageMagick/www/api/MagickCore/globals_func_0x6f.html
share/doc/ImageMagick/www/api/MagickCore/globals_func_0x70.html
share/doc/ImageMagick/www/api/MagickCore/globals_func_0x71.html
share/doc/ImageMagick/www/api/MagickCore/globals_func_0x72.html
share/doc/ImageMagick/www/api/MagickCore/globals_func_0x73.html
share/doc/ImageMagick/www/api/MagickCore/globals_func_0x74.html
share/doc/ImageMagick/www/api/MagickCore/globals_func_0x75.html
share/doc/ImageMagick/www/api/MagickCore/globals_func_0x76.html
share/doc/ImageMagick/www/api/MagickCore/globals_func_0x77.html
share/doc/ImageMagick/www/api/MagickCore/globals_func_0x78.html
share/doc/ImageMagick/www/api/MagickCore/globals_func_0x79.html
share/doc/ImageMagick/www/api/MagickCore/globals_func_0x7a.html
share/doc/ImageMagick/www/api/MagickCore/globals_type.html
share/doc/ImageMagick/www/api/MagickCore/globals_vars.html
share/doc/ImageMagick/www/api/MagickCore/hashmap_8c.html
share/doc/ImageMagick/www/api/MagickCore/hashmap_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/hashmap_8h.html
share/doc/ImageMagick/www/api/MagickCore/identify_8c.html
share/doc/ImageMagick/www/api/MagickCore/identify_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/identify_8h.html
share/doc/ImageMagick/www/api/MagickCore/image-private_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/image-private_8h.html
share/doc/ImageMagick/www/api/MagickCore/image_8c.html
share/doc/ImageMagick/www/api/MagickCore/image_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/image_8h.html
share/doc/ImageMagick/www/api/MagickCore/index.html
share/doc/ImageMagick/www/api/MagickCore/layer_8c.html
share/doc/ImageMagick/www/api/MagickCore/layer_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/layer_8h.html
share/doc/ImageMagick/www/api/MagickCore/list_8c.html
share/doc/ImageMagick/www/api/MagickCore/list_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/list_8h.html
share/doc/ImageMagick/www/api/MagickCore/locale_8c.html
share/doc/ImageMagick/www/api/MagickCore/locale___8h-source.html
share/doc/ImageMagick/www/api/MagickCore/locale___8h.html
share/doc/ImageMagick/www/api/MagickCore/log_8c.html
share/doc/ImageMagick/www/api/MagickCore/log_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/log_8h.html
share/doc/ImageMagick/www/api/MagickCore/mac_8c.html
share/doc/ImageMagick/www/api/MagickCore/mac_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/mac_8h.html
share/doc/ImageMagick/www/api/MagickCore/magic_8c.html
share/doc/ImageMagick/www/api/MagickCore/magic_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/magic_8h.html
share/doc/ImageMagick/www/api/MagickCore/magick-config_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/magick-config_8h.html
share/doc/ImageMagick/www/api/MagickCore/magick-type_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/magick-type_8h.html
share/doc/ImageMagick/www/api/MagickCore/magick_8c.html
share/doc/ImageMagick/www/api/MagickCore/magick_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/magick_8h.html
share/doc/ImageMagick/www/api/MagickCore/main.html
share/doc/ImageMagick/www/api/MagickCore/matrix_8c.html
share/doc/ImageMagick/www/api/MagickCore/matrix_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/matrix_8h.html
share/doc/ImageMagick/www/api/MagickCore/memory_8c.html
share/doc/ImageMagick/www/api/MagickCore/memory___8h-source.html
share/doc/ImageMagick/www/api/MagickCore/memory___8h.html
share/doc/ImageMagick/www/api/MagickCore/methods_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/methods_8h.html
share/doc/ImageMagick/www/api/MagickCore/mime-private_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/mime-private_8h.html
share/doc/ImageMagick/www/api/MagickCore/mime_8c.html
share/doc/ImageMagick/www/api/MagickCore/mime_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/mime_8h.html
share/doc/ImageMagick/www/api/MagickCore/module_8c.html
share/doc/ImageMagick/www/api/MagickCore/module_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/module_8h.html
share/doc/ImageMagick/www/api/MagickCore/monitor_8c.html
share/doc/ImageMagick/www/api/MagickCore/monitor_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/monitor_8h.html
share/doc/ImageMagick/www/api/MagickCore/montage_8c.html
share/doc/ImageMagick/www/api/MagickCore/montage_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/montage_8h.html
share/doc/ImageMagick/www/api/MagickCore/nt-base_8c.html
share/doc/ImageMagick/www/api/MagickCore/nt-base_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/nt-base_8h.html
share/doc/ImageMagick/www/api/MagickCore/nt-feature_8c.html
share/doc/ImageMagick/www/api/MagickCore/nt-feature_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/nt-feature_8h.html
share/doc/ImageMagick/www/api/MagickCore/option_8c.html
share/doc/ImageMagick/www/api/MagickCore/option_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/option_8h.html
share/doc/ImageMagick/www/api/MagickCore/paint_8c.html
share/doc/ImageMagick/www/api/MagickCore/paint_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/paint_8h.html
share/doc/ImageMagick/www/api/MagickCore/pixel-private_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/pixel-private_8h.html
share/doc/ImageMagick/www/api/MagickCore/pixel_8c.html
share/doc/ImageMagick/www/api/MagickCore/pixel_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/pixel_8h.html
share/doc/ImageMagick/www/api/MagickCore/prepress_8c.html
share/doc/ImageMagick/www/api/MagickCore/prepress_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/prepress_8h.html
share/doc/ImageMagick/www/api/MagickCore/profile_8c.html
share/doc/ImageMagick/www/api/MagickCore/profile_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/profile_8h.html
share/doc/ImageMagick/www/api/MagickCore/property_8c.html
share/doc/ImageMagick/www/api/MagickCore/property_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/property_8h.html
share/doc/ImageMagick/www/api/MagickCore/quantize_8c.html
share/doc/ImageMagick/www/api/MagickCore/quantize_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/quantize_8h.html
share/doc/ImageMagick/www/api/MagickCore/quantum-private_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/quantum-private_8h.html
share/doc/ImageMagick/www/api/MagickCore/quantum_8c.html
share/doc/ImageMagick/www/api/MagickCore/quantum_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/quantum_8h.html
share/doc/ImageMagick/www/api/MagickCore/random_8c.html
share/doc/ImageMagick/www/api/MagickCore/random___8h-source.html
share/doc/ImageMagick/www/api/MagickCore/random___8h.html
share/doc/ImageMagick/www/api/MagickCore/registry_8c.html
share/doc/ImageMagick/www/api/MagickCore/registry_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/registry_8h.html
share/doc/ImageMagick/www/api/MagickCore/resample_8c.html
share/doc/ImageMagick/www/api/MagickCore/resample_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/resample_8h.html
share/doc/ImageMagick/www/api/MagickCore/resize-private_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/resize-private_8h.html
share/doc/ImageMagick/www/api/MagickCore/resize_8c.html
share/doc/ImageMagick/www/api/MagickCore/resize_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/resize_8h.html
share/doc/ImageMagick/www/api/MagickCore/resource_8c.html
share/doc/ImageMagick/www/api/MagickCore/resource___8h-source.html
share/doc/ImageMagick/www/api/MagickCore/resource___8h.html
share/doc/ImageMagick/www/api/MagickCore/segment_8c.html
share/doc/ImageMagick/www/api/MagickCore/segment_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/segment_8h.html
share/doc/ImageMagick/www/api/MagickCore/semaphore_8c.html
share/doc/ImageMagick/www/api/MagickCore/semaphore_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/semaphore_8h.html
share/doc/ImageMagick/www/api/MagickCore/shear_8c.html
share/doc/ImageMagick/www/api/MagickCore/shear_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/shear_8h.html
share/doc/ImageMagick/www/api/MagickCore/signature_8c.html
share/doc/ImageMagick/www/api/MagickCore/signature_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/signature_8h.html
share/doc/ImageMagick/www/api/MagickCore/splay-tree_8c.html
share/doc/ImageMagick/www/api/MagickCore/splay-tree_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/splay-tree_8h.html
share/doc/ImageMagick/www/api/MagickCore/static_8c.html
share/doc/ImageMagick/www/api/MagickCore/static_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/static_8h.html
share/doc/ImageMagick/www/api/MagickCore/statistic_8c.html
share/doc/ImageMagick/www/api/MagickCore/statistic_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/statistic_8h.html
share/doc/ImageMagick/www/api/MagickCore/stream-private_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/stream-private_8h.html
share/doc/ImageMagick/www/api/MagickCore/stream_8c.html
share/doc/ImageMagick/www/api/MagickCore/stream_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/stream_8h.html
share/doc/ImageMagick/www/api/MagickCore/string_8c.html
share/doc/ImageMagick/www/api/MagickCore/string___8h-source.html
share/doc/ImageMagick/www/api/MagickCore/string___8h.html
share/doc/ImageMagick/www/api/MagickCore/structHuffmanTable.html
share/doc/ImageMagick/www/api/MagickCore/structSemaphoreInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__AffineMatrix.html
share/doc/ImageMagick/www/api/MagickCore/struct__Ascii85Info.html
share/doc/ImageMagick/www/api/MagickCore/struct__BlobInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__CacheInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__CacheMethods.html
share/doc/ImageMagick/www/api/MagickCore/struct__CacheView.html
share/doc/ImageMagick/www/api/MagickCore/struct__ChannelStatistics.html
share/doc/ImageMagick/www/api/MagickCore/struct__ChromaticityInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__Cluster.html
share/doc/ImageMagick/www/api/MagickCore/struct__CoderInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__ColorInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__ColorPacket.html
share/doc/ImageMagick/www/api/MagickCore/struct__ConfigureInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__ContributionInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__CubeInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__DIR.html
share/doc/ImageMagick/www/api/MagickCore/struct__DataSegmentInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__DelegateInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__DiversityPacket.html
share/doc/ImageMagick/www/api/MagickCore/struct__DoublePixelPacket.html
share/doc/ImageMagick/www/api/MagickCore/struct__DrawInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__EdgeInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__ElementInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__ElementReference.html
share/doc/ImageMagick/www/api/MagickCore/struct__EntryInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__ErrorInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__EventInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__ExceptionInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__ExtentPacket.html
share/doc/ImageMagick/www/api/MagickCore/struct__FrameInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__FxInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__GeometryInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__GhostscriptVectors.html
share/doc/ImageMagick/www/api/MagickCore/struct__GradientInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__HandlerInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__HashmapInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__Image.html
share/doc/ImageMagick/www/api/MagickCore/struct__ImageAttribute.html
share/doc/ImageMagick/www/api/MagickCore/struct__ImageInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__IntervalTree.html
share/doc/ImageMagick/www/api/MagickCore/struct__LinkedListInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__LocaleInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__LogInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__LongPixelPacket.html
share/doc/ImageMagick/www/api/MagickCore/struct__MagicInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__MagickInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__MagickPixelPacket.html
share/doc/ImageMagick/www/api/MagickCore/struct__MedianListNode.html
share/doc/ImageMagick/www/api/MagickCore/struct__MedianPixelList.html
share/doc/ImageMagick/www/api/MagickCore/struct__MedianSkipList.html
share/doc/ImageMagick/www/api/MagickCore/struct__MemoryInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__MimeInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__ModuleInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__MontageInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__NTMEMORYSTATUSEX.html
share/doc/ImageMagick/www/api/MagickCore/struct__NexusInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__NodeInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__Nodes.html
share/doc/ImageMagick/www/api/MagickCore/struct__OptionInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__PathInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__PixelPacket.html
share/doc/ImageMagick/www/api/MagickCore/struct__PointInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__PolygonInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__PrimaryInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__PrimitiveInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__ProfileInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__QuantizeInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__QuantumInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__QuantumState.html
share/doc/ImageMagick/www/api/MagickCore/struct__RandomInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__RealPixelPacket.html
share/doc/ImageMagick/www/api/MagickCore/struct__RectangleInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__RegistryInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__ResampleFilter.html
share/doc/ImageMagick/www/api/MagickCore/struct__ResizeFilter.html
share/doc/ImageMagick/www/api/MagickCore/struct__ResourceInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__SegmentInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__SignatureInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__SplayTreeInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__StopInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__StreamInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__StringInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__ThresholdMap.html
share/doc/ImageMagick/www/api/MagickCore/struct__Timer.html
share/doc/ImageMagick/www/api/MagickCore/struct__TimerInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__TokenInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__TypeInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__TypeMetric.html
share/doc/ImageMagick/www/api/MagickCore/struct__ViewInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__XImportInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__XMLTreeInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__XMLTreeRoot.html
share/doc/ImageMagick/www/api/MagickCore/struct__XWidgetInfo.html
share/doc/ImageMagick/www/api/MagickCore/struct__ZeroCrossing.html
share/doc/ImageMagick/www/api/MagickCore/struct__dirdesc.html
share/doc/ImageMagick/www/api/MagickCore/struct__ile3.html
share/doc/ImageMagick/www/api/MagickCore/structdirent.html
share/doc/ImageMagick/www/api/MagickCore/studio_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/studio_8h.html
share/doc/ImageMagick/www/api/MagickCore/tab_b.gif
share/doc/ImageMagick/www/api/MagickCore/tab_l.gif
share/doc/ImageMagick/www/api/MagickCore/tab_r.gif
share/doc/ImageMagick/www/api/MagickCore/tabs.css
share/doc/ImageMagick/www/api/MagickCore/threshold_8c.html
share/doc/ImageMagick/www/api/MagickCore/threshold_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/threshold_8h.html
share/doc/ImageMagick/www/api/MagickCore/timer_8c.html
share/doc/ImageMagick/www/api/MagickCore/timer_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/timer_8h.html
share/doc/ImageMagick/www/api/MagickCore/token_8c.html
share/doc/ImageMagick/www/api/MagickCore/token_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/token_8h.html
share/doc/ImageMagick/www/api/MagickCore/transform_8c.html
share/doc/ImageMagick/www/api/MagickCore/transform_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/transform_8h.html
share/doc/ImageMagick/www/api/MagickCore/tree.html
share/doc/ImageMagick/www/api/MagickCore/type_8c.html
share/doc/ImageMagick/www/api/MagickCore/type_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/type_8h.html
share/doc/ImageMagick/www/api/MagickCore/utility_8c.html
share/doc/ImageMagick/www/api/MagickCore/utility_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/utility_8h.html
share/doc/ImageMagick/www/api/MagickCore/version_8c.html
share/doc/ImageMagick/www/api/MagickCore/version_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/version_8h.html
share/doc/ImageMagick/www/api/MagickCore/vms_8c.html
share/doc/ImageMagick/www/api/MagickCore/vms_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/vms_8h.html
share/doc/ImageMagick/www/api/MagickCore/widget_8c.html
share/doc/ImageMagick/www/api/MagickCore/widget_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/widget_8h.html
share/doc/ImageMagick/www/api/MagickCore/xml-tree_8c.html
share/doc/ImageMagick/www/api/MagickCore/xml-tree_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/xml-tree_8h.html
share/doc/ImageMagick/www/api/MagickCore/xwindow-private_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/xwindow-private_8h.html
share/doc/ImageMagick/www/api/MagickCore/xwindow_8c.html
share/doc/ImageMagick/www/api/MagickCore/xwindow_8h-source.html
share/doc/ImageMagick/www/api/MagickCore/xwindow_8h.html
share/doc/ImageMagick/www/api/MagickWand/
share/doc/ImageMagick/www/api/MagickWand/MagickWand_8h-source.html
share/doc/ImageMagick/www/api/MagickWand/MagickWand_8h.html
share/doc/ImageMagick/www/api/MagickWand/animate_8c.html
share/doc/ImageMagick/www/api/MagickWand/animate_8h-source.html
share/doc/ImageMagick/www/api/MagickWand/animate_8h.html
share/doc/ImageMagick/www/api/MagickWand/annotated.html
share/doc/ImageMagick/www/api/MagickWand/classes.html
share/doc/ImageMagick/www/api/MagickWand/compare_8c.html
share/doc/ImageMagick/www/api/MagickWand/compare_8h-source.html
share/doc/ImageMagick/www/api/MagickWand/compare_8h.html
share/doc/ImageMagick/www/api/MagickWand/composite_8c.html
share/doc/ImageMagick/www/api/MagickWand/composite_8h-source.html
share/doc/ImageMagick/www/api/MagickWand/composite_8h.html
share/doc/ImageMagick/www/api/MagickWand/conjure_8c.html
share/doc/ImageMagick/www/api/MagickWand/conjure_8h-source.html
share/doc/ImageMagick/www/api/MagickWand/conjure_8h.html
share/doc/ImageMagick/www/api/MagickWand/convert_8c.html
share/doc/ImageMagick/www/api/MagickWand/convert_8h-source.html
share/doc/ImageMagick/www/api/MagickWand/convert_8h.html
share/doc/ImageMagick/www/api/MagickWand/deprecate_8c.html
share/doc/ImageMagick/www/api/MagickWand/deprecate_8h-source.html
share/doc/ImageMagick/www/api/MagickWand/deprecate_8h.html
share/doc/ImageMagick/www/api/MagickWand/dir_101f7ac0a894e32543a314e85b2e1524.html
share/doc/ImageMagick/www/api/MagickWand/dirs.html
share/doc/ImageMagick/www/api/MagickWand/display_8c.html
share/doc/ImageMagick/www/api/MagickWand/display_8h-source.html
share/doc/ImageMagick/www/api/MagickWand/display_8h.html
share/doc/ImageMagick/www/api/MagickWand/doxygen.css
share/doc/ImageMagick/www/api/MagickWand/doxygen.png
share/doc/ImageMagick/www/api/MagickWand/drawing-wand_8c.html
share/doc/ImageMagick/www/api/MagickWand/drawing-wand_8h-source.html
share/doc/ImageMagick/www/api/MagickWand/drawing-wand_8h.html
share/doc/ImageMagick/www/api/MagickWand/drawtest_8c.html
share/doc/ImageMagick/www/api/MagickWand/files.html
share/doc/ImageMagick/www/api/MagickWand/ftv2blank.png
share/doc/ImageMagick/www/api/MagickWand/ftv2doc.png
share/doc/ImageMagick/www/api/MagickWand/ftv2folderclosed.png
share/doc/ImageMagick/www/api/MagickWand/ftv2folderopen.png
share/doc/ImageMagick/www/api/MagickWand/ftv2lastnode.png
share/doc/ImageMagick/www/api/MagickWand/ftv2link.png
share/doc/ImageMagick/www/api/MagickWand/ftv2mlastnode.png
share/doc/ImageMagick/www/api/MagickWand/ftv2mnode.png
share/doc/ImageMagick/www/api/MagickWand/ftv2node.png
share/doc/ImageMagick/www/api/MagickWand/ftv2plastnode.png
share/doc/ImageMagick/www/api/MagickWand/ftv2pnode.png
share/doc/ImageMagick/www/api/MagickWand/ftv2vertline.png
share/doc/ImageMagick/www/api/MagickWand/functions.html
share/doc/ImageMagick/www/api/MagickWand/functions_vars.html
share/doc/ImageMagick/www/api/MagickWand/globals.html
share/doc/ImageMagick/www/api/MagickWand/globals_0x61.html
share/doc/ImageMagick/www/api/MagickWand/globals_0x62.html
share/doc/ImageMagick/www/api/MagickWand/globals_0x63.html
share/doc/ImageMagick/www/api/MagickWand/globals_0x64.html
share/doc/ImageMagick/www/api/MagickWand/globals_0x65.html
share/doc/ImageMagick/www/api/MagickWand/globals_0x67.html
share/doc/ImageMagick/www/api/MagickWand/globals_0x69.html
share/doc/ImageMagick/www/api/MagickWand/globals_0x6d.html
share/doc/ImageMagick/www/api/MagickWand/globals_0x6e.html
share/doc/ImageMagick/www/api/MagickWand/globals_0x6f.html
share/doc/ImageMagick/www/api/MagickWand/globals_0x70.html
share/doc/ImageMagick/www/api/MagickWand/globals_0x71.html
share/doc/ImageMagick/www/api/MagickWand/globals_0x72.html
share/doc/ImageMagick/www/api/MagickWand/globals_0x73.html
share/doc/ImageMagick/www/api/MagickWand/globals_0x74.html
share/doc/ImageMagick/www/api/MagickWand/globals_0x75.html
share/doc/ImageMagick/www/api/MagickWand/globals_0x77.html
share/doc/ImageMagick/www/api/MagickWand/globals_0x78.html
share/doc/ImageMagick/www/api/MagickWand/globals_defs.html
share/doc/ImageMagick/www/api/MagickWand/globals_enum.html
share/doc/ImageMagick/www/api/MagickWand/globals_eval.html
share/doc/ImageMagick/www/api/MagickWand/globals_func.html
share/doc/ImageMagick/www/api/MagickWand/globals_func_0x63.html
share/doc/ImageMagick/www/api/MagickWand/globals_func_0x64.html
share/doc/ImageMagick/www/api/MagickWand/globals_func_0x67.html
share/doc/ImageMagick/www/api/MagickWand/globals_func_0x69.html
share/doc/ImageMagick/www/api/MagickWand/globals_func_0x6d.html
share/doc/ImageMagick/www/api/MagickWand/globals_func_0x6e.html
share/doc/ImageMagick/www/api/MagickWand/globals_func_0x70.html
share/doc/ImageMagick/www/api/MagickWand/globals_func_0x72.html
share/doc/ImageMagick/www/api/MagickWand/globals_func_0x73.html
share/doc/ImageMagick/www/api/MagickWand/globals_type.html
share/doc/ImageMagick/www/api/MagickWand/globals_vars.html
share/doc/ImageMagick/www/api/MagickWand/identify_8c.html
share/doc/ImageMagick/www/api/MagickWand/identify_8h-source.html
share/doc/ImageMagick/www/api/MagickWand/identify_8h.html
share/doc/ImageMagick/www/api/MagickWand/import_8c.html
share/doc/ImageMagick/www/api/MagickWand/import_8h-source.html
share/doc/ImageMagick/www/api/MagickWand/import_8h.html
share/doc/ImageMagick/www/api/MagickWand/index.html
share/doc/ImageMagick/www/api/MagickWand/magick-image_8c.html
share/doc/ImageMagick/www/api/MagickWand/magick-image_8h-source.html
share/doc/ImageMagick/www/api/MagickWand/magick-image_8h.html
share/doc/ImageMagick/www/api/MagickWand/magick-property_8c.html
share/doc/ImageMagick/www/api/MagickWand/magick-property_8h-source.html
share/doc/ImageMagick/www/api/MagickWand/magick-property_8h.html
share/doc/ImageMagick/www/api/MagickWand/magick-wand-private_8h-source.html
share/doc/ImageMagick/www/api/MagickWand/magick-wand-private_8h.html
share/doc/ImageMagick/www/api/MagickWand/magick-wand_8c.html
share/doc/ImageMagick/www/api/MagickWand/magick-wand_8h-source.html
share/doc/ImageMagick/www/api/MagickWand/magick-wand_8h.html
share/doc/ImageMagick/www/api/MagickWand/magick__wand_8h-source.html
share/doc/ImageMagick/www/api/MagickWand/magick__wand_8h.html
share/doc/ImageMagick/www/api/MagickWand/main.html
share/doc/ImageMagick/www/api/MagickWand/mogrify-private_8h-source.html
share/doc/ImageMagick/www/api/MagickWand/mogrify-private_8h.html
share/doc/ImageMagick/www/api/MagickWand/mogrify_8c.html
share/doc/ImageMagick/www/api/MagickWand/mogrify_8h-source.html
share/doc/ImageMagick/www/api/MagickWand/mogrify_8h.html
share/doc/ImageMagick/www/api/MagickWand/montage_8c.html
share/doc/ImageMagick/www/api/MagickWand/montage_8h-source.html
share/doc/ImageMagick/www/api/MagickWand/montage_8h.html
share/doc/ImageMagick/www/api/MagickWand/pixel-iterator_8c.html
share/doc/ImageMagick/www/api/MagickWand/pixel-iterator_8h-source.html
share/doc/ImageMagick/www/api/MagickWand/pixel-iterator_8h.html
share/doc/ImageMagick/www/api/MagickWand/pixel-wand-private_8h-source.html
share/doc/ImageMagick/www/api/MagickWand/pixel-wand-private_8h.html
share/doc/ImageMagick/www/api/MagickWand/pixel-wand_8c.html
share/doc/ImageMagick/www/api/MagickWand/pixel-wand_8h-source.html
share/doc/ImageMagick/www/api/MagickWand/pixel-wand_8h.html
share/doc/ImageMagick/www/api/MagickWand/stream_8c.html
share/doc/ImageMagick/www/api/MagickWand/stream_8h-source.html
share/doc/ImageMagick/www/api/MagickWand/stream_8h.html
share/doc/ImageMagick/www/api/MagickWand/struct__CompositeOptions.html
share/doc/ImageMagick/www/api/MagickWand/struct__DrawVTable.html
share/doc/ImageMagick/www/api/MagickWand/struct__DrawingWand.html
share/doc/ImageMagick/www/api/MagickWand/struct__MagickWand.html
share/doc/ImageMagick/www/api/MagickWand/struct__PixelIterator.html
share/doc/ImageMagick/www/api/MagickWand/struct__PixelWand.html
share/doc/ImageMagick/www/api/MagickWand/studio_8h-source.html
share/doc/ImageMagick/www/api/MagickWand/studio_8h.html
share/doc/ImageMagick/www/api/MagickWand/tab_b.gif
share/doc/ImageMagick/www/api/MagickWand/tab_l.gif
share/doc/ImageMagick/www/api/MagickWand/tab_r.gif
share/doc/ImageMagick/www/api/MagickWand/tabs.css
share/doc/ImageMagick/www/api/MagickWand/tree.html
share/doc/ImageMagick/www/api/MagickWand/wand_8c.html
share/doc/ImageMagick/www/api/MagickWand/wand_8h-source.html
share/doc/ImageMagick/www/api/MagickWand/wand_8h.html
share/doc/ImageMagick/www/api/MagickWand/wandtest_8c.html
share/doc/ImageMagick/www/api/animate.html
share/doc/ImageMagick/www/api/annotate.html
share/doc/ImageMagick/www/api/attribute.html
@ -1157,9 +448,9 @@ share/doc/ImageMagick/www/architecture.html
share/doc/ImageMagick/www/assets/
share/doc/ImageMagick/www/assets/magick.css
share/doc/ImageMagick/www/assets/magick.js
share/doc/ImageMagick/www/binary-releases.html
share/doc/ImageMagick/www/changelog.html
share/doc/ImageMagick/www/cipher.html
share/doc/ImageMagick/www/cite.html
share/doc/ImageMagick/www/color-management.html
share/doc/ImageMagick/www/color.html
share/doc/ImageMagick/www/command-line-options.html
@ -1172,6 +463,7 @@ share/doc/ImageMagick/www/conjure.html
share/doc/ImageMagick/www/connected-components.html
share/doc/ImageMagick/www/contact.html
share/doc/ImageMagick/www/convert.html
share/doc/ImageMagick/www/defines.html
share/doc/ImageMagick/www/develop.html
share/doc/ImageMagick/www/display.html
share/doc/ImageMagick/www/distribute-pixel-cache.html
@ -1204,6 +496,7 @@ share/doc/ImageMagick/www/mirror.html
share/doc/ImageMagick/www/mogrify.html
share/doc/ImageMagick/www/montage.html
share/doc/ImageMagick/www/motion-picture.html
share/doc/ImageMagick/www/news.html
share/doc/ImageMagick/www/opencl.html
share/doc/ImageMagick/www/openmp.html
share/doc/ImageMagick/www/perl-magick.html
@ -1228,6 +521,7 @@ share/doc/ImageMagick/www/source/incantation.msl
share/doc/ImageMagick/www/source/locale.xml
share/doc/ImageMagick/www/source/log.xml
share/doc/ImageMagick/www/source/magic.xml
share/doc/ImageMagick/www/source/mgk.c
share/doc/ImageMagick/www/source/mime.xml
share/doc/ImageMagick/www/source/piechart.mvg
share/doc/ImageMagick/www/source/piechart.svg