problem converting grayscale 16-bit FIT to TIFF

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
Light
Posts: 8
Joined: 2012-04-30T13:28:31-07:00
Authentication code: 13

problem converting grayscale 16-bit FIT to TIFF

Post by Light »

Hello All,

I am having an issue converting grayscale 16-bit FITS images to the TIFF format using ImageMagick's (v. 6.6.0-4) convert command (under either Ubuntu 11.04 or OpenSUSE 11.3). I am using the following command:

Code: Select all

convert -colorspace Gray -define dcm:display-range=reset original.FIT -auto-level -format TIFF  -depth 16 output.tif
However when converting the same image using ImageJ (http://rsbweb.nih.gov/ij/download.html) I get the an image (imagej.tif) which more faithfully matches the original.

Links: My questions:
  • 1. How do you make the grayscale intensity values exactly match the original (no auto-leveling, etc.)
    2. (although far less of a concern) How do I retain pixels as the xy values - convert seems to put the xy values into some units (inches?), but not with ImageJ
My aim is to make a script for batch converting (and renaming) a bunch of data images for my diffraction setup, but I am completely stumped on how to get around this intensity problem - any help would be immensely appreciated!
Last edited by Light on 2012-05-02T02:39:51-07:00, edited 2 times in total.
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Re: problem converting grayscale 16-bit FIT to TIFF

Post by magick »

We tried the conversion with ImageMagick 6.7.6-8, the current release, and it produces the expected results.
Light
Posts: 8
Joined: 2012-04-30T13:28:31-07:00
Authentication code: 13

Re: problem converting grayscale 16-bit FIT to TIFF

Post by Light »

Thank you magick for the quick reply :D

I have attempted upgrading to the latest release, but since upgrading convert is throwing up the following error when I attempt to use the command in my previous post:
convert: no decode delegate for this image format `original.FIT' @ error/constitute.c/ReadImage/544.
convert: no images defined `output.tif' @ error/convert.c/ConvertImageCommand/3018.
It would seem my installation did not go to plan... For the record I removed my previous version of ImageMagick before the install process.

I have compiled from source on my OpenSUSE 11.3 x86_64 machine using a quick script I made:

Code: Select all

#! /bin/bash
#Script to install ImageMagick from source (for newest version)
#======================================================================================
IM_VER=6.7.6-8
SRC_DIR=/usr/local/src
INSTALL_DIR=$1
OWD=$PWD
DELEGATES=""
#DELEGATES="bzip2-1.0.6.tar.gz dcraw-9.04.tar.gz  ft245.zip xtp-5.4.3.tar.gz zlib-1.2.6.tar.gz"
DELEGATE_URL="http://www.imagemagick.org/download/delegates/"
#======================================================================================
sudo chmod -R 777 $SRC_DIR
if [[ "$INSTALL_DIR" == "" ]];then
  INSTALL_PATH=""
else
  sudo mkdir -p $INSTALL_DIR;sudo chmod -R 777 $INSTALL_DIR;INSTALL_PATH="--prefix=$INSTALL_DIR"
fi
cd $SRC_DIR
# for DELEGATE in $DELEGATES;do
#   #download and extract delegates
#   wget $DELEGATE_URL$DELEGATE
#   EXT=${DELEGATE/*./}
#   if [[ "$EXT" == "gz" ]];then tar -zxf $DELEGATE;fi
#   if [[ "$EXT" == "zip" ]];then unzip $DELEGATE;fi
#   if [[ "$EXT" == "bz2" ]];then tar -jxf $DELEGATE;fi
#   #install delegates
#   cd ${DELEGATE/.*/}
#   ./configure
#   make
#   sudo make install
#   cd $SRC_DIR
# done

function get_response() {
  #automatically generates responses from args $1="response1 response2 ... responseN" and $2="&&","||",etc.
  if [[ "$1" != "" ]];then RESPONSE_LIST=$1;else RESPONSE_LIST="y n";fi
  if [[ "$2" != "" ]];then LOGIC=$2;else LOGIC="&&";fi
  RESP_COUNT=0;for ALLOWED_RESPONSES in $RESPONSE_LIST;do
    RESP_COUNT=$(($RESP_COUNT+1))
    ALLOWED_RESPONSE[RESP_COUNT]=$ALLOWED_RESPONSES
  done
  ALLOWED_RESP="while "
  RESP_TOT=$RESP_COUNT;RESP_COUNT=0
  while [[ $RESP_COUNT -lt $RESP_TOT ]];do
    RESP_COUNT=$(($RESP_COUNT+1))
    ALLOWED_RESP="${ALLOWED_RESP}[[ \"${ALLOWED_RESPONSE[$RESP_COUNT]}\" != \"\$RESPONSE\" ]]"
    if [[ $RESP_COUNT -lt $RESP_TOT ]];then ALLOWED_RESP="$ALLOWED_RESP $LOGIC ";fi
  done
  RESPONSE=""
  ALLOWED_RESP="$ALLOWED_RESP;do read RESPONSE;done"
  alias RESP="$ALLOWED_RESP"
  RESP
}
 
function check_install() {
  echo -e "Checking installation...";make check |tee -a install_log.txt
}
 
if [[ ! -e "ImageMagick-${IM_VER}.tar.gz" ]];then echo "downloading source tar-ball...";wget "http://mirror.checkdomain.de/imagemagick/ImageMagick-${IM_VER}.tar.gz";fi
 
if [[ -d "ImageMagick-$IM_VER" ]];then rm -r "ImageMagick-$IM_VER";fi
echo -e "Extracting tar-ball...";tar -zxf "ImageMagick-${IM_VER}.tar.gz"
cd "ImageMagick-${IM_VER}"
#LDFLAGS='-L/usr/local/lib -R/usr/local/lib' #suggested
LDFLAGS_STR="";CPPFLAGS_STR=""
#LDFLAGS_STR="LDFLAGS='-L/usr/local/lib,-Wl,-rpath,/usr/local/lib'" #for ubuntu?
#CPPFLAGS_STR="CPPFLAGS='-O2,-I/usr/local/include'"
echo -e "Configuring makefile...";./configure $LDFLAGS_STR $CPPFLAGS_STR --enable-hdri=yes --with-modules=yes --enable-delegate-build=yes |tee -a install_log.txt
#echo -e "Configuring makefile...";./configure --enable-hdri=yes --x-libraries=/usr/lib --enable-shared=yes --disable-static --with-modules=yes --enable-delegate-build=yes |tee -a install_log.txt
echo -e "Executing makefile...";make $INSTALL_PATH |tee -a install_log.txt
echo -e "Installing binaries...";sudo make install |tee -a install_log.txt
echo -e "Do you want to check the installation?";check_install
#echo -e "Cleaning up temporary object files...";make clean 1>/dev/null #use later...
cd $OWD
echo -e "Updating links...";sudo /sbin/ldconfig /usr/local/lib
echo "Done!"
which gave the following output:

Code: Select all

configuring ImageMagick 6.7.6-8
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking target system type... x86_64-unknown-linux-gnu
checking whether build environment is sane... yes
checking for a BSD-compatible install... /usr/bin/install -c
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking whether make supports nested variables... (cached) yes
checking for style of include used by make... GNU
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking dependency style of gcc... gcc3
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking minix/config.h usability... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking for gcc... (cached) gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
checking dependency style of gcc... (cached) gcc3
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking dependency style of g++... gcc3
checking for gcc option to accept ISO C99... -std=gnu99
checking for gcc -std=gnu99 option to accept ISO Standard C... (cached) -std=gnu99
checking how to run the C preprocessor... gcc -E
checking for a sed that does not truncate output... /usr/bin/sed
checking for fgrep... /usr/bin/grep -F
checking how to print strings... printf
checking for ld used by gcc -std=gnu99... /usr/x86_64-suse-linux/bin/ld
checking if the linker (/usr/x86_64-suse-linux/bin/ld) is GNU ld... yes
checking for gcc -std=gnu99 option to accept ISO C99... (cached) -std=gnu99
checking whether gcc -std=gnu99 -std=gnu99 and cc understand -c and -o together... yes
checking CFLAGS for maximum warnings... -Wall
checking whether make sets $(MAKE)... (cached) yes
checking whether ln -s works... yes
checking if malloc debugging is wanted... no
checking for __attribute__... yes
checking for gcc architecture flag... 
checking for gcc architecture flag... unknown
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking whether we are using the Microsoft C compiler... no
checking for linker lazyload option... none
checking for the pthreads library -lpthreads... no
checking whether pthreads work without any flags... no
checking whether pthreads work with -Kthread... no
checking whether pthreads work with -kthread... no
checking for the pthreads library -llthread... no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE
checking if more special flags are required for pthreads... no
checking for PTHREAD_PRIO_INHERIT... yes
checking for gcc -std=gnu99 -std=gnu99 option to support OpenMP... -fopenmp
checking for pthread_join in LIBS= with CFLAGS=-pthread... yes
checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE
checking if more special flags are required for pthreads... no
checking for PTHREAD_PRIO_INHERIT... (cached) yes
checking whether we are using the Microsoft C compiler... (cached) no
checking CL/cl.h usability... no
checking CL/cl.h presence... no
checking for CL/cl.h... no
checking OpenCL/cl.h usability... no
checking OpenCL/cl.h presence... no
checking for OpenCL/cl.h... no
checking windows.h usability... no
checking windows.h presence... no
checking for windows.h... no
checking for OpenCL library... no
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... no
checking for _LARGEFILE_SOURCE value needed for large files... no
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking the maximum length of command line arguments... 1572864
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/x86_64-suse-linux/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for ar... ar
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from gcc -std=gnu99 -std=gnu99 object... ok
checking for sysroot... no
checking for mt... mt
checking if mt is a manifest tool... no
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc -std=gnu99 -std=gnu99 supports -fno-rtti -fno-exceptions... no
checking for gcc -std=gnu99 -std=gnu99 option to produce PIC... -fPIC -DPIC
checking if gcc -std=gnu99 -std=gnu99 PIC flag -fPIC -DPIC works... yes
checking if gcc -std=gnu99 -std=gnu99 static flag -static works... yes
checking if gcc -std=gnu99 -std=gnu99 supports -c -o file.o... yes
checking if gcc -std=gnu99 -std=gnu99 supports -c -o file.o... (cached) yes
checking whether the gcc -std=gnu99 -std=gnu99 linker (/usr/x86_64-suse-linux/bin/ld -m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking for shl_load... no
checking for shl_load in -ldld... no
checking for dlopen... no
checking for dlopen in -ldl... yes
checking whether a program can dlopen itself... yes
checking whether a statically linked program can dlopen itself... no
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking how to run the C++ preprocessor... g++ -E
checking for ld used by g++... /usr/x86_64-suse-linux/bin/ld -m elf_x86_64
checking if the linker (/usr/x86_64-suse-linux/bin/ld -m elf_x86_64) is GNU ld... yes
checking whether the g++ linker (/usr/x86_64-suse-linux/bin/ld -m elf_x86_64) supports shared libraries... yes
checking for g++ option to produce PIC... -fPIC -DPIC
checking if g++ PIC flag -fPIC -DPIC works... yes
checking if g++ static flag -static works... yes
checking if g++ supports -c -o file.o... yes
checking if g++ supports -c -o file.o... (cached) yes
checking whether the g++ linker (/usr/x86_64-suse-linux/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... (cached) GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking which extension is used for runtime loadable modules... .so
checking which variable specifies run-time module search path... LD_LIBRARY_PATH
checking for the default library search path... /lib64 /usr/lib64 /lib /usr/lib /usr/X11R6/lib64/Xaw3d /usr/X11R6/lib64 /usr/lib64/Xaw3d /usr/X11R6/lib/Xaw3d /usr/X11R6/lib /usr/lib/Xaw3d /usr/x86_64-suse-linux/lib /usr/local/lib /opt/kde3/lib /lib64 /lib /usr/lib64 /usr/lib /usr/local/lib64 /opt/kde3/lib64 /usr/lib64/graphviz /usr/lib64/graphviz/sharp /usr/lib64/graphviz/java /usr/lib64/graphviz/perl /usr/lib64/graphviz/php /usr/lib64/graphviz/ocaml /usr/lib64/graphviz/python /usr/lib64/graphviz/lua /usr/lib64/graphviz/tcl /usr/lib64/graphviz/guile /usr/lib64/graphviz/ruby 
checking for library containing dlopen... -ldl
checking for dlerror... yes
checking for shl_load... (cached) no
checking for shl_load in -ldld... (cached) no
checking for dld_link in -ldld... no
checking for _ prefix in compiled symbols... no
checking whether deplibs are loaded by dlopen... yes
checking for argz.h... yes
checking for error_t... yes
checking for argz_add... yes
checking for argz_append... yes
checking for argz_count... yes
checking for argz_create_sep... yes
checking for argz_insert... yes
checking for argz_next... yes
checking for argz_stringify... yes
checking if argz actually works... yes
checking whether libtool supports -dlopen/-dlpreopen... yes
checking for ltdl.h... yes
checking whether lt_dlinterface_register is declared... yes
checking for lt_dladvise_preload in -lltdl... yes
checking where to find libltdl headers... 
checking where to find libltdl library... -lltdl
checking for unistd.h... (cached) yes
checking for dl.h... no
checking for sys/dl.h... no
checking for dld.h... no
checking for mach-o/dyld.h... no
checking for dirent.h... yes
checking for closedir... yes
checking for opendir... yes
checking for readdir... yes
checking for strlcat... no
checking for strlcpy... no
checking whether to enable maintainer-specific portions of Makefiles... no
checking whether gcc -std=gnu99 -std=gnu99 needs -traditional... no
checking for ANSI C header files... (cached) yes
checking whether to enable assertions... yes
checking for dirent.h that defines DIR... yes
checking for library containing opendir... none required
checking arm/limits.h usability... no
checking arm/limits.h presence... no
checking for arm/limits.h... no
checking complex.h usability... yes
checking complex.h presence... yes
checking for complex.h... yes
checking errno.h usability... yes
checking errno.h presence... yes
checking for errno.h... yes
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking limits.h usability... yes
checking limits.h presence... yes
checking for limits.h... yes
checking linux/unistd.h usability... yes
checking linux/unistd.h presence... yes
checking for linux/unistd.h... yes
checking locale.h usability... yes
checking locale.h presence... yes
checking for locale.h... yes
checking machine/param.h usability... no
checking machine/param.h presence... no
checking for machine/param.h... no
checking for mach-o/dyld.h... (cached) no
checking OS.h usability... no
checking OS.h presence... no
checking for OS.h... no
checking process.h usability... no
checking process.h presence... no
checking for process.h... no
checking stdarg.h usability... yes
checking stdarg.h presence... yes
checking for stdarg.h... yes
checking sys/ipc.h usability... yes
checking sys/ipc.h presence... yes
checking for sys/ipc.h... yes
checking sys/resource.h usability... yes
checking sys/resource.h presence... yes
checking for sys/resource.h... yes
checking sys/syslimits.h usability... no
checking sys/syslimits.h presence... no
checking for sys/syslimits.h... no
checking sys/time.h usability... yes
checking sys/time.h presence... yes
checking for sys/time.h... yes
checking sys/timeb.h usability... yes
checking sys/timeb.h presence... yes
checking for sys/timeb.h... yes
checking sys/times.h usability... yes
checking sys/times.h presence... yes
checking for sys/times.h... yes
checking sys/wait.h usability... yes
checking sys/wait.h presence... yes
checking for sys/wait.h... yes
checking wchar.h usability... yes
checking wchar.h presence... yes
checking for wchar.h... yes
checking xlocale.h usability... yes
checking xlocale.h presence... yes
checking for xlocale.h... yes
checking for stdbool.h that conforms to C99... yes
checking for _Bool... yes
checking for working volatile... yes
checking for preprocessor stringizing operator... yes
checking whether stat file-mode macros are broken... no
checking whether time.h and sys/time.h may both be included... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for struct tm.tm_zone... yes
checking whether #! works in shell scripts... yes
checking for inline... inline
checking for C/C++ restrict keyword... __restrict
checking whether byte ordering is bigendian... no
checking for int8_t... yes
checking for int16_t... yes
checking for int32_t... yes
checking for int64_t... yes
checking for long long int... yes
checking for intmax_t... yes
checking for intptr_t... yes
checking for long double... yes
checking for long double with more range or precision than double... yes
checking for long long int... (cached) yes
checking for mbstate_t... yes
checking for mode_t... yes
checking for off_t... yes
checking for pid_t... yes
checking for size_t... yes
checking for ssize_t... yes
checking for uid_t in sys/types.h... yes
checking for uint8_t... yes
checking for uint16_t... yes
checking for uint32_t... yes
checking for uint64_t... yes
checking for unsigned long long int... yes
checking for uintmax_t... yes
checking for uintptr_t... yes
checking for unsigned long long int... (cached) yes
checking whether char is unsigned... no
checking size of signed short... 2
checking size of unsigned short... 2
checking size of signed int... 4
checking size of unsigned int... 4
checking size of signed long... 8
checking size of unsigned long... 8
checking size of signed long long... 8
checking size of unsigned long long... 8
checking size of off_t... 8
checking size of size_t... 8
checking size of ssize_t... 8
checking size of unsigned int*... 8
checking for signed 8-bit type... signed char
checking for unsigned 8-bit type... unsigned char
checking for signed 16-bit type... signed short
checking for unsigned 16-bit type... unsigned short
checking for signed 32-bit type... signed int
checking for unsigned 32-bit type... unsigned int
checking for signed 64-bit type... signed long
checking for unsigned 64-bit type... unsigned long
checking for unsigned maximum type... unsigned long
checking for pointer difference type... unsigned long
checking whether our compiler supports __func__... yes
checking for stdlib.h... (cached) yes
checking for unistd.h... (cached) yes
checking for getpagesize... yes
checking for working mmap file i/o... yes
checking whether closedir returns void... no
checking for stdlib.h... (cached) yes
checking for unistd.h... (cached) yes
checking for sys/param.h... yes
checking for getpagesize... (cached) yes
checking for working mmap... yes
checking vfork.h usability... no
checking vfork.h presence... no
checking for vfork.h... no
checking for fork... yes
checking for vfork... yes
checking for working fork... yes
checking for working vfork... (cached) yes
checking for working memcmp... yes
checking sys/select.h usability... yes
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking sys/socket.h usability... yes
checking sys/socket.h presence... yes
checking for sys/socket.h... yes
checking types of arguments for select... int,fd_set *,struct timeval *
checking return type of signal handlers... void
checking whether strerror_r is declared... yes
checking for strerror_r... yes
checking whether strerror_r returns char *... yes
checking for working strtod... yes
checking for vprintf... yes
checking for _doprnt... no
checking for sqrt in -lm... yes
checking for acosh... yes
checking for asinh... yes
checking for atanh... yes
checking for atoll... yes
checking for atexit... yes
checking for cabs... yes
checking for carg... yes
checking for cimag... yes
checking for creal... yes
checking for clock... yes
checking for ctime_r... yes
checking for directio... no
checking for _exit... yes
checking for execvp... yes
checking for fchmod... yes
checking for floor... yes
checking for fork... (cached) yes
checking for ftime... yes
checking for ftruncate... yes
checking for getc_unlocked... yes
checking for getcwd... yes
checking for getpid... yes
checking for getexecname... no
checking for getdtablesize... yes
checking for getpagesize... (cached) yes
checking for getrlimit... yes
checking for getrusage... yes
checking for gettimeofday... yes
checking for gmtime_r... yes
checking for isnan... yes
checking for j0... yes
checking for j1... yes
checking for lltostr... no
checking for localtime_r... yes
checking for lstat... yes
checking for memmove... yes
checking for memset... yes
checking for mkstemp... yes
checking for munmap... yes
checking for nanosleep... yes
checking for newlocale... yes
checking for _NSGetExecutablePath... no
checking for pclose... yes
checking for _pclose... no
checking for poll... yes
checking for popen... yes
checking for _popen... no
checking for posix_fadvise... yes
checking for posix_fallocate... yes
checking for posix_madvise... yes
checking for posix_memalign... yes
checking for posix_spawnp... yes
checking for pow... yes
checking for pread... yes
checking for pwrite... yes
checking for qsort_r... yes
checking for raise... yes
checking for rand_r... yes
checking for readlink... yes
checking for readdir_r... yes
checking for realpath... yes
checking for select... yes
checking for seekdir... yes
checking for setlocale... yes
checking for sqrt... yes
checking for setvbuf... yes
checking for stat... yes
checking for strchr... yes
checking for strerror_r... (cached) yes
checking for strrchr... yes
checking for strcspn... yes
checking for strdup... yes
checking for strpbrk... yes
checking for strspn... yes
checking for strstr... yes
checking for strtod... (cached) yes
checking for strtod_l... yes
checking for strtol... yes
checking for strtoul... yes
checking for symlink... yes
checking for sysconf... yes
checking for sigemptyset... yes
checking for sigaction... yes
checking for spawnvp... no
checking for strerror... yes
checking for strlcat... (cached) no
checking for strlcpy... (cached) no
checking for strcasecmp... yes
checking for strncasecmp... yes
checking for telldir... yes
checking for tempnam... yes
checking for times... yes
checking for ulltostr... no
checking for uselocale... yes
checking for usleep... yes
checking for utime... yes
checking for vfprintf... yes
checking for vfprintf_l... no
checking for vsprintf... yes
checking for vsnprintf... yes
checking for vsnprintf_l... no
checking for waitpid... yes
checking for _wfopen... no
checking for _wstat... no
checking for library containing clock_gettime... none required
checking whether clock_gettime supports CLOCK_REALTIME... yes
checking whether pread is declared... yes
checking whether pwrite is declared... yes
checking whether strlcpy is declared... no
checking whether vsnprintf is declared... yes
checking whether we are using the GNU C++ compiler... (cached) yes
checking whether g++ accepts -g... (cached) yes
checking dependency style of g++... (cached) gcc3
checking whether the compiler recognizes bool as a built-in type... yes
checking whether the compiler implements namespaces... yes
checking if g++ supports namespace std... yes
checking whether the compiler supports ISO C++ standard library... yes
checking for g++ option to support OpenMP... -fopenmp
checking whether C++ compiler is sufficient for Magick++... yes
checking for X11 configure files... 
checking for GOMP_parallel_start in -lgomp... yes
checking for the pthreads library -lpthread... yes
-------------------------------------------------------------
checking for BZLIB... 
checking bzlib.h usability... no
checking bzlib.h presence... no
checking for bzlib.h... no
checking for BZ2_bzDecompress in -lbz2... no
checking if BZLIB package is complete... no
checking for X... libraries , headers 
checking for gethostbyname... yes
checking for connect... yes
checking for remove... yes
checking for shmat... yes
checking for IceConnectionNumber in -lICE... yes
-------------------------------------------------------------
checking for X11... 
checking for shmctl... yes
checking for XShmAttach in -lXext... yes
checking for XShapeCombineMask in -lXext... yes
checking for XtSetEventDispatcher in -lXt... yes
-------------------------------------------------------------
checking for ZLIB... 
checking zconf.h usability... yes
checking zconf.h presence... yes
checking for zconf.h... yes
checking zlib.h usability... yes
checking zlib.h presence... yes
checking for zlib.h... yes
checking for compress in -lz... yes
checking for uncompress in -lz... yes
checking for deflate in -lz... yes
checking for inflate in -lz... yes
checking for gzseek in -lz... yes
checking for gztell in -lz... yes
checking if ZLIB package is complete... yes
-------------------------------------------------------------
checking for DPS... 
checking DPS/dpsXclient.h usability... no
checking DPS/dpsXclient.h presence... no
checking for DPS/dpsXclient.h... no
checking for DPSInitialize in -ldps... no
checking for DPSInitialize in -ldps... no
checking for XDPSPixelsPerPoint in -ldpstk... no
checking if DPS package is complete... no
-------------------------------------------------------------
checking for DJVU... 
checking libdjvu/ddjvuapi.h usability... no
checking libdjvu/ddjvuapi.h presence... no
checking for libdjvu/ddjvuapi.h... no
checking for ddjvu_context_create in -ldjvulibre... no
checking if DJVU package is complete... no
-------------------------------------------------------------
checking for FFTW... 
checking fftw3.h usability... no
checking fftw3.h presence... no
checking for fftw3.h... no
checking for fftw_execute in -lfftw3... no
checking if FFTW package is complete... no
-------------------------------------------------------------
checking for FlashPIX... 
checking fpxlib.h usability... no
checking fpxlib.h presence... no
checking for fpxlib.h... no
checking for FPX_OpenImageByFilename in -lfpx... no
checking if FlashPIX package is complete... no
-------------------------------------------------------------
checking for FONTCONFIG... yes

-------------------------------------------------------------
checking for FreeType 2.0 ... 
checking for freetype-config... /usr/bin/freetype-config
checking for FT_Init_FreeType in -lfreetype... yes
checking ft2build.h usability... yes
checking ft2build.h presence... yes
checking for ft2build.h... yes
checking for freetype/freetype.h... yes
checking if FreeType package is complete... yes
-------------------------------------------------------------
checking for GVC... no

-------------------------------------------------------------
checking for JBIG... 
checking jbig.h usability... no
checking jbig.h presence... no
checking for jbig.h... no
checking for jbg_dec_init in -ljbig... no
checking if JBIG package is complete... no
-------------------------------------------------------------
checking for JPEG... 
checking jconfig.h usability... yes
checking jconfig.h presence... yes
checking for jconfig.h... yes
checking jerror.h usability... yes
checking jerror.h presence... yes
checking for jerror.h... yes
checking jmorecfg.h usability... yes
checking jmorecfg.h presence... yes
checking for jmorecfg.h... yes
checking jpeglib.h usability... yes
checking jpeglib.h presence... yes
checking for jpeglib.h... yes
checking for jpeg_read_header in -ljpeg... yes
checking for JPEG library is version 6b or later... yes
checking if JPEG package is complete... yes
-------------------------------------------------------------
checking for JPEG Version 2... 
checking jasper/jasper.h usability... no
checking jasper/jasper.h presence... no
checking for jasper/jasper.h... no
checking for jas_stream_fopen in -ljasper... no
checking if JPEG version 2 support package is complete... no
-------------------------------------------------------------
checking for LCMS v2... 
checking lcms2.h usability... no
checking lcms2.h presence... no
checking for lcms2.h... no
checking lcms2/lcms2.h usability... no
checking lcms2/lcms2.h presence... no
checking for lcms2/lcms2.h... no
checking for cmsSetLogErrorHandler in -llcms2... no
checking if LCMS v2 package is complete... no
-------------------------------------------------------------
checking for LCMS v1.1X... 
checking lcms.h usability... yes
checking lcms.h presence... yes
checking for lcms.h... yes
checking for cmsSetErrorHandler in -llcms... yes
checking if LCMS package is complete... yes
-------------------------------------------------------------
checking for LQR... no

configure: -------------------------------------------------------------
checking for LZMA... no
configure: 
-------------------------------------------------------------
checking for OPENEXR... no

-------------------------------------------------------------
checking for PANGO... no

checking for PANGO... no

-------------------------------------------------------------
checking for PNG support ... 
checking png.h usability... yes
checking png.h presence... yes
checking for png.h... yes
checking for LIBPNG15 support ... no
checking for LIBPNG14 support ... no
checking for LIBPNG12 support ... yes
checking for png_get_io_ptr in -lpng12... yes
checking if png12 package is complete... yes
-------------------------------------------------------------
checking for RSVG... no

checking for CAIRO_SVG... yes

-------------------------------------------------------------
checking for TIFF... 
checking tiff.h usability... yes
checking tiff.h presence... yes
checking for tiff.h... yes
checking tiffio.h usability... yes
checking tiffio.h presence... yes
checking for tiffio.h... yes
checking for TIFFOpen in -ltiff... yes
checking for TIFFClientOpen in -ltiff... yes
checking for TIFFIsByteSwapped in -ltiff... yes
checking for TIFFReadRGBATile in -ltiff... yes
checking for TIFFReadRGBAStrip in -ltiff... yes
checking if TIFF package is complete... yes
checking tiffconf.h usability... yes
checking tiffconf.h presence... yes
checking for tiffconf.h... yes
checking for TIFFIsCODECConfigured... yes
checking for TIFFMergeFieldInfo... yes
checking for TIFFIsBigEndian... yes
checking for TIFFReadEXIFDirectory... yes
checking for TIFFSetErrorHandlerExt... yes
checking for TIFFSetTagExtender... yes
checking for TIFFSetWarningHandlerExt... yes
checking for TIFFSwabArrayOfTriples... yes
-------------------------------------------------------------
checking for WEBP... 
checking webp/decode.h usability... no
checking webp/decode.h presence... no
checking for webp/decode.h... no
checking for WebPDecodeRGB in -lwebp... no
checking if WEBP package is complete... no
-------------------------------------------------------------
checking for XML... 
checking for xml2-config... /usr/bin/xml2-config
checking libxml/parser.h usability... yes
checking libxml/parser.h presence... yes
checking for libxml/parser.h... yes
checking for xmlSAXVersion in -lxml2... yes
checking for xmlParseChunk in -lxml2... yes
checking for xmlCreatePushParserCtxt in -lxml2... yes
checking if XML package is complete... yes
-------------------------------------------------------------
checking for ImageMagick delegate programs... 
checking for autotrace... /usr/bin/autotrace
checking for blender... blender
checking for bzip2... /usr/bin/bzip2
checking for xdg-open... /usr/bin/xdg-open
checking for ralcgm... ralcgm
checking for cat... /bin/cat
checking for ufraw-batch... ufraw-batch
checking for dot... /usr/bin/dot
checking for dvips... dvips
checking for echo... /bin/echo
checking for xterm... /usr/bin/xterm
checking for fig2dev... /usr/bin/fig2dev
checking for convert... /usr/local/bin/convert
checking for display... /usr/local/bin/display
checking for mogrify... /usr/local/bin/mogrify
checking for gnuplot... /usr/bin/gnuplot
checking for hp2xx... /usr/bin/hp2xx
checking for html2ps... html2ps
checking for ilbmtoppm... /usr/bin/ilbmtoppm
checking for ppmtoilbm... /usr/bin/ppmtoilbm
checking for lp... /usr/bin/lp
checking for lpr... /usr/bin/lpr
checking for uncompress... /usr/bin/uncompress
checking for compress... compress
checking for gimp... /usr/bin/gimp
checking for groff... /usr/bin/groff
checking for ffmpeg... ffmpeg
checking for ffmpeg... ffmpeg
checking for mrsidgeodecode... mrsidgeodecode
checking for mv... /bin/mv
checking for pcl6... pcl6
checking for pgpv... pgpv
checking for povray... /usr/bin/povray
checking for gsx... no
checking for gsc... no
checking for gs... /usr/bin/gs
checking for rawtorle... rawtorle
checking for rm... /bin/rm
checking for rsvg-convert... rsvg-convert
checking for scanimage... /usr/bin/scanimage
checking for enscript... /usr/bin/enscript
checking for uniconvertor... uniconvertor
checking for wmf2eps... /usr/bin/wmf2eps
checking for curl... /usr/bin/curl
checking for gxps... gxps
checking for gzip... /usr/bin/gzip
checking for Dejavu fonts directory... not found!
checking for Ghostscript fonts directory... /usr/share/ghostscript/fonts/
checking for gnutar... no
checking for gtar... no
checking for tar... tar
checking for perl... perl
checking for rpmbuild... rpmbuild
checking for 7za... 7za
checking for zip... zip
-------------------------------------------------------------
checking for Ghostscript... 
checking for Ghostscript version... 8.70
checking for gs alpha device... pngalpha
checking for gs color device... pnmraw
checking for gs CMYK device... pam
checking for gs mono device... pbmraw
checking for gs PDF writing device... pdfwrite
checking for gs PS writing device... pswrite
checking for gs EPS writing device... epswrite
-------------------------------------------------------------
Update ImageMagick configuration
configure: creating ./config.status
config.status: creating config/configure.xml
config.status: creating config/delegates.xml
config.status: creating config/ImageMagick.rdf
config.status: creating config/MagickCore.dox
config.status: creating config/MagickWand.dox
config.status: creating config/type-dejavu.xml
config.status: creating config/type-ghostscript.xml
config.status: creating config/type-windows.xml
config.status: creating config/type.xml
config.status: creating ImageMagick.spec
config.status: creating Magick++/bin/Magick++-config
config.status: creating magick/ImageMagick.pc
config.status: creating Magick++/lib/ImageMagick++.pc
config.status: creating Magick++/lib/Magick++.pc
config.status: creating magick/Magick-config
config.status: creating magick/MagickCore-config
config.status: creating magick/MagickCore.pc
config.status: creating magick/version.h
config.status: creating Makefile
config.status: creating magick.sh
config.status: creating PerlMagick/Magick.pm
config.status: creating PerlMagick/Makefile.PL
config.status: creating PerlMagick/check.sh
config.status: creating utilities/animate.1
config.status: creating utilities/compare.1
config.status: creating utilities/composite.1
config.status: creating utilities/conjure.1
config.status: creating utilities/convert.1
config.status: creating utilities/display.1
config.status: creating utilities/identify.1
config.status: creating utilities/ImageMagick.1
config.status: creating utilities/import.1
config.status: creating utilities/mogrify.1
config.status: creating utilities/montage.1
config.status: creating utilities/stream.1
config.status: creating wand/MagickWand-config
config.status: creating wand/MagickWand.pc
config.status: creating wand/Wand-config
config.status: creating wand/Wand.pc
config.status: creating config/config.h
config.status: executing magick/magick-config.h commands
config.status: creating magick/magick-config.h - prefix MAGICKCORE for config/config.h defines
config.status: executing depfiles commands
config.status: executing libtool commands
config.status: executing default commands
config.status: executing MagickCore-config.in commands
config.status: executing Magick-config.in commands
config.status: executing MagickWand-config.in commands
config.status: executing Wand-config.in commands
config.status: executing Magick++-config.in commands
config.status: executing PerlMagick/check.sh.in commands

ImageMagick is configured as follows. Please verify that this configuration
matches your expectations.

Host system type: x86_64-unknown-linux-gnu
Build system type: x86_64-unknown-linux-gnu

                  Option                        Value
-------------------------------------------------------------------------------
Shared libraries  --enable-shared=yes		yes
Static libraries  --enable-static=yes		yes
Module support    --with-modules=no		no
GNU ld            --with-gnu-ld=yes		yes
Quantum depth     --with-quantum-depth=16	16
High Dynamic Range Imagery
                  --enable-hdri=yes		yes

Delegate Configuration:
BZLIB             --with-bzlib=yes		no
Autotrace         --with-autotrace=no		no
Dejavu fonts      --with-dejavu-font-dir=default	none
DJVU              --with-djvu=yes		no
DPS               --with-dps=yes		no
FFTW              --with-fftw=yes		no
FlashPIX          --with-fpx=yes		no
FontConfig        --with-fontconfig=yes		yes
FreeType          --with-freetype=yes		yes
GhostPCL          None				pcl6 (unknown)
GhostXPS          None				gxps (unknown)
Ghostscript       None				gs (8.70)
Ghostscript fonts --with-gs-font-dir=default	/usr/share/ghostscript/fonts/
Ghostscript lib   --with-gslib=no		no
Graphviz          --with-gvc=yes		no
JBIG              --with-jbig=yes		no
JPEG v1           --with-jpeg=yes		yes
JPEG-2000         --with-jp2=yes		no
LCMS v1           --with-lcms=yes		yes
LCMS v2           --with-lcms2=yes		no
LQR               --with-lqr=yes		no
LZMA              --with-lzma=yes		no
Magick++          --with-magick-plus-plus=yes	yes
OpenEXR           --with-openexr=yes		no
PERL              --with-perl=no		no
PANGO             --with-pango=yes		no
PNG               --with-png=yes		yes
RSVG              --with-rsvg=yes		no
TIFF              --with-tiff=yes		yes
WEBP              --with-webp=yes		no
Windows fonts     --with-windows-font-dir=	none
WMF               --with-wmf=no		no
X11               --with-x=			yes
XML               --with-xml=yes		yes
ZLIB              --with-zlib=yes		yes

X11 Configuration:
      X_CFLAGS        = 
      X_PRE_LIBS      = -lSM -lICE
      X_LIBS          = 
      X_EXTRA_LIBS    = 

Options used to compile and link:
  PREFIX          = /usr/local
  EXEC-PREFIX     = /usr/local
  VERSION         = 6.7.6
  CC              = gcc -std=gnu99 -std=gnu99
  CFLAGS          = -fopenmp -g -O2 -Wall -pthread
  CPPFLAGS        = -I/usr/local/include/ImageMagick
  PCFLAGS         = -fopenmp
  DEFS            = -DHAVE_CONFIG_H
  LDFLAGS         = -L/usr/lib
  MAGICK_LDFLAGS  = -L/usr/local/lib -L/usr/lib
  LIBS            = -lMagickCore -llcms -ltiff -lfreetype -ljpeg -lpng12 -lfontconfig -lXext -lXt -lSM -lICE -lX11 -lxml2 -lz -lm -lgomp -lpthread -lltdl
  CXX             = g++
  CXXFLAGS        = -g -O2 -pthread
  FEATURES        = HDRI OpenMP 

make  all-am
make[1]: Entering directory `/usr/local/src/ImageMagick-6.7.6-8'
  CC     magick/magick_libMagickCore_la-accelerate.lo
  CC     magick/magick_libMagickCore_la-animate.lo
  CC     magick/magick_libMagickCore_la-annotate.lo
  CC     magick/magick_libMagickCore_la-artifact.lo
  CC     magick/magick_libMagickCore_la-attribute.lo
  CC     magick/magick_libMagickCore_la-blob.lo
  CC     magick/magick_libMagickCore_la-cache.lo
  CC     magick/magick_libMagickCore_la-cache-view.lo
  CC     magick/magick_libMagickCore_la-cipher.lo
  CC     magick/magick_libMagickCore_la-client.lo
  CC     magick/magick_libMagickCore_la-coder.lo
  CC     magick/magick_libMagickCore_la-color.lo
  CC     magick/magick_libMagickCore_la-colormap.lo
  CC     magick/magick_libMagickCore_la-colorspace.lo
  CC     magick/magick_libMagickCore_la-compare.lo
  CC     magick/magick_libMagickCore_la-composite.lo
  CC     magick/magick_libMagickCore_la-compress.lo
  CC     magick/magick_libMagickCore_la-configure.lo
  CC     magick/magick_libMagickCore_la-constitute.lo
  CC     magick/magick_libMagickCore_la-decorate.lo
  CC     magick/magick_libMagickCore_la-delegate.lo
  CC     magick/magick_libMagickCore_la-deprecate.lo
  CC     magick/magick_libMagickCore_la-display.lo
  CC     magick/magick_libMagickCore_la-distort.lo
  CC     magick/magick_libMagickCore_la-draw.lo
  CC     magick/magick_libMagickCore_la-effect.lo
  CC     magick/magick_libMagickCore_la-enhance.lo
  CC     magick/magick_libMagickCore_la-exception.lo
  CC     magick/magick_libMagickCore_la-feature.lo
  CC     magick/magick_libMagickCore_la-fourier.lo
  CC     magick/magick_libMagickCore_la-fx.lo
  CC     magick/magick_libMagickCore_la-gem.lo
  CC     magick/magick_libMagickCore_la-geometry.lo
  CC     magick/magick_libMagickCore_la-hashmap.lo
  CC     magick/magick_libMagickCore_la-histogram.lo
  CC     magick/magick_libMagickCore_la-identify.lo
  CC     magick/magick_libMagickCore_la-image.lo
  CC     magick/magick_libMagickCore_la-image-view.lo
  CC     magick/magick_libMagickCore_la-layer.lo
  CC     magick/magick_libMagickCore_la-list.lo
  CC     magick/magick_libMagickCore_la-locale.lo
  CC     magick/magick_libMagickCore_la-log.lo
  CC     magick/magick_libMagickCore_la-magic.lo
  CC     magick/magick_libMagickCore_la-magick.lo
  CC     magick/magick_libMagickCore_la-matrix.lo
  CC     magick/magick_libMagickCore_la-memory.lo
  CC     magick/magick_libMagickCore_la-mime.lo
  CC     magick/magick_libMagickCore_la-module.lo
  CC     magick/magick_libMagickCore_la-monitor.lo
  CC     magick/magick_libMagickCore_la-montage.lo
  CC     magick/magick_libMagickCore_la-morphology.lo
  CC     magick/magick_libMagickCore_la-option.lo
  CC     magick/magick_libMagickCore_la-paint.lo
  CC     magick/magick_libMagickCore_la-pixel.lo
  CC     magick/magick_libMagickCore_la-policy.lo
  CC     magick/magick_libMagickCore_la-PreRvIcccm.lo
  CC     magick/magick_libMagickCore_la-prepress.lo
  CC     magick/magick_libMagickCore_la-property.lo
  CC     magick/magick_libMagickCore_la-profile.lo
  CC     magick/magick_libMagickCore_la-quantize.lo
  CC     magick/magick_libMagickCore_la-quantum.lo
  CC     magick/magick_libMagickCore_la-quantum-export.lo
  CC     magick/magick_libMagickCore_la-quantum-import.lo
  CC     magick/magick_libMagickCore_la-random.lo
  CC     magick/magick_libMagickCore_la-registry.lo
  CC     magick/magick_libMagickCore_la-resample.lo
  CC     magick/magick_libMagickCore_la-resize.lo
  CC     magick/magick_libMagickCore_la-resource.lo
  CC     magick/magick_libMagickCore_la-segment.lo
  CC     magick/magick_libMagickCore_la-semaphore.lo
  CC     magick/magick_libMagickCore_la-shear.lo
  CC     magick/magick_libMagickCore_la-signature.lo
  CC     magick/magick_libMagickCore_la-splay-tree.lo
  CC     magick/magick_libMagickCore_la-static.lo
  CC     magick/magick_libMagickCore_la-statistic.lo
  CC     magick/magick_libMagickCore_la-stream.lo
  CC     magick/magick_libMagickCore_la-string.lo
  CC     magick/magick_libMagickCore_la-thread.lo
  CC     magick/magick_libMagickCore_la-timer.lo
  CC     magick/magick_libMagickCore_la-token.lo
  CC     magick/magick_libMagickCore_la-transform.lo
  CC     magick/magick_libMagickCore_la-threshold.lo
  CC     magick/magick_libMagickCore_la-type.lo
  CC     magick/magick_libMagickCore_la-utility.lo
  CC     magick/magick_libMagickCore_la-version.lo
  CC     magick/magick_libMagickCore_la-widget.lo
  CC     magick/magick_libMagickCore_la-xml-tree.lo
  CC     magick/magick_libMagickCore_la-xwindow.lo
  CC     coders/magick_libMagickCore_la-aai.lo
  CC     coders/magick_libMagickCore_la-art.lo
  CC     coders/magick_libMagickCore_la-avs.lo
  CC     coders/magick_libMagickCore_la-bgr.lo
  CC     coders/magick_libMagickCore_la-bmp.lo
  CC     coders/magick_libMagickCore_la-braille.lo
  CC     coders/magick_libMagickCore_la-cals.lo
  CC     coders/magick_libMagickCore_la-caption.lo
  CC     coders/magick_libMagickCore_la-cin.lo
  CC     coders/magick_libMagickCore_la-cip.lo
  CC     coders/magick_libMagickCore_la-clip.lo
  CC     coders/magick_libMagickCore_la-cmyk.lo
  CC     coders/magick_libMagickCore_la-cut.lo
  CC     coders/magick_libMagickCore_la-dcm.lo
  CC     coders/magick_libMagickCore_la-dds.lo
  CC     coders/magick_libMagickCore_la-debug.lo
  CC     coders/magick_libMagickCore_la-dib.lo
  CC     coders/magick_libMagickCore_la-dng.lo
  CC     coders/magick_libMagickCore_la-dot.lo
  CC     coders/magick_libMagickCore_la-dpx.lo
  CC     coders/magick_libMagickCore_la-fax.lo
  CC     coders/magick_libMagickCore_la-fd.lo
  CC     coders/magick_libMagickCore_la-fits.lo
  CC     coders/magick_libMagickCore_la-gif.lo
  CC     coders/magick_libMagickCore_la-gradient.lo
  CC     coders/magick_libMagickCore_la-gray.lo
  CC     coders/magick_libMagickCore_la-hald.lo
  CC     coders/magick_libMagickCore_la-hdr.lo
  CC     coders/magick_libMagickCore_la-histogram.lo
  CC     coders/magick_libMagickCore_la-hrz.lo
  CC     coders/magick_libMagickCore_la-html.lo
  CC     coders/magick_libMagickCore_la-icon.lo
  CC     coders/magick_libMagickCore_la-info.lo
  CC     coders/magick_libMagickCore_la-inline.lo
  CC     coders/magick_libMagickCore_la-ipl.lo
  CC     coders/magick_libMagickCore_la-label.lo
  CC     coders/magick_libMagickCore_la-mac.lo
  CC     coders/magick_libMagickCore_la-magick.lo
  CC     coders/magick_libMagickCore_la-map.lo
  CC     coders/magick_libMagickCore_la-mat.lo
  CC     coders/magick_libMagickCore_la-matte.lo
  CC     coders/magick_libMagickCore_la-meta.lo
  CC     coders/magick_libMagickCore_la-miff.lo
  CC     coders/magick_libMagickCore_la-mono.lo
  CC     coders/magick_libMagickCore_la-mpc.lo
  CC     coders/magick_libMagickCore_la-mpeg.lo
  CC     coders/magick_libMagickCore_la-mpr.lo
  CC     coders/magick_libMagickCore_la-msl.lo
  CC     coders/magick_libMagickCore_la-mtv.lo
  CC     coders/magick_libMagickCore_la-mvg.lo
  CC     coders/magick_libMagickCore_la-null.lo
  CC     coders/magick_libMagickCore_la-otb.lo
  CC     coders/magick_libMagickCore_la-palm.lo
  CC     coders/magick_libMagickCore_la-pango.lo
  CC     coders/magick_libMagickCore_la-pattern.lo
  CC     coders/magick_libMagickCore_la-pcd.lo
  CC     coders/magick_libMagickCore_la-pcl.lo
  CC     coders/magick_libMagickCore_la-pcx.lo
  CC     coders/magick_libMagickCore_la-pdb.lo
  CC     coders/magick_libMagickCore_la-pdf.lo
  CC     coders/magick_libMagickCore_la-pes.lo
  CC     coders/magick_libMagickCore_la-pict.lo
  CC     coders/magick_libMagickCore_la-pix.lo
  CC     coders/magick_libMagickCore_la-plasma.lo
  CC     coders/magick_libMagickCore_la-pnm.lo
  CC     coders/magick_libMagickCore_la-preview.lo
  CC     coders/magick_libMagickCore_la-ps.lo
  CC     coders/magick_libMagickCore_la-ps2.lo
  CC     coders/magick_libMagickCore_la-ps3.lo
  CC     coders/magick_libMagickCore_la-psd.lo
  CC     coders/magick_libMagickCore_la-pwp.lo
  CC     coders/magick_libMagickCore_la-raw.lo
  CC     coders/magick_libMagickCore_la-rgb.lo
  CC     coders/magick_libMagickCore_la-rla.lo
  CC     coders/magick_libMagickCore_la-rle.lo
  CC     coders/magick_libMagickCore_la-scr.lo
  CC     coders/magick_libMagickCore_la-sct.lo
  CC     coders/magick_libMagickCore_la-sfw.lo
  CC     coders/magick_libMagickCore_la-sgi.lo
  CC     coders/magick_libMagickCore_la-stegano.lo
  CC     coders/magick_libMagickCore_la-sun.lo
  CC     coders/magick_libMagickCore_la-svg.lo
  CC     coders/magick_libMagickCore_la-tga.lo
  CC     coders/magick_libMagickCore_la-thumbnail.lo
  CC     coders/magick_libMagickCore_la-tile.lo
  CC     coders/magick_libMagickCore_la-tim.lo
  CC     coders/magick_libMagickCore_la-ttf.lo
  CC     coders/magick_libMagickCore_la-txt.lo
  CC     coders/magick_libMagickCore_la-uil.lo
  CC     coders/magick_libMagickCore_la-url.lo
  CC     coders/magick_libMagickCore_la-uyvy.lo
  CC     coders/magick_libMagickCore_la-vicar.lo
  CC     coders/magick_libMagickCore_la-vid.lo
  CC     coders/magick_libMagickCore_la-viff.lo
  CC     coders/magick_libMagickCore_la-wbmp.lo
  CC     coders/magick_libMagickCore_la-wpg.lo
  CC     coders/magick_libMagickCore_la-xbm.lo
  CC     coders/magick_libMagickCore_la-xc.lo
  CC     coders/magick_libMagickCore_la-xcf.lo
  CC     coders/magick_libMagickCore_la-xpm.lo
  CC     coders/magick_libMagickCore_la-xps.lo
  CC     coders/magick_libMagickCore_la-ycbcr.lo
  CC     coders/magick_libMagickCore_la-yuv.lo
  CC     coders/magick_libMagickCore_la-jpeg.lo
  CC     coders/magick_libMagickCore_la-png.lo
  CC     coders/magick_libMagickCore_la-ept.lo
  CC     coders/magick_libMagickCore_la-tiff.lo
  CC     coders/magick_libMagickCore_la-x.lo
  CC     coders/magick_libMagickCore_la-xwd.lo
  CC     filters/magick_libMagickCore_la-analyze.lo
  CCLD   magick/libMagickCore.la
copying selected object files to avoid basename conflicts...
  CC     wand/wand_libMagickWand_la-animate.lo
  CC     wand/wand_libMagickWand_la-compare.lo
  CC     wand/wand_libMagickWand_la-composite.lo
  CC     wand/wand_libMagickWand_la-conjure.lo
  CC     wand/wand_libMagickWand_la-convert.lo
  CC     wand/wand_libMagickWand_la-deprecate.lo
  CC     wand/wand_libMagickWand_la-display.lo
  CC     wand/wand_libMagickWand_la-drawing-wand.lo
  CC     wand/wand_libMagickWand_la-identify.lo
  CC     wand/wand_libMagickWand_la-import.lo
  CC     wand/wand_libMagickWand_la-magick-image.lo
  CC     wand/wand_libMagickWand_la-magick-property.lo
  CC     wand/wand_libMagickWand_la-magick-wand.lo
  CC     wand/wand_libMagickWand_la-mogrify.lo
  CC     wand/wand_libMagickWand_la-montage.lo
  CC     wand/wand_libMagickWand_la-pixel-iterator.lo
  CC     wand/wand_libMagickWand_la-pixel-wand.lo
  CC     wand/wand_libMagickWand_la-stream.lo
  CC     wand/wand_libMagickWand_la-wand.lo
  CC     wand/wand_libMagickWand_la-wand-view.lo
  CCLD   wand/libMagickWand.la
  CXX    Magick++/lib/Blob.lo
  CXX    Magick++/lib/BlobRef.lo
  CXX    Magick++/lib/CoderInfo.lo
  CXX    Magick++/lib/Color.lo
  CXX    Magick++/lib/Drawable.lo
  CXX    Magick++/lib/Exception.lo
  CXX    Magick++/lib/Functions.lo
  CXX    Magick++/lib/Geometry.lo
  CXX    Magick++/lib/Image.lo
  CXX    Magick++/lib/ImageRef.lo
  CXX    Magick++/lib/Montage.lo
  CXX    Magick++/lib/Options.lo
  CXX    Magick++/lib/Pixels.lo
  CXX    Magick++/lib/STL.lo
  CXX    Magick++/lib/Thread.lo
  CXX    Magick++/lib/TypeMetric.lo
  CXXLD  Magick++/lib/libMagick++.la
  CC     ltdl/loaders/dlopen.lo
  CCLD   ltdl/dlopen.la
  CC     ltdl/loaders/ltdl_libltdlc_la-preopen.lo
  CC     ltdl/ltdl_libltdlc_la-lt__alloc.lo
  CC     ltdl/ltdl_libltdlc_la-lt_dlloader.lo
  CC     ltdl/ltdl_libltdlc_la-lt_error.lo
  CC     ltdl/ltdl_libltdlc_la-ltdl.lo
  CC     ltdl/ltdl_libltdlc_la-slist.lo
  CC     ltdl/lt__strl.lo
  CCLD   ltdl/libltdlc.la
  CC     utilities/animate.o
  CCLD   utilities/animate
  CC     utilities/compare.o
  CCLD   utilities/compare
  CC     utilities/composite.o
  CCLD   utilities/composite
  CC     utilities/conjure.o
  CCLD   utilities/conjure
  CC     utilities/convert.o
  CCLD   utilities/convert
  CC     utilities/display.o
  CCLD   utilities/display
  CC     utilities/identify.o
  CCLD   utilities/identify
  CC     utilities/import.o
  CCLD   utilities/import
  CC     utilities/mogrify.o
  CCLD   utilities/mogrify
  CC     utilities/montage.o
  CCLD   utilities/montage
  CC     utilities/stream.o
  CCLD   utilities/stream
make[1]: Leaving directory `/usr/local/src/ImageMagick-6.7.6-8'
make  install-am
make[1]: Entering directory `/usr/local/src/ImageMagick-6.7.6-8'
make[2]: Entering directory `/usr/local/src/ImageMagick-6.7.6-8'
test -z "/usr/local/lib" || /bin/mkdir -p "/usr/local/lib"
 /bin/sh ./libtool   --mode=install /usr/bin/install -c   magick/libMagickCore.la wand/libMagickWand.la Magick++/lib/libMagick++.la '/usr/local/lib'
libtool: install: /usr/bin/install -c magick/.libs/libMagickCore.so.5.0.0 /usr/local/lib/libMagickCore.so.5.0.0
libtool: install: (cd /usr/local/lib && { ln -s -f libMagickCore.so.5.0.0 libMagickCore.so.5 || { rm -f libMagickCore.so.5 && ln -s libMagickCore.so.5.0.0 libMagickCore.so.5; }; })
libtool: install: (cd /usr/local/lib && { ln -s -f libMagickCore.so.5.0.0 libMagickCore.so || { rm -f libMagickCore.so && ln -s libMagickCore.so.5.0.0 libMagickCore.so; }; })
libtool: install: /usr/bin/install -c magick/.libs/libMagickCore.lai /usr/local/lib/libMagickCore.la
libtool: install: (cd /usr/local/src/ImageMagick-6.7.6-8; /bin/sh /usr/local/src/ImageMagick-6.7.6-8/libtool  --silent --tag CC --mode=relink gcc -std=gnu99 -std=gnu99 -fopenmp -g -O2 -Wall -pthread -no-undefined -export-symbols-regex ".*" -version-info 5:0:0 -L/usr/lib -o wand/libMagickWand.la -rpath /usr/local/lib wand/wand_libMagickWand_la-animate.lo wand/wand_libMagickWand_la-compare.lo wand/wand_libMagickWand_la-composite.lo wand/wand_libMagickWand_la-conjure.lo wand/wand_libMagickWand_la-convert.lo wand/wand_libMagickWand_la-deprecate.lo wand/wand_libMagickWand_la-display.lo wand/wand_libMagickWand_la-drawing-wand.lo wand/wand_libMagickWand_la-identify.lo wand/wand_libMagickWand_la-import.lo wand/wand_libMagickWand_la-magick-image.lo wand/wand_libMagickWand_la-magick-property.lo wand/wand_libMagickWand_la-magick-wand.lo wand/wand_libMagickWand_la-mogrify.lo wand/wand_libMagickWand_la-montage.lo wand/wand_libMagickWand_la-pixel-iterator.lo wand/wand_libMagickWand_la-pixel-wand.lo wand/wand_libMagickWand_la-stream.lo wand/wand_libMagickWand_la-wand.lo wand/wand_libMagickWand_la-wand-view.lo magick/libMagickCore.la -lSM -lICE -lX11 -lgomp -lm )
libtool: install: /usr/bin/install -c wand/.libs/libMagickWand.so.5.0.0T /usr/local/lib/libMagickWand.so.5.0.0
libtool: install: (cd /usr/local/lib && { ln -s -f libMagickWand.so.5.0.0 libMagickWand.so.5 || { rm -f libMagickWand.so.5 && ln -s libMagickWand.so.5.0.0 libMagickWand.so.5; }; })
libtool: install: (cd /usr/local/lib && { ln -s -f libMagickWand.so.5.0.0 libMagickWand.so || { rm -f libMagickWand.so && ln -s libMagickWand.so.5.0.0 libMagickWand.so; }; })
libtool: install: /usr/bin/install -c wand/.libs/libMagickWand.lai /usr/local/lib/libMagickWand.la
libtool: install: (cd /usr/local/src/ImageMagick-6.7.6-8; /bin/sh /usr/local/src/ImageMagick-6.7.6-8/libtool  --silent --tag CXX --mode=relink g++ -g -O2 -pthread -no-undefined -version-info 5:0:0 -L/usr/lib -o Magick++/lib/libMagick++.la -rpath /usr/local/lib Magick++/lib/Blob.lo Magick++/lib/BlobRef.lo Magick++/lib/CoderInfo.lo Magick++/lib/Color.lo Magick++/lib/Drawable.lo Magick++/lib/Exception.lo Magick++/lib/Functions.lo Magick++/lib/Geometry.lo Magick++/lib/Image.lo Magick++/lib/ImageRef.lo Magick++/lib/Montage.lo Magick++/lib/Options.lo Magick++/lib/Pixels.lo Magick++/lib/STL.lo Magick++/lib/Thread.lo Magick++/lib/TypeMetric.lo magick/libMagickCore.la wand/libMagickWand.la )
libtool: install: /usr/bin/install -c Magick++/lib/.libs/libMagick++.so.5.0.0T /usr/local/lib/libMagick++.so.5.0.0
libtool: install: (cd /usr/local/lib && { ln -s -f libMagick++.so.5.0.0 libMagick++.so.5 || { rm -f libMagick++.so.5 && ln -s libMagick++.so.5.0.0 libMagick++.so.5; }; })
libtool: install: (cd /usr/local/lib && { ln -s -f libMagick++.so.5.0.0 libMagick++.so || { rm -f libMagick++.so && ln -s libMagick++.so.5.0.0 libMagick++.so; }; })
libtool: install: /usr/bin/install -c Magick++/lib/.libs/libMagick++.lai /usr/local/lib/libMagick++.la
libtool: install: /usr/bin/install -c magick/.libs/libMagickCore.a /usr/local/lib/libMagickCore.a
libtool: install: chmod 644 /usr/local/lib/libMagickCore.a
libtool: install: ranlib /usr/local/lib/libMagickCore.a
libtool: install: /usr/bin/install -c wand/.libs/libMagickWand.a /usr/local/lib/libMagickWand.a
libtool: install: chmod 644 /usr/local/lib/libMagickWand.a
libtool: install: ranlib /usr/local/lib/libMagickWand.a
libtool: install: /usr/bin/install -c Magick++/lib/.libs/libMagick++.a /usr/local/lib/libMagick++.a
libtool: install: chmod 644 /usr/local/lib/libMagick++.a
libtool: install: ranlib /usr/local/lib/libMagick++.a
libtool: finish: PATH="/usr/bin:/bin:/usr/sbin:/sbin:/sbin" ldconfig -n /usr/local/lib
----------------------------------------------------------------------
Libraries have been installed in:
   /usr/local/lib

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR'
flag during linking and do at least one of the following:
   - add LIBDIR to the `LD_LIBRARY_PATH' environment variable
     during execution
   - add LIBDIR to the `LD_RUN_PATH' environment variable
     during linking
   - use the `-Wl,-rpath -Wl,LIBDIR' linker flag
   - have your system administrator add LIBDIR to `/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
test -z "/usr/local/bin" || /bin/mkdir -p "/usr/local/bin"
  /bin/sh ./libtool   --mode=install /usr/bin/install -c utilities/animate utilities/compare utilities/composite utilities/conjure utilities/convert utilities/display utilities/identify utilities/import utilities/mogrify utilities/montage utilities/stream '/usr/local/bin'
libtool: install: /usr/bin/install -c utilities/.libs/animate /usr/local/bin/animate
libtool: install: /usr/bin/install -c utilities/.libs/compare /usr/local/bin/compare
libtool: install: /usr/bin/install -c utilities/.libs/composite /usr/local/bin/composite
libtool: install: /usr/bin/install -c utilities/.libs/conjure /usr/local/bin/conjure
libtool: install: /usr/bin/install -c utilities/.libs/convert /usr/local/bin/convert
libtool: install: /usr/bin/install -c utilities/.libs/display /usr/local/bin/display
libtool: install: /usr/bin/install -c utilities/.libs/identify /usr/local/bin/identify
libtool: install: /usr/bin/install -c utilities/.libs/import /usr/local/bin/import
libtool: install: /usr/bin/install -c utilities/.libs/mogrify /usr/local/bin/mogrify
libtool: install: /usr/bin/install -c utilities/.libs/montage /usr/local/bin/montage
libtool: install: /usr/bin/install -c utilities/.libs/stream /usr/local/bin/stream
test -z "/usr/local/bin" || /bin/mkdir -p "/usr/local/bin"
 /usr/bin/install -c magick/Magick-config magick/MagickCore-config wand/Wand-config wand/MagickWand-config Magick++/bin/Magick++-config '/usr/local/bin'
test -z "/usr/local/lib/ImageMagick-6.7.6/modules-Q16/coders" || /bin/mkdir -p "/usr/local/lib/ImageMagick-6.7.6/modules-Q16/coders"
test -z "/usr/local/etc/ImageMagick/" || /bin/mkdir -p "/usr/local/etc/ImageMagick/"
 /usr/bin/install -c -m 644 config/coder.xml config/colors.xml config/delegates.xml config/log.xml config/magic.xml config/mime.xml config/policy.xml config/quantization-table.xml config/sRGB.icc config/thresholds.xml config/type.xml config/type-dejavu.xml config/type-ghostscript.xml config/type-windows.xml '/usr/local/etc/ImageMagick/'
test -z "/usr/local/share/ImageMagick-6.7.6" || /bin/mkdir -p "/usr/local/share/ImageMagick-6.7.6"
 /usr/bin/install -c -m 644 config/english.xml config/francais.xml config/locale.xml '/usr/local/share/ImageMagick-6.7.6'
test -z "/usr/local/lib/ImageMagick-6.7.6/config" || /bin/mkdir -p "/usr/local/lib/ImageMagick-6.7.6/config"
 /usr/bin/install -c -m 644 config/configure.xml '/usr/local/lib/ImageMagick-6.7.6/config'
/bin/sh ./config/mkinstalldirs /usr/local/include/ImageMagick/magick
/usr/bin/install -c -m 644 magick/magick-config.h /usr/local/include/ImageMagick/magick/magick-config.h
/bin/sh ./config/mkinstalldirs /usr/local/share/doc/ImageMagick-6.7.6
/usr/bin/install -c -m 644 ./index.html /usr/local/share/doc/ImageMagick-6.7.6
/usr/bin/install -c -m 644 ./images/affine.png /usr/local/share/doc/ImageMagick-6.7.6/images
/usr/bin/install -c -m 644 ./images/arc.png /usr/local/share/doc/ImageMagick-6.7.6/images
/usr/bin/install -c -m 644 ./images/background.jpg /usr/local/share/doc/ImageMagick-6.7.6/images
/usr/bin/install -c -m 644 ./images/black.png /usr/local/share/doc/ImageMagick-6.7.6/images
/usr/bin/install -c -m 644 ./images/bluebells_clipped.jpg /usr/local/share/doc/ImageMagick-6.7.6/images
/usr/bin/install -c -m 644 ./images/bluebells_darker.jpg /usr/local/share/doc/ImageMagick-6.7.6/images
/usr/bin/install -c -m 644 ./images/bluebells_lin.jpg /usr/local/share/doc/ImageMagick-6.7.6/images
/usr/bin/install -c -m 644 ./images/bluebells_log.jpg /usr/local/share/doc/ImageMagick-6.7.6/images
/usr/bin/install -c -m 644 ./images/button.gif /usr/local/share/doc/ImageMagick-6.7.6/images
/usr/bin/install -c -m 644 ./images/configure.jpg /usr/local/share/doc/ImageMagick-6.7.6/images
/usr/bin/install -c -m 644 ./images/cylinder_shaded.png /usr/local/share/doc/ImageMagick-6.7.6/images
/usr/bin/install -c -m 644 ./images/definitive-guide.png /usr/local/share/doc/ImageMagick-6.7.6/images
/usr/bin/install -c -m 644 ./images/difference.png /usr/local/share/doc/ImageMagick-6.7.6/images
/usr/bin/install -c -m 644 ./images/donate.png /usr/local/share/doc/ImageMagick-6.7.6/images
/usr/bin/install -c -m 644 ./images/examples.jpg /usr/local/share/doc/ImageMagick-6.7.6/images
/usr/bin/install -c -m 644 ./images/frame.jpg /usr/local/share/doc/ImageMagick-6.7.6/images
/usr/bin/install -c -m 644 ./images/fuzzy-magick.png /usr/local/share/doc/ImageMagick-6.7.6/images
/usr/bin/install -c -m 644 ./images/gaussian-blur.png /usr/local/share/doc/ImageMagick-6.7.6/images
/usr/bin/install -c -m 644 ./images/granite.png /usr/local/share/doc/ImageMagick-6.7.6/images
/usr/bin/install -c -m 644 ./images/imade_art2.jpg /usr/local/share/doc/ImageMagick-6.7.6/images
/usr/bin/install -c -m 644 ./images/label.gif /usr/local/share/doc/ImageMagick-6.7.6/images
/usr/bin/install -c -m 644 ./images/logo.jpg /usr/local/share/doc/ImageMagick-6.7.6/images
/usr/bin/install -c -m 644 ./images/logo.png /usr/local/share/doc/ImageMagick-6.7.6/images
/usr/bin/install -c -m 644 ./images/logo-sm-flop.png /usr/local/share/doc/ImageMagick-6.7.6/images
/usr/bin/install -c -m 644 ./images/logo-sm-fx.png /usr/local/share/doc/ImageMagick-6.7.6/images
/usr/bin/install -c -m 644 ./images/logo-sm.png /usr/local/share/doc/ImageMagick-6.7.6/images
/usr/bin/install -c -m 644 ./images/montage.jpg /usr/local/share/doc/ImageMagick-6.7.6/images
/usr/bin/install -c -m 644 ./images/navy.png /usr/local/share/doc/ImageMagick-6.7.6/images
/usr/bin/install -c -m 644 ./images/networkredux.png /usr/local/share/doc/ImageMagick-6.7.6/images
/usr/bin/install -c -m 644 ./images/piechart.png /usr/local/share/doc/ImageMagick-6.7.6/images
/usr/bin/install -c -m 644 ./images/project-support.jpg /usr/local/share/doc/ImageMagick-6.7.6/images
/usr/bin/install -c -m 644 ./images/radial-gradient.png /usr/local/share/doc/ImageMagick-6.7.6/images
/usr/bin/install -c -m 644 ./images/reconstruct.jpg /usr/local/share/doc/ImageMagick-6.7.6/images
/usr/bin/install -c -m 644 ./images/red-ball.png /usr/local/share/doc/ImageMagick-6.7.6/images
/usr/bin/install -c -m 644 ./images/red-circle.png /usr/local/share/doc/ImageMagick-6.7.6/images
/usr/bin/install -c -m 644 ./images/right.gif /usr/local/share/doc/ImageMagick-6.7.6/images
/usr/bin/install -c -m 644 ./images/rose.jpg /usr/local/share/doc/ImageMagick-6.7.6/images
/usr/bin/install -c -m 644 ./images/rose-over.png /usr/local/share/doc/ImageMagick-6.7.6/images
/usr/bin/install -c -m 644 ./images/rose.png /usr/local/share/doc/ImageMagick-6.7.6/images
/usr/bin/install -c -m 644 ./images/rose.pnm /usr/local/share/doc/ImageMagick-6.7.6/images
/usr/bin/install -c -m 644 ./images/rose-sigmoidal.png /usr/local/share/doc/ImageMagick-6.7.6/images
/usr/bin/install -c -m 644 ./images/script.png /usr/local/share/doc/ImageMagick-6.7.6/images
/usr/bin/install -c -m 644 ./images/smile.gif /usr/local/share/doc/ImageMagick-6.7.6/images
/usr/bin/install -c -m 644 ./images/sponsor.jpg /usr/local/share/doc/ImageMagick-6.7.6/images
/usr/bin/install -c -m 644 ./images/sprite.jpg /usr/local/share/doc/ImageMagick-6.7.6/images
/usr/bin/install -c -m 644 ./images/tricks.png /usr/local/share/doc/ImageMagick-6.7.6/images
/usr/bin/install -c -m 644 ./images/t-shirt.png /usr/local/share/doc/ImageMagick-6.7.6/images
/usr/bin/install -c -m 644 ./images/wand.ico /usr/local/share/doc/ImageMagick-6.7.6/images
/usr/bin/install -c -m 644 ./images/wand.png /usr/local/share/doc/ImageMagick-6.7.6/images
/usr/bin/install -c -m 644 ./images/white-highlight.png /usr/local/share/doc/ImageMagick-6.7.6/images
/usr/bin/install -c -m 644 ./images/wizard.jpg /usr/local/share/doc/ImageMagick-6.7.6/images
/usr/bin/install -c -m 644 ./images/wizard.png /usr/local/share/doc/ImageMagick-6.7.6/images
/usr/bin/install -c -m 644 ./images/patterns/bricks.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/checkerboard.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/circles.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/crosshatch30.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/crosshatch45.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/crosshatch.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/fishscales.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/gray0.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/gray100.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/gray10.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/gray15.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/gray20.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/gray25.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/gray30.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/gray35.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/gray40.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/gray45.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/gray50.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/gray55.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/gray5.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/gray60.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/gray65.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/gray70.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/gray75.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/gray80.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/gray85.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/gray90.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/gray95.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/hexagons.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/horizontal2.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/horizontal3.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/horizontal.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/horizontalsaw.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/hs_bdiagonal.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/hs_cross.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/hs_diagcross.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/hs_fdiagonal.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/hs_horizontal.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/hs_vertical.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/left30.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/left45.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/leftshingle.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/octagons.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/right30.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/right45.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/rightshingle.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/smallfishscales.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/vertical2.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/vertical3.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/verticalbricks.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/verticalleftshingle.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/vertical.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/verticalrightshingle.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/verticalsaw.png /usr/local/share/doc/ImageMagick-6.7.6/images/patterns
/usr/bin/install -c -m 644 ./www/advanced-unix-installation.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/advanced-windows-installation.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/animate.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/api.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/architecture.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/binary-releases.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/changelog.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/cipher.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/color.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/command-line-options.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/command-line-processing.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/command-line-tools.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/compare.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/compose.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/composite.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/conjure.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/contact.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/convert.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/display.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/download.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/escape.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/examples.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/exception.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/export.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/favicon.ico /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/formats.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/fx.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/high-dynamic-range.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/history.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/identify.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/ImageMagickObject.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/import.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/index.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/install-source.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/jp2.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/license.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/links.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/magick-core.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/magick.css /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/magick++.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/magick-vector-graphics.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/magick-wand.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/miff.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/mirrors.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/mogrify.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/montage.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/motion-picture.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/parallel.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/perl-magick.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/porting.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/quantize.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/resources.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/search.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/sitemap.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/sponsors.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/stream.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/subversion.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/t-shirt.html /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/wand.png /usr/local/share/doc/ImageMagick-6.7.6/www
/usr/bin/install -c -m 644 ./www/api/animate.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/annotate.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/attribute.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/blob.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/cache.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/cache-view.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/cipher.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/color.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/colormap.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/colorspace.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/compare.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/composite.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/constitute.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/decorate.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/deprecate.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/display.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/distort.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/draw.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/drawing-wand.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/effect.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/enhance.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/exception.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/feature.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/fourier.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/fx.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/histogram.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/image.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/image-view.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/layer.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/list.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/magick-deprecate.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/magick.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/magick-image.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/magick-property.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/magick-wand.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/memory.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/module.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/mogrify.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/monitor.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/montage.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/morphology.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/paint.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/pixel-iterator.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/pixel-view.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/pixel-wand.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/profile.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/property.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/quantize.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/registry.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/resize.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/resource.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/segment.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/shear.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/signature.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/statistic.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/stream.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/transform.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/version.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/api/wand-view.html /usr/local/share/doc/ImageMagick-6.7.6/www/api
/usr/bin/install -c -m 644 ./www/source/analyze.c /usr/local/share/doc/ImageMagick-6.7.6/www/source
/usr/bin/install -c -m 644 ./www/source/coder.xml /usr/local/share/doc/ImageMagick-6.7.6/www/source
/usr/bin/install -c -m 644 ./www/source/colors.xml /usr/local/share/doc/ImageMagick-6.7.6/www/source
/usr/bin/install -c -m 644 ./www/source/configure.xml /usr/local/share/doc/ImageMagick-6.7.6/www/source
/usr/bin/install -c -m 644 ./www/source/contrast.c /usr/local/share/doc/ImageMagick-6.7.6/www/source
/usr/bin/install -c -m 644 ./www/source/core.c /usr/local/share/doc/ImageMagick-6.7.6/www/source
/usr/bin/install -c -m 644 ./www/source/delegates.xml /usr/local/share/doc/ImageMagick-6.7.6/www/source
/usr/bin/install -c -m 644 ./www/source/english.xml /usr/local/share/doc/ImageMagick-6.7.6/www/source
/usr/bin/install -c -m 644 ./www/source/examples.pl /usr/local/share/doc/ImageMagick-6.7.6/www/source
/usr/bin/install -c -m 644 ./www/source/francais.xml /usr/local/share/doc/ImageMagick-6.7.6/www/source
/usr/bin/install -c -m 644 ./www/source/incantation.msl /usr/local/share/doc/ImageMagick-6.7.6/www/source
/usr/bin/install -c -m 644 ./www/source/locale.xml /usr/local/share/doc/ImageMagick-6.7.6/www/source
/usr/bin/install -c -m 644 ./www/source/log.xml /usr/local/share/doc/ImageMagick-6.7.6/www/source
/usr/bin/install -c -m 644 ./www/source/magic.xml /usr/local/share/doc/ImageMagick-6.7.6/www/source
/usr/bin/install -c -m 644 ./www/source/mgk.c /usr/local/share/doc/ImageMagick-6.7.6/www/source
/usr/bin/install -c -m 644 ./www/source/mime.xml /usr/local/share/doc/ImageMagick-6.7.6/www/source
/usr/bin/install -c -m 644 ./www/source/piechart.mvg /usr/local/share/doc/ImageMagick-6.7.6/www/source
/usr/bin/install -c -m 644 ./www/source/piechart.svg /usr/local/share/doc/ImageMagick-6.7.6/www/source
/usr/bin/install -c -m 644 ./www/source/policy.xml /usr/local/share/doc/ImageMagick-6.7.6/www/source
/usr/bin/install -c -m 644 ./www/source/thresholds.xml /usr/local/share/doc/ImageMagick-6.7.6/www/source
/usr/bin/install -c -m 644 ./www/source/type-ghostscript.xml /usr/local/share/doc/ImageMagick-6.7.6/www/source
/usr/bin/install -c -m 644 ./www/source/type-windows.xml /usr/local/share/doc/ImageMagick-6.7.6/www/source
/usr/bin/install -c -m 644 ./www/source/type.xml /usr/local/share/doc/ImageMagick-6.7.6/www/source
/usr/bin/install -c -m 644 ./www/source/wand.c /usr/local/share/doc/ImageMagick-6.7.6/www/source
/usr/bin/install -c -m 644 ./www/api/MagickCore/animate_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/animate_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/animate_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/animate-private_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/animate-private_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/annotate_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/annotate_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/annotate_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/annotated.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/api_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/api_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/artifact_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/artifact_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/artifact_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/blob_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/blob_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/blob_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/blob-private_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/blob-private_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/cache_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/cache_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/cache_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/cache-private_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/cache-private_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/cache-view_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/cache-view_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/cache-view_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/classes.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/client_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/client_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/client_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/coder_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/coder_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/coder_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/color_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/color_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/color_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/color-private_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/color-private_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/colorspace_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/colorspace_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/colorspace_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/colorspace-private_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/colorspace-private_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/compare_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/compare_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/compare_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/composite_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/composite_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/composite_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/composite-private_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/composite-private_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/compress_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/compress_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/compress_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/configure_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/configure_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/configure_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/constitute_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/constitute_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/constitute_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/decorate_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/decorate_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/decorate_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/delegate_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/delegate_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/delegate_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/deprecate_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/deprecate_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/deprecate_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/dir_b44b349db36f8365f5234e57d3038770.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/dirs.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/display_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/display_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/display_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/display-private_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/display-private_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/distort_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/distort_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/distort_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/doxygen.css /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/doxygen.png /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/draw_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/draw_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/draw_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/draw-private_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/draw-private_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/effect_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/effect_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/effect_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/enhance_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/enhance_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/enhance_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/exception_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/exception_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/exception_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/exception-private_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/exception-private_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/files.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/ftv2blank.png /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/ftv2doc.png /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/ftv2folderclosed.png /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/ftv2folderopen.png /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/ftv2lastnode.png /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/ftv2link.png /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/ftv2mlastnode.png /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/ftv2mnode.png /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/ftv2node.png /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/ftv2plastnode.png /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/ftv2pnode.png /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/ftv2vertline.png /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/functions_0x61.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/functions_0x62.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/functions_0x63.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/functions_0x64.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/functions_0x65.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/functions_0x66.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/functions_0x67.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/functions_0x68.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/functions_0x69.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/functions_0x6b.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/functions_0x6c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/functions_0x6d.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/functions_0x6e.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/functions_0x6f.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/functions_0x70.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/functions_0x71.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/functions_0x72.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/functions_0x73.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/functions_0x74.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/functions_0x75.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/functions_0x76.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/functions_0x77.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/functions_0x78.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/functions_0x79.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/functions_0x7a.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/functions_func.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/functions.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/functions_vars_0x61.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/functions_vars_0x62.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/functions_vars_0x63.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/functions_vars_0x64.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/functions_vars_0x65.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/functions_vars_0x66.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/functions_vars_0x67.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/functions_vars_0x68.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/functions_vars_0x69.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/functions_vars_0x6b.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/functions_vars_0x6c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/functions_vars_0x6d.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/functions_vars_0x6e.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/functions_vars_0x6f.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/functions_vars_0x70.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/functions_vars_0x71.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/functions_vars_0x72.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/functions_vars_0x73.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/functions_vars_0x74.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/functions_vars_0x75.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/functions_vars_0x76.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/functions_vars_0x77.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/functions_vars_0x78.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/functions_vars_0x79.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/functions_vars_0x7a.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/functions_vars.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/fx_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/fx_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/fx_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/fx-private_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/fx-private_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/gem_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/gem_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/gem_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/geometry_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/geometry_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/geometry_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_0x61.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_0x62.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_0x63.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_0x64.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_0x65.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_0x66.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_0x67.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_0x68.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_0x69.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_0x6a.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_0x6b.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_0x6c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_0x6d.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_0x6e.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_0x6f.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_0x70.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_0x71.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_0x72.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_0x73.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_0x74.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_0x75.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_0x76.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_0x77.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_0x78.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_0x79.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_0x7a.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_defs_0x61.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_defs_0x62.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_defs_0x63.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_defs_0x64.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_defs_0x65.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_defs_0x66.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_defs_0x67.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_defs_0x68.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_defs_0x69.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_defs_0x6b.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_defs_0x6c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_defs_0x6d.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_defs_0x6e.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_defs_0x6f.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_defs_0x70.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_defs_0x71.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_defs_0x72.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_defs_0x73.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_defs_0x74.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_defs_0x75.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_defs_0x76.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_defs_0x77.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_defs_0x78.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_defs_0x79.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_defs.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_enum.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_eval_0x62.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_eval_0x63.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_eval_0x64.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_eval_0x65.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_eval_0x66.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_eval_0x67.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_eval_0x68.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_eval_0x69.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_eval_0x6a.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_eval_0x6b.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_eval_0x6c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_eval_0x6d.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_eval_0x6e.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_eval_0x6f.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_eval_0x70.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_eval_0x71.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_eval_0x72.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_eval_0x73.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_eval_0x74.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_eval_0x75.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_eval_0x76.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_eval_0x77.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_eval_0x78.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_eval_0x79.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_eval_0x7a.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_eval.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_func_0x62.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_func_0x63.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_func_0x64.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_func_0x65.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_func_0x66.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_func_0x67.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_func_0x68.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_func_0x69.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_func_0x6a.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_func_0x6b.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_func_0x6c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_func_0x6d.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_func_0x6e.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_func_0x6f.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_func_0x70.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_func_0x71.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_func_0x72.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_func_0x73.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_func_0x74.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_func_0x75.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_func_0x76.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_func_0x77.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_func_0x78.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_func_0x79.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_func_0x7a.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_func.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_type.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/globals_vars.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/hashmap_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/hashmap_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/hashmap_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/identify_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/identify_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/identify_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/image_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/image_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/image_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/ImageMagick_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/ImageMagick_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/image-private_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/image-private_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/index.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/layer_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/layer_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/layer_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/list_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/list_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/list_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/locale_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/locale___8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/locale___8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/log_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/log_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/log_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/mac_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/mac_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/mac_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/magic_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/magic_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/magic_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/magick_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/magick_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/magick_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/magick-config_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/magick-config_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/MagickCore_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/MagickCore_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/magick-type_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/magick-type_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/main.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/matrix_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/matrix_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/matrix_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/memory_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/memory___8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/memory___8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/methods_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/methods_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/mime_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/mime_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/mime_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/mime-private_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/mime-private_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/module_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/module_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/module_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/monitor_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/monitor_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/monitor_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/montage_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/montage_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/montage_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/nt-base_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/nt-base_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/nt-base_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/nt-feature_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/nt-feature_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/nt-feature_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/option_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/option_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/option_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/paint_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/paint_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/paint_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/pixel_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/pixel_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/pixel_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/pixel-private_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/pixel-private_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/prepress_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/prepress_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/prepress_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/PreRvIcccm_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/PreRvIcccm_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/PreRvIcccm_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/profile_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/profile_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/profile_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/property_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/property_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/property_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/quantize_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/quantize_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/quantize_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/quantum_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/quantum_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/quantum_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/quantum-private_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/quantum-private_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/random_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/random___8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/random___8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/registry_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/registry_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/registry_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/resample_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/resample_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/resample_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/resize_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/resize_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/resize_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/resize-private_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/resize-private_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/resource_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/resource___8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/resource___8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/segment_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/segment_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/segment_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/semaphore_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/semaphore_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/semaphore_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/shear_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/shear_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/shear_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/signature_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/signature_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/signature_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/splay-tree_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/splay-tree_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/splay-tree_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/static_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/static_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/static_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/statistic_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/statistic_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/statistic_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/stream_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/stream_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/stream_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/stream-private_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/stream-private_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/string_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/string___8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/string___8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__AffineMatrix.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__Ascii85Info.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__BlobInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__CacheInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__CacheMethods.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__CacheView.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__ChannelStatistics.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__ChromaticityInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__Cluster.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__CoderInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__ColorInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__ColorPacket.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__ConfigureInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__ContributionInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__CubeInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__DataSegmentInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__DelegateInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__dirdesc.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/structdirent.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__DIR.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__DiversityPacket.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__DoublePixelPacket.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__DrawInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__EdgeInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__ElementInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__ElementReference.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__EntryInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__ErrorInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__EventInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__ExceptionInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__ExtentPacket.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__FrameInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__FxInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__GeometryInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__GhostscriptVectors.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__GradientInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__HandlerInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__HashmapInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/structHuffmanTable.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__ile3.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__ImageAttribute.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__Image.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__ImageInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__IntervalTree.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__LinkedListInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__LocaleInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__LogInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__LongPixelPacket.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__MagicInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__MagickInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__MagickPixelPacket.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__MedianListNode.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__MedianPixelList.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__MedianSkipList.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__MemoryInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__MimeInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__ModuleInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__MontageInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__NexusInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__NodeInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__Nodes.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__NTMEMORYSTATUSEX.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__OptionInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__PathInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__PixelPacket.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__PointInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__PolygonInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__PrimaryInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__PrimitiveInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__ProfileInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__QuantizeInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__QuantumInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__QuantumState.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__RandomInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__RealPixelPacket.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__RectangleInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__RegistryInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__ResampleFilter.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__ResizeFilter.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__ResourceInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__SegmentInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/structSemaphoreInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__SignatureInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__SplayTreeInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__StopInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__StreamInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__StringInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__ThresholdMap.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__Timer.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__TimerInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__TokenInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__TypeInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__TypeMetric.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__ViewInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__XImportInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__XMLTreeInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__XMLTreeRoot.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__XWidgetInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/struct__ZeroCrossing.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/studio_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/studio_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/tab_b.gif /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/tab_l.gif /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/tab_r.gif /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/tabs.css /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/threshold_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/threshold_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/threshold_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/timer_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/timer_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/timer_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/token_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/token_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/token_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/transform_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/transform_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/transform_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/tree.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/type_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/type_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/type_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/utility_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/utility_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/utility_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/version_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/version_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/version_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/vms_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/vms_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/vms_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/widget_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/widget_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/widget_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/xml-tree_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/xml-tree_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/xml-tree_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/xwindow_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/xwindow_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/xwindow_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/xwindow-private_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickCore/xwindow-private_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickCore
/usr/bin/install -c -m 644 ./www/api/MagickWand/animate_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/animate_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/animate_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/annotated.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/classes.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/compare_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/compare_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/compare_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/composite_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/composite_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/composite_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/conjure_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/conjure_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/conjure_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/convert_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/convert_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/convert_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/deprecate_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/deprecate_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/deprecate_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/dir_101f7ac0a894e32543a314e85b2e1524.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/dirs.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/display_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/display_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/display_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/doxygen.css /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/doxygen.png /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/drawing-wand_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/drawing-wand_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/drawing-wand_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/drawtest_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/files.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/ftv2blank.png /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/ftv2doc.png /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/ftv2folderclosed.png /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/ftv2folderopen.png /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/ftv2lastnode.png /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/ftv2link.png /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/ftv2mlastnode.png /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/ftv2mnode.png /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/ftv2node.png /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/ftv2plastnode.png /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/ftv2pnode.png /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/ftv2vertline.png /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/functions.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/functions_vars.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x61.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x62.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x63.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x64.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x65.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x67.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x69.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x6d.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x6e.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x6f.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x70.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x71.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x72.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x73.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x74.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x75.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x77.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x78.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_defs.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_enum.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_eval.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_func_0x63.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_func_0x64.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_func_0x67.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_func_0x69.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_func_0x6d.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_func_0x6e.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_func_0x70.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_func_0x72.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_func_0x73.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_func.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/globals.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_type.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_vars.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/identify_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/identify_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/identify_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/import_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/import_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/import_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/index.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/magick-image_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/magick-image_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/magick-image_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/magick-property_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/magick-property_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/magick-property_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/magick-wand_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/magick__wand_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/magick-wand_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/MagickWand_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/magick__wand_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/magick-wand_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/MagickWand_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/magick-wand-private_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/magick-wand-private_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/main.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/mogrify_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/mogrify_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/mogrify_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/mogrify-private_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/mogrify-private_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/montage_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/montage_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/montage_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/pixel-iterator_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/pixel-iterator_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/pixel-iterator_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/pixel-wand_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/pixel-wand_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/pixel-wand_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/pixel-wand-private_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/pixel-wand-private_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/stream_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/stream_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/stream_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/struct__CompositeOptions.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/struct__DrawingWand.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/struct__DrawVTable.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/struct__MagickWand.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/struct__PixelIterator.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/struct__PixelWand.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/studio_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/studio_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/tab_b.gif /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/tab_l.gif /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/tab_r.gif /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/tabs.css /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/tree.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/wand_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/wand_8h.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/wand_8h-source.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/api/MagickWand/wandtest_8c.html /usr/local/share/doc/ImageMagick-6.7.6/www/api/MagickWand
/usr/bin/install -c -m 644 ./www/Magick++/Blob.html /usr/local/share/doc/ImageMagick-6.7.6/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/Cache.fig /usr/local/share/doc/ImageMagick-6.7.6/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/Cache.png /usr/local/share/doc/ImageMagick-6.7.6/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/Cache.svg /usr/local/share/doc/ImageMagick-6.7.6/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/ChangeLog.html /usr/local/share/doc/ImageMagick-6.7.6/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/CoderInfo.html /usr/local/share/doc/ImageMagick-6.7.6/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/Color.html /usr/local/share/doc/ImageMagick-6.7.6/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/Documentation.html /usr/local/share/doc/ImageMagick-6.7.6/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/Drawable_example_1.png /usr/local/share/doc/ImageMagick-6.7.6/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/Drawable.html /usr/local/share/doc/ImageMagick-6.7.6/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/Enumerations.html /usr/local/share/doc/ImageMagick-6.7.6/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/Exception.html /usr/local/share/doc/ImageMagick-6.7.6/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/FormatCharacters.html /usr/local/share/doc/ImageMagick-6.7.6/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/Future.html /usr/local/share/doc/ImageMagick-6.7.6/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/Geometry.html /usr/local/share/doc/ImageMagick-6.7.6/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/ImageDesign.html /usr/local/share/doc/ImageMagick-6.7.6/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/Image.fig /usr/local/share/doc/ImageMagick-6.7.6/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/Image.html /usr/local/share/doc/ImageMagick-6.7.6/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/ImageMagick.png /usr/local/share/doc/ImageMagick-6.7.6/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/Image.png /usr/local/share/doc/ImageMagick-6.7.6/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/index.html /usr/local/share/doc/ImageMagick-6.7.6/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/Install.html /usr/local/share/doc/ImageMagick-6.7.6/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/magick.css /usr/local/share/doc/ImageMagick-6.7.6/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/Magick++.png /usr/local/share/doc/ImageMagick-6.7.6/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/Montage.html /usr/local/share/doc/ImageMagick-6.7.6/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/montage-sample-framed.jpg /usr/local/share/doc/ImageMagick-6.7.6/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/NEWS.html /usr/local/share/doc/ImageMagick-6.7.6/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/PixelPacket.html /usr/local/share/doc/ImageMagick-6.7.6/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/Pixels.html /usr/local/share/doc/ImageMagick-6.7.6/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/README.txt /usr/local/share/doc/ImageMagick-6.7.6/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/right_triangle.png /usr/local/share/doc/ImageMagick-6.7.6/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/STL.html /usr/local/share/doc/ImageMagick-6.7.6/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/thumbnail-anatomy-framed.fig /usr/local/share/doc/ImageMagick-6.7.6/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/thumbnail-anatomy-framed.jpg /usr/local/share/doc/ImageMagick-6.7.6/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/thumbnail-anatomy-plain.fig /usr/local/share/doc/ImageMagick-6.7.6/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/thumbnail-anatomy-plain.jpg /usr/local/share/doc/ImageMagick-6.7.6/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/thumbnail-sample-framed.jpg /usr/local/share/doc/ImageMagick-6.7.6/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/thumbnail-sample-plain.jpg /usr/local/share/doc/ImageMagick-6.7.6/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/TypeMetric.html /usr/local/share/doc/ImageMagick-6.7.6/www/Magick++
test -z "/usr/local/share/doc/ImageMagick-6.7.6" || /bin/mkdir -p "/usr/local/share/doc/ImageMagick-6.7.6"
 /usr/bin/install -c -m 644 LICENSE ChangeLog NEWS.txt '/usr/local/share/doc/ImageMagick-6.7.6'
test -z "/usr/local/lib/ImageMagick-6.7.6/modules-Q16/filters" || /bin/mkdir -p "/usr/local/lib/ImageMagick-6.7.6/modules-Q16/filters"
test -z "/usr/local/include" || /bin/mkdir -p "/usr/local/include"
test -z "" || /bin/mkdir -p ""
test -z "/usr/local/include/ImageMagick/magick" || /bin/mkdir -p "/usr/local/include/ImageMagick/magick"
 /usr/bin/install -c -m 644 magick/ImageMagick.h magick/MagickCore.h magick/PreRvIcccm.h magick/accelerate.h magick/animate.h magick/annotate.h magick/api.h magick/artifact.h magick/attribute.h magick/blob.h magick/cache.h magick/cache-view.h magick/cipher.h magick/client.h magick/coder.h magick/color.h magick/colormap.h magick/colorspace.h magick/compare.h magick/composite.h magick/compress.h magick/configure.h magick/constitute.h magick/decorate.h magick/delegate.h magick/deprecate.h magick/display.h magick/distort.h magick/draw.h magick/effect.h magick/enhance.h magick/exception.h magick/feature.h magick/fourier.h magick/fx.h magick/gem.h magick/geometry.h magick/hashmap.h magick/histogram.h magick/identify.h '/usr/local/include/ImageMagick/magick'
 /usr/bin/install -c -m 644 magick/image.h magick/image-view.h magick/layer.h magick/list.h magick/locale_.h magick/log.h magick/magic.h magick/magick.h magick/magick-config.h magick/magick-type.h magick/matrix.h magick/memory_.h magick/methods.h magick/method-attribute.h magick/mime.h magick/module.h magick/monitor.h magick/montage.h magick/morphology.h magick/option.h magick/paint.h magick/pixel.h magick/policy.h magick/prepress.h magick/profile.h magick/property.h magick/quantize.h magick/quantum.h magick/random_.h magick/registry.h magick/resample.h magick/resize.h magick/resource_.h magick/segment.h magick/semaphore.h magick/shear.h magick/signature.h magick/splay-tree.h magick/statistic.h magick/stream.h '/usr/local/include/ImageMagick/magick'
 /usr/bin/install -c -m 644 magick/string_.h magick/timer.h magick/token.h magick/transform.h magick/threshold.h magick/type.h magick/utility.h magick/version.h magick/widget.h magick/xml-tree.h magick/xwindow.h '/usr/local/include/ImageMagick/magick'
test -z "/usr/local/include/ImageMagick/Magick++" || /bin/mkdir -p "/usr/local/include/ImageMagick/Magick++"
 /usr/bin/install -c -m 644 Magick++/lib/Magick++/Blob.h Magick++/lib/Magick++/CoderInfo.h Magick++/lib/Magick++/Color.h Magick++/lib/Magick++/Drawable.h Magick++/lib/Magick++/Exception.h Magick++/lib/Magick++/Geometry.h Magick++/lib/Magick++/Image.h Magick++/lib/Magick++/Include.h Magick++/lib/Magick++/Montage.h Magick++/lib/Magick++/Pixels.h Magick++/lib/Magick++/STL.h Magick++/lib/Magick++/TypeMetric.h '/usr/local/include/ImageMagick/Magick++'
test -z "/usr/local/include/ImageMagick" || /bin/mkdir -p "/usr/local/include/ImageMagick"
 /usr/bin/install -c -m 644 Magick++/lib/Magick++.h '/usr/local/include/ImageMagick'
test -z "/usr/local/share/man/man1" || /bin/mkdir -p "/usr/local/share/man/man1"
 /usr/bin/install -c -m 644 magick/Magick-config.1 magick/MagickCore-config.1 wand/MagickWand-config.1 wand/Wand-config.1 Magick++/bin/Magick++-config.1 utilities/ImageMagick.1 utilities/animate.1 utilities/compare.1 utilities/composite.1 utilities/conjure.1 utilities/convert.1 utilities/display.1 utilities/identify.1 utilities/import.1 utilities/mogrify.1 utilities/montage.1 utilities/stream.1 '/usr/local/share/man/man1'
test -z "/usr/local/lib/pkgconfig" || /bin/mkdir -p "/usr/local/lib/pkgconfig"
 /usr/bin/install -c -m 644 magick/ImageMagick.pc magick/MagickCore.pc wand/MagickWand.pc wand/Wand.pc Magick++/lib/Magick++.pc Magick++/lib/ImageMagick++.pc '/usr/local/lib/pkgconfig'
test -z "/usr/local/include/ImageMagick/wand" || /bin/mkdir -p "/usr/local/include/ImageMagick/wand"
 /usr/bin/install -c -m 644 wand/MagickWand.h wand/animate.h wand/compare.h wand/composite.h wand/conjure.h wand/convert.h wand/deprecate.h wand/display.h wand/drawing-wand.h wand/identify.h wand/import.h wand/magick-image.h wand/magick-property.h wand/magick-wand.h wand/magick_wand.h wand/method-attribute.h wand/mogrify.h wand/montage.h wand/pixel-iterator.h wand/pixel-wand.h wand/stream.h wand/wand-view.h '/usr/local/include/ImageMagick/wand'
make[2]: Leaving directory `/usr/local/src/ImageMagick-6.7.6-8'
make[1]: Leaving directory `/usr/local/src/ImageMagick-6.7.6-8'
make  check-am
make[1]: Entering directory `/usr/local/src/ImageMagick-6.7.6-8'
make  tests/validate 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 wand/drawtest wand/wandtest
make[2]: Entering directory `/usr/local/src/ImageMagick-6.7.6-8'
  CC     tests/tests_validate-validate.o
  CCLD   tests/validate
  CXX    Magick++/demo/analyze.o
  CXXLD  Magick++/demo/analyze
  CXX    Magick++/demo/button.o
  CXXLD  Magick++/demo/button
  CXX    Magick++/demo/demo.o
  CXXLD  Magick++/demo/demo
  CXX    Magick++/demo/detrans.o
  CXXLD  Magick++/demo/detrans
  CXX    Magick++/demo/flip.o
  CXXLD  Magick++/demo/flip
  CXX    Magick++/demo/gravity.o
  CXXLD  Magick++/demo/gravity
  CXX    Magick++/demo/piddle.o
  CXXLD  Magick++/demo/piddle
  CXX    Magick++/demo/shapes.o
  CXXLD  Magick++/demo/shapes
  CXX    Magick++/demo/zoom.o
  CXXLD  Magick++/demo/zoom
  CXX    Magick++/tests/appendImages.o
  CXXLD  Magick++/tests/appendImages
  CXX    Magick++/tests/attributes.o
  CXXLD  Magick++/tests/attributes
  CXX    Magick++/tests/averageImages.o
  CXXLD  Magick++/tests/averageImages
  CXX    Magick++/tests/coalesceImages.o
  CXXLD  Magick++/tests/coalesceImages
  CXX    Magick++/tests/coderInfo.o
  CXXLD  Magick++/tests/coderInfo
  CXX    Magick++/tests/color.o
  CXXLD  Magick++/tests/color
  CXX    Magick++/tests/colorHistogram.o
  CXXLD  Magick++/tests/colorHistogram
  CXX    Magick++/tests/exceptions.o
  CXXLD  Magick++/tests/exceptions
  CXX    Magick++/tests/montageImages.o
  CXXLD  Magick++/tests/montageImages
  CXX    Magick++/tests/morphImages.o
  CXXLD  Magick++/tests/morphImages
  CXX    Magick++/tests/readWriteBlob.o
  CXXLD  Magick++/tests/readWriteBlob
  CXX    Magick++/tests/readWriteImages.o
  CXXLD  Magick++/tests/readWriteImages
  CC     wand/drawtest.o
  CCLD   wand/drawtest
  CC     wand/wandtest.o
  CCLD   wand/wandtest
make[2]: Leaving directory `/usr/local/src/ImageMagick-6.7.6-8'
make  check-TESTS check-local
make[2]: Entering directory `/usr/local/src/ImageMagick-6.7.6-8'
make[3]: Entering directory `/usr/local/src/ImageMagick-6.7.6-8'
PASS: tests/validate-compare.sh
PASS: tests/validate-composite.sh
PASS: tests/validate-convert.sh
PASS: tests/validate-identify.sh
PASS: tests/validate-import.sh
PASS: tests/validate-montage.sh
PASS: tests/validate-pipe.sh
PASS: tests/validate-colorspace.sh
PASS: tests/validate-stream.sh
PASS: tests/validate-formats-in-memory.sh
PASS: tests/validate-formats-on-disk.sh
PASS: Magick++/tests/exceptions.sh
PASS: Magick++/tests/appendImages.sh
PASS: Magick++/tests/attributes.sh
PASS: Magick++/tests/averageImages.sh
PASS: Magick++/tests/coalesceImages.sh
PASS: Magick++/tests/coderInfo.sh
PASS: Magick++/tests/colorHistogram.sh
PASS: Magick++/tests/color.sh
PASS: Magick++/tests/montageImages.sh
PASS: Magick++/tests/morphImages.sh
PASS: Magick++/tests/readWriteBlob.sh
PASS: Magick++/tests/readWriteImages.sh
PASS: Magick++/demo/analyze.sh
PASS: Magick++/demo/button.sh
PASS: Magick++/demo/demo.sh
PASS: Magick++/demo/flip.sh
PASS: Magick++/demo/gravity.sh
PASS: Magick++/demo/piddle.sh
PASS: Magick++/demo/shapes.sh
PASS: Magick++/demo/zoom_bessel.sh
PASS: Magick++/demo/zoom_blackman.sh
PASS: Magick++/demo/zoom_box.sh
PASS: Magick++/demo/zoom_catrom.sh
PASS: Magick++/demo/zoom_cubic.sh
PASS: Magick++/demo/zoom_gaussian.sh
PASS: Magick++/demo/zoom_hamming.sh
PASS: Magick++/demo/zoom_hanning.sh
PASS: Magick++/demo/zoom_hermite.sh
PASS: Magick++/demo/zoom_lanczos.sh
PASS: Magick++/demo/zoom_mitchell.sh
PASS: Magick++/demo/zoom_point.sh
PASS: Magick++/demo/zoom_quadratic.sh
PASS: Magick++/demo/zoom_sample.sh
PASS: Magick++/demo/zoom_scale.sh
PASS: Magick++/demo/zoom_sinc.sh
PASS: Magick++/demo/zoom_triangle.sh
PASS: wand/drawtest.sh
PASS: wand/wandtest.sh
===================
All 49 tests passed
===================
make[3]: Leaving directory `/usr/local/src/ImageMagick-6.7.6-8'
make[2]: Nothing to be done for `check-local'.
make[2]: Leaving directory `/usr/local/src/ImageMagick-6.7.6-8'
make[1]: Leaving directory `/usr/local/src/ImageMagick-6.7.6-8'
.

IM says everything in "make check" passes...(see install_log.txt)

Have I installed IM correctly? (I am a newbie at installing source-code, so I have probably missed something vital) Is it possible the IM modules have not been installed or that I am missing the required FITS libraries (and if so how do I remedy the problem)?

Thanks again!
Last edited by Light on 2012-05-02T01:13:45-07:00, edited 1 time in total.
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Re: problem converting grayscale 16-bit FIT to TIFF

Post by magick »

Type
  • identify -list format
You should get:
  • FITS* FITS rw- Flexible Image Transport System
Notice the rw- which means ImageMagick can read / write FITS images.

Be sure to check the permissions of your installed ImageMagick distribution.
Light
Posts: 8
Joined: 2012-04-30T13:28:31-07:00
Authentication code: 13

Re: problem converting grayscale 16-bit FIT to TIFF

Post by Light »

Thanks magick,

I tried typing in 'identify -list format|grep "FIT"'. It gives:
  • "FITS* FITS rw- Flexible Image Transport System"
as expected. So it would appear that I can read/write FITS files... As an added precaution I looked at the permissions of the IM files in /usr/local/bin and /lib and all are accessible to the user (I also get the same error code when running as root).

Additional information:

In the terminal, "convert -list configure" gives:

Code: Select all

Path: /usr/local/lib/ImageMagick-6.7.6/config/configure.xml

Name          Value
-------------------------------------------------------------------------------
CC            gcc -std=gnu99 -std=gnu99
CFLAGS        -fopenmp -g -O2 -Wall -pthread
CODER_PATH    /usr/local/lib/ImageMagick-6.7.6/modules-Q16/coders
CONFIGURE     ./configure  '--enable-hdri=yes' '--x-libraries=/usr/lib64' '--enable-shared=yes' '--disable-static' '--with-modules=yes' '--enable-delegate-build=yes'
CONFIGURE_PATH /usr/local/etc/ImageMagick/
COPYRIGHT     Copyright (C) 1999-2012 ImageMagick Studio LLC
CPPFLAGS      -I/usr/local/include/ImageMagick
CXX           g++
CXXFLAGS      -g -O2 -pthread
DEFS          -DHAVE_CONFIG_H
DELEGATES     fontconfig freetype jpeg jng lcms png tiff x11 xml zlib
DISTCHECK_CONFIG_FLAGS --disable-deprecated --with-quantum-depth=16 --with-umem=no --with-autotrace=no --with-gslib=no --with-fontpath= --with-wmf=no --with-perl=no
DOCUMENTATION_PATH /usr/local/share/doc/ImageMagick-6.7.6
EXEC-PREFIX   /usr/local
EXECUTABLE_PATH /usr/local/bin
FEATURES      HDRI OpenMP 
FILTER_PATH   /usr/local/lib/ImageMagick-6.7.6/modules-Q16/filters
HOST          x86_64-unknown-linux-gnu
INCLUDE_PATH  /usr/local/include/ImageMagick
LDFLAGS       -L/usr/local/lib -L/usr/local/src/ImageMagick-6.7.6-8/magick -L/usr/local/src/ImageMagick-6.7.6-8/wand -L/usr/lib64 -L/usr/lib
LIB_VERSION   0x676
LIB_VERSION_NUMBER 6,7,6,8
LIBRARY_PATH  /usr/local/lib/ImageMagick-6.7.6
LIBS          -lMagickCore -llcms -ltiff -lfreetype -ljpeg -lfontconfig -lXext -lSM -lICE -lX11 -lXt -lz -lm -lgomp -lpthread -lltdl
NAME          ImageMagick
PCFLAGS       -fopenmp
PREFIX        /usr/local
QuantumDepth  16
RELEASE_DATE  2012-05-01
SHARE_PATH    /usr/local/share/ImageMagick-6.7.6
SVN_REVISION  7710
TARGET_CPU    x86_64
TARGET_OS     linux-gnu
TARGET_VENDOR unknown
VERSION       6.7.6
WEBSITE       http://www.imagemagick.org

Path: [built-in]

Name          Value
-------------------------------------------------------------------------------
NAME          ImageMagick
Typing "ls -l /usr/local/lib/ImageMagick-6.7.6/modules-Q16/coders/" gives:

Code: Select all

total 8196
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 aai.la
-rwxr-xr-x 1 root root  45173 2012-05-01 13:43 aai.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 art.la
-rwxr-xr-x 1 root root  44553 2012-05-01 13:43 art.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 avs.la
-rwxr-xr-x 1 root root  44893 2012-05-01 13:43 avs.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 bgr.la
-rwxr-xr-x 1 root root  68454 2012-05-01 13:43 bgr.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 bmp.la
-rwxr-xr-x 1 root root  84370 2012-05-01 13:43 bmp.so
-rwxr-xr-x 1 root root   1237 2012-05-01 13:43 braille.la
-rwxr-xr-x 1 root root  37829 2012-05-01 13:43 braille.so
-rwxr-xr-x 1 root root   1219 2012-05-01 13:43 cals.la
-rwxr-xr-x 1 root root  43790 2012-05-01 13:43 cals.so
-rwxr-xr-x 1 root root   1237 2012-05-01 13:43 caption.la
-rwxr-xr-x 1 root root  46090 2012-05-01 13:43 caption.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 cin.la
-rwxr-xr-x 1 root root  74959 2012-05-01 13:43 cin.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 cip.la
-rwxr-xr-x 1 root root  38183 2012-05-01 13:43 cip.so
-rwxr-xr-x 1 root root   1219 2012-05-01 13:43 clip.la
-rwxr-xr-x 1 root root  32808 2012-05-01 13:43 clip.so
-rwxr-xr-x 1 root root   1219 2012-05-01 13:43 cmyk.la
-rwxr-xr-x 1 root root  75023 2012-05-01 13:43 cmyk.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 cut.la
-rwxr-xr-x 1 root root  51625 2012-05-01 13:43 cut.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 dcm.la
-rwxr-xr-x 1 root root 314128 2012-05-01 13:43 dcm.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 dds.la
-rwxr-xr-x 1 root root  53776 2012-05-01 13:43 dds.so
-rwxr-xr-x 1 root root   1225 2012-05-01 13:43 debug.la
-rwxr-xr-x 1 root root  38752 2012-05-01 13:43 debug.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 dib.la
-rwxr-xr-x 1 root root  70409 2012-05-01 13:43 dib.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 dng.la
-rwxr-xr-x 1 root root  41306 2012-05-01 13:43 dng.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 dot.la
-rwxr-xr-x 1 root root  27199 2012-05-01 13:43 dot.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 dpx.la
-rwxr-xr-x 1 root root 111015 2012-05-01 13:43 dpx.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 ept.la
-rwxr-xr-x 1 root root  41798 2012-05-01 13:43 ept.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 fax.la
-rwxr-xr-x 1 root root  37382 2012-05-01 13:43 fax.so
-rwxr-xr-x 1 root root   1207 2012-05-01 13:43 fd.la
-rwxr-xr-x 1 root root  33962 2012-05-01 13:43 fd.so
-rwxr-xr-x 1 root root   1219 2012-05-01 13:43 fits.la
-rwxr-xr-x 1 root root  65476 2012-05-01 13:43 fits.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 gif.la
-rwxr-xr-x 1 root root  84962 2012-05-01 13:43 gif.so
-rwxr-xr-x 1 root root   1243 2012-05-01 13:43 gradient.la
-rwxr-xr-x 1 root root  34373 2012-05-01 13:43 gradient.so
-rwxr-xr-x 1 root root   1219 2012-05-01 13:43 gray.la
-rwxr-xr-x 1 root root  45705 2012-05-01 13:43 gray.so
-rwxr-xr-x 1 root root   1219 2012-05-01 13:43 hald.la
-rwxr-xr-x 1 root root  36348 2012-05-01 13:43 hald.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 hdr.la
-rwxr-xr-x 1 root root  53101 2012-05-01 13:43 hdr.so
-rwxr-xr-x 1 root root   1249 2012-05-01 13:43 histogram.la
-rwxr-xr-x 1 root root  43215 2012-05-01 13:43 histogram.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 hrz.la
-rwxr-xr-x 1 root root  39617 2012-05-01 13:43 hrz.so
-rwxr-xr-x 1 root root   1219 2012-05-01 13:43 html.la
-rwxr-xr-x 1 root root  40684 2012-05-01 13:43 html.so
-rwxr-xr-x 1 root root   1219 2012-05-01 13:43 icon.la
-rwxr-xr-x 1 root root  72549 2012-05-01 13:43 icon.so
-rwxr-xr-x 1 root root   1219 2012-05-01 13:43 info.la
-rwxr-xr-x 1 root root  34634 2012-05-01 13:43 info.so
-rwxr-xr-x 1 root root   1231 2012-05-01 13:43 inline.la
-rwxr-xr-x 1 root root  35073 2012-05-01 13:43 inline.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 ipl.la
-rwxr-xr-x 1 root root  46963 2012-05-01 13:43 ipl.so
-rwxr-xr-x 1 root root   1219 2012-05-01 13:43 jpeg.la
-rwxr-xr-x 1 root root 136127 2012-05-01 13:43 jpeg.so
-rwxr-xr-x 1 root root   1225 2012-05-01 13:43 label.la
-rwxr-xr-x 1 root root  39066 2012-05-01 13:43 label.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 mac.la
-rwxr-xr-x 1 root root  36376 2012-05-01 13:43 mac.so
-rwxr-xr-x 1 root root   1231 2012-05-01 13:43 magick.la
-rwxr-xr-x 1 root root 246067 2012-05-01 13:43 magick.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 map.la
-rwxr-xr-x 1 root root  45570 2012-05-01 13:43 map.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 mat.la
-rwxr-xr-x 1 root root  76655 2012-05-01 13:43 mat.so
-rwxr-xr-x 1 root root   1225 2012-05-01 13:43 matte.la
-rwxr-xr-x 1 root root  33910 2012-05-01 13:43 matte.so
-rwxr-xr-x 1 root root   1219 2012-05-01 13:43 meta.la
-rwxr-xr-x 1 root root 101077 2012-05-01 13:43 meta.so
-rwxr-xr-x 1 root root   1219 2012-05-01 13:43 miff.la
-rwxr-xr-x 1 root root 114052 2012-05-01 13:43 miff.so
-rwxr-xr-x 1 root root   1219 2012-05-01 13:43 mono.la
-rwxr-xr-x 1 root root  43181 2012-05-01 13:43 mono.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 mpc.la
-rwxr-xr-x 1 root root  76754 2012-05-01 13:43 mpc.so
-rwxr-xr-x 1 root root   1219 2012-05-01 13:43 mpeg.la
-rwxr-xr-x 1 root root  48569 2012-05-01 13:43 mpeg.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 mpr.la
-rwxr-xr-x 1 root root  33826 2012-05-01 13:43 mpr.so
-rwxr-xr-x 1 root root   1235 2012-05-01 13:43 msl.la
-rwxr-xr-x 1 root root 296674 2012-05-01 13:43 msl.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 mtv.la
-rwxr-xr-x 1 root root  45150 2012-05-01 13:43 mtv.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 mvg.la
-rwxr-xr-x 1 root root  40605 2012-05-01 13:43 mvg.so
-rwxr-xr-x 1 root root   1219 2012-05-01 13:43 null.la
-rwxr-xr-x 1 root root  35745 2012-05-01 13:43 null.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 otb.la
-rwxr-xr-x 1 root root  43202 2012-05-01 13:43 otb.so
-rwxr-xr-x 1 root root   1219 2012-05-01 13:43 palm.la
-rwxr-xr-x 1 root root  65343 2012-05-01 13:43 palm.so
-rwxr-xr-x 1 root root   1225 2012-05-01 13:43 pango.la
-rwxr-xr-x 1 root root  27301 2012-05-01 13:43 pango.so
-rwxr-xr-x 1 root root   1237 2012-05-01 13:43 pattern.la
-rwxr-xr-x 1 root root 492808 2012-05-01 13:43 pattern.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 pcd.la
-rwxr-xr-x 1 root root  70397 2012-05-01 13:43 pcd.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 pcl.la
-rwxr-xr-x 1 root root  57724 2012-05-01 13:43 pcl.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 pcx.la
-rwxr-xr-x 1 root root  66107 2012-05-01 13:43 pcx.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 pdb.la
-rwxr-xr-x 1 root root  59481 2012-05-01 13:43 pdb.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 pdf.la
-rwxr-xr-x 1 root root 118326 2012-05-01 13:43 pdf.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 pes.la
-rwxr-xr-x 1 root root  42563 2012-05-01 13:43 pes.so
-rwxr-xr-x 1 root root   1219 2012-05-01 13:43 pict.la
-rwxr-xr-x 1 root root  95616 2012-05-01 13:43 pict.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 pix.la
-rwxr-xr-x 1 root root  37810 2012-05-01 13:43 pix.so
-rwxr-xr-x 1 root root   1231 2012-05-01 13:43 plasma.la
-rwxr-xr-x 1 root root  58377 2012-05-01 13:43 plasma.so
-rwxr-xr-x 1 root root   1221 2012-05-01 13:43 png.la
-rwxr-xr-x 1 root root 378008 2012-05-01 13:43 png.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 pnm.la
-rwxr-xr-x 1 root root 141024 2012-05-01 13:43 pnm.so
-rwxr-xr-x 1 root root   1237 2012-05-01 13:43 preview.la
-rwxr-xr-x 1 root root  33420 2012-05-01 13:43 preview.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 ps2.la
-rwxr-xr-x 1 root root  73292 2012-05-01 13:43 ps2.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 ps3.la
-rwxr-xr-x 1 root root  84230 2012-05-01 13:43 ps3.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 psd.la
-rwxr-xr-x 1 root root 112002 2012-05-01 13:43 psd.so
-rwxr-xr-x 1 root root   1207 2012-05-01 13:43 ps.la
-rwxr-xr-x 1 root root 125805 2012-05-01 13:43 ps.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 pwp.la
-rwxr-xr-x 1 root root  37135 2012-05-01 13:43 pwp.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 raw.la
-rwxr-xr-x 1 root root  46515 2012-05-01 13:43 raw.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 rgb.la
-rwxr-xr-x 1 root root  68182 2012-05-01 13:43 rgb.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 rla.la
-rwxr-xr-x 1 root root  38326 2012-05-01 13:43 rla.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 rle.la
-rwxr-xr-x 1 root root  47678 2012-05-01 13:43 rle.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 scr.la
-rwxr-xr-x 1 root root  35370 2012-05-01 13:43 scr.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 sct.la
-rwxr-xr-x 1 root root  37869 2012-05-01 13:43 sct.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 sfw.la
-rwxr-xr-x 1 root root  43865 2012-05-01 13:43 sfw.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 sgi.la
-rwxr-xr-x 1 root root  67554 2012-05-01 13:43 sgi.so
-rwxr-xr-x 1 root root   1237 2012-05-01 13:43 stegano.la
-rwxr-xr-x 1 root root  36034 2012-05-01 13:43 stegano.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 sun.la
-rwxr-xr-x 1 root root  57628 2012-05-01 13:43 sun.so
-rwxr-xr-x 1 root root   1267 2012-05-01 13:43 svg.la
-rwxr-xr-x 1 root root 191984 2012-05-01 13:43 svg.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 tga.la
-rwxr-xr-x 1 root root  56889 2012-05-01 13:43 tga.so
-rwxr-xr-x 1 root root   1249 2012-05-01 13:43 thumbnail.la
-rwxr-xr-x 1 root root  34525 2012-05-01 13:43 thumbnail.so
-rwxr-xr-x 1 root root   1219 2012-05-01 13:43 tiff.la
-rwxr-xr-x 1 root root 152096 2012-05-01 13:43 tiff.so
-rwxr-xr-x 1 root root   1219 2012-05-01 13:43 tile.la
-rwxr-xr-x 1 root root  33736 2012-05-01 13:43 tile.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 tim.la
-rwxr-xr-x 1 root root  45844 2012-05-01 13:43 tim.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 ttf.la
-rwxr-xr-x 1 root root  40203 2012-05-01 13:43 ttf.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 txt.la
-rwxr-xr-x 1 root root  62010 2012-05-01 13:43 txt.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 uil.la
-rwxr-xr-x 1 root root  43982 2012-05-01 13:43 uil.so
-rwxr-xr-x 1 root root   1235 2012-05-01 13:43 url.la
-rwxr-xr-x 1 root root  36081 2012-05-01 13:43 url.so
-rwxr-xr-x 1 root root   1219 2012-05-01 13:43 uyvy.la
-rwxr-xr-x 1 root root  44160 2012-05-01 13:43 uyvy.so
-rwxr-xr-x 1 root root   1225 2012-05-01 13:43 vicar.la
-rwxr-xr-x 1 root root  47121 2012-05-01 13:43 vicar.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 vid.la
-rwxr-xr-x 1 root root  42897 2012-05-01 13:43 vid.so
-rwxr-xr-x 1 root root   1219 2012-05-01 13:43 viff.la
-rwxr-xr-x 1 root root  67620 2012-05-01 13:43 viff.so
-rwxr-xr-x 1 root root   1219 2012-05-01 13:43 wbmp.la
-rwxr-xr-x 1 root root  44739 2012-05-01 13:43 wbmp.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 wpg.la
-rwxr-xr-x 1 root root  70939 2012-05-01 13:43 wpg.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 xbm.la
-rwxr-xr-x 1 root root  46664 2012-05-01 13:43 xbm.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 xcf.la
-rwxr-xr-x 1 root root  67691 2012-05-01 13:43 xcf.so
-rwxr-xr-x 1 root root   1207 2012-05-01 13:43 xc.la
-rwxr-xr-x 1 root root  35707 2012-05-01 13:43 xc.so
-rwxr-xr-x 1 root root   1201 2012-05-01 13:43 x.la
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 xpm.la
-rwxr-xr-x 1 root root  65663 2012-05-01 13:43 xpm.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 xps.la
-rwxr-xr-x 1 root root  42543 2012-05-01 13:43 xps.so
-rwxr-xr-x 1 root root  28270 2012-05-01 13:43 x.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 xwd.la
-rwxr-xr-x 1 root root  58639 2012-05-01 13:43 xwd.so
-rwxr-xr-x 1 root root   1225 2012-05-01 13:43 ycbcr.la
-rwxr-xr-x 1 root root  65400 2012-05-01 13:43 ycbcr.so
-rwxr-xr-x 1 root root   1213 2012-05-01 13:43 yuv.la
-rwxr-xr-x 1 root root  56015 2012-05-01 13:43 yuv.so
I'd be very grateful to any further help on this :)
Last edited by Light on 2012-05-01T06:18:38-07:00, edited 1 time in total.
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Re: problem converting grayscale 16-bit FIT to TIFF

Post by magick »

Make sure the basics work. Type
  • convert logo: logo.miff
    identify -verbose logo.miff
Assuming that works, try an explicit conversion;
  • convert fits:original.FIT original.miff
    display original.miff
If that fails, add -debug configure to trace where ImageMagick is looking for the FITS coder module.
Light
Posts: 8
Joined: 2012-04-30T13:28:31-07:00
Authentication code: 13

Re: problem converting grayscale 16-bit FIT to TIFF

Post by Light »

Once again thanks for the swift reply magick :D

Okay here goes (This will be a bit of a long post - apologies!)...

Below is the output to "convert logo: logo.miff;identify -verbose logo.miff" (the convert command did not forward any messages to the screen):

Code: Select all

Image: logo.miff
  Format: MIFF (Magick Image File Format)
  Class: PseudoClass
  Geometry: 640x480+0+0
  Resolution: 72x72
  Print size: 8.88889x6.66667
  Units: Undefined
  Type: Palette
  Base type: Palette
  Endianess: Undefined
  Colorspace: sRGB
  Depth: 8-bit
  Channel depth:
    red: 8-bit
    green: 8-bit
    blue: 8-bit
  Channel statistics:
    Red:
      min: 4 (0.0156863)
      max: 255 (1)
      mean: 229.323 (0.899307)
      standard deviation: 69.3423 (0.271931)
      kurtosis: 4.45973
      skewness: -2.49768
    Green:
      min: 0 (0)
      max: 255 (1)
      mean: 226.217 (0.887127)
      standard deviation: 70.8689 (0.277917)
      kurtosis: 3.37246
      skewness: -2.24758
    Blue:
      min: 0 (0)
      max: 255 (1)
      mean: 229.064 (0.898288)
      standard deviation: 64.1018 (0.251379)
      kurtosis: 4.65272
      skewness: -2.42185
  Image statistics:
    Overall:
      min: 0 (0)
      max: 255 (1)
      mean: 228.201 (0.894907)
      standard deviation: 68.166 (0.267318)
      kurtosis: 4.14821
      skewness: -2.39288
  Colors: 256
  Histogram:
      7150: (  4,  7,  7) #040707 srgb(4,7,7)
       136: (  6,  9, 14) #06090E srgb(6,9,14)
       111: (  6, 10, 16) #060A10 srgb(6,10,16)
        68: (  9, 13, 19) #090D13 srgb(9,13,19)
       120: (  9, 14, 25) #090E19 srgb(9,14,25)
        55: ( 10, 11, 11) #0A0B0B srgb(10,11,11)
        97: ( 11, 17, 34) #0B1122 srgb(11,17,34)
        35: ( 13, 17, 22) #0D1116 srgb(13,17,22)
       130: ( 13, 20, 42) #0D142A srgb(13,20,42)
        98: ( 14, 26, 55) #0E1A37 srgb(14,26,55)
        67: ( 15, 17, 41) #0F1129 srgb(15,17,41)
        61: ( 18, 30, 67) #121E43 srgb(18,30,67)
        83: ( 19, 18, 12) #13120C srgb(19,18,12)
        84: ( 19, 23, 56) #131738 srgb(19,23,56)
        88: ( 20, 11, 10) #140B0A srgb(20,11,10)
       270: ( 20, 23, 23) #141717 srgb(20,23,23)
       106: ( 20, 35, 77) #14234D srgb(20,35,77)
        36: ( 23, 41, 94) #17295E srgb(23,41,94)
        25: ( 24, 27, 27) #181B1B srgb(24,27,27)
        48: ( 25, 37, 87) #192557 srgb(25,37,87)
        86: ( 25, 45,103) #192D67 srgb(25,45,103)
        83: ( 26, 27, 75) #1A1B4B srgb(26,27,75)
        98: ( 27, 48,111) #1B306F srgb(27,48,111)
        85: ( 28, 52,120) #1C3478 srgb(28,52,120)
        23: ( 30, 20, 13) #1E140D srgb(30,20,13)
        79: ( 30, 30, 86) #1E1E56 srgb(30,30,86)
        19: ( 30, 33, 33) #1E2121 srgb(30,33,33)
       142: ( 30, 55,129) #1E3781 srgb(30,55,129)
         3: ( 31, 49,114) #1F3172 srgb(31,49,114)
      2538: ( 33, 32, 95) #21205F srgb(33,32,95)
       539: ( 34, 35, 99) #222363 srgb(34,35,99)
        32: ( 34, 36, 17) #222411 srgb(34,36,17)
     12466: ( 34, 62,146) #223E92 srgb(34,62,146)
        50: ( 35, 25, 19) #231913 srgb(35,25,19)
       176: ( 35, 38, 38) #232626 srgb(35,38,38)
        30: ( 35, 42,101) #232A65 srgb(35,42,101)
       500: ( 36, 39,105) #242769 srgb(36,39,105)
       337: ( 36, 59,139) #243B8B srgb(36,59,139)
       379: ( 37, 42,109) #252A6D srgb(37,42,109)
         6: ( 38, 30, 34) #261E22 srgb(38,30,34)
       558: ( 38, 45,115) #262D73 srgb(38,45,115)
       412: ( 38, 54,130) #263682 srgb(38,54,130)
       405: ( 38, 56,134) #263886 srgb(38,56,134)
       422: ( 39, 48,119) #273077 srgb(39,48,119)
       228: ( 39, 50,124) #27327C srgb(39,50,124)
        38: ( 41, 43, 43) #292B2B srgb(41,43,43)
        32: ( 46, 42, 93) #2E2A5D srgb(46,42,93)
        37: ( 46, 49, 50) #2E3132 srgb(46,49,50)
       199: ( 47, 73,140) #2F498C srgb(47,73,140)
        40: ( 49, 50, 17) #313211 srgb(49,50,17)
        50: ( 51, 16, 13) #33100D srgb(51,16,13)
        24: ( 51, 50, 42) #33322A srgb(51,50,42)
       163: ( 51, 54, 54) #333636 srgb(51,54,54)
        11: ( 51, 70,133) #334685 srgb(51,70,133)
        25: ( 52, 56,109) #34386D srgb(52,56,109)
        80: ( 53, 36, 24) #352418 srgb(53,36,24)
         9: ( 55, 71,126) #37477E srgb(55,71,126)
        21: ( 57, 59, 60) #393B3C srgb(57,59,60)
        32: ( 60, 53, 90) #3C355A srgb(60,53,90)
        33: ( 60, 84,135) #3C5487 srgb(60,84,135)
        41: ( 63, 65, 66) #3F4142 srgb(63,65,66)
        54: ( 65, 43, 31) #412B1F srgb(65,43,31)
        41: ( 69, 69, 20) #454514 srgb(69,69,20)
       804: ( 69, 70, 70) #454646 srgb(69,70,70)
        21: ( 70, 41, 24) #462918 srgb(70,41,24)
        67: ( 71, 74, 74) #474A4A srgb(71,74,74)
        22: ( 72, 58, 88) #483A58 srgb(72,58,88)
        99: ( 74, 95,129) #4A5F81 srgb(74,95,129)
        73: ( 75, 75, 75) #4B4B4B srgb(75,75,75)
         7: ( 76, 58, 54) #4C3A36 srgb(76,58,54)
        17: ( 78, 50, 23) #4E3217 srgb(78,50,23)
        24: ( 79, 82,108) #4F526C srgb(79,82,108)
        14: ( 80, 68, 22) #504416 srgb(80,68,22)
        25: ( 81, 13, 14) #510D0E srgb(81,13,14)
        23: ( 81, 52, 37) #513425 srgb(81,52,37)
        51: ( 81, 73, 85) #514955 srgb(81,73,85)
       133: ( 83, 85, 85) #535555 srgb(83,85,85)
        44: ( 87, 85, 87) #575557 srgb(87,85,87)
        51: ( 87,105,122) #57697A srgb(87,105,122)
        58: ( 90, 91, 92) #5A5B5C srgb(90,91,92)
        39: ( 93, 97,102) #5D6166 srgb(93,97,102)
        35: ( 94, 94, 25) #5E5E19 srgb(94,94,25)
        57: ( 95, 61, 43) #5F3D2B srgb(95,61,43)
       193: ( 98,100,100) #626464 srgb(98,100,100)
       110: (100, 12, 13) #640C0D srgb(100,12,13)
        28: (103,105,103) #676967 srgb(103,105,103)
        37: (103,116,116) #677474 srgb(103,116,116)
        12: (104, 86, 99) #685663 srgb(104,86,99)
         9: (106, 81, 27) #6A511B srgb(106,81,27)
        76: (106,108,108) #6A6C6C srgb(106,108,108)
        21: (109, 16, 18) #6D1012 srgb(109,16,18)
        25: (109, 85, 81) #6D5551 srgb(109,85,81)
        26: (109,108, 28) #6D6C1C srgb(109,108,28)
        34: (110, 70, 49) #6E4631 srgb(110,70,49)
         4: (110, 95, 42) #6E5F2A srgb(110,95,42)
        17: (111, 58, 31) #6F3A1F srgb(111,58,31)
        38: (113,118,106) #71766A srgb(113,118,106)
        69: (113,128,112) #718070 srgb(113,128,112)
        28: (114,104, 84) #726854 srgb(114,104,84)
       152: (114,116,116) #727474 srgb(114,116,116)
         8: (119, 72, 42) #77482A srgb(119,72,42)
        31: (121, 18, 20) #791214 srgb(121,18,20)
        47: (121,123,123) #797B7B srgb(121,123,123)
        45: (125,123, 31) #7D7B1F srgb(125,123,31)
        35: (125,127,129) #7D7F81 srgb(125,127,129)
        53: (126, 80, 56) #7E5038 srgb(126,80,56)
        34: (126,138,106) #7E8A6A srgb(126,138,106)
        77: (127,128,129) #7F8081 srgb(127,128,129)
       180: (130,131,132) #828384 srgb(130,131,132)
        11: (132, 91, 72) #845B48 srgb(132,91,72)
        52: (134,136,137) #868889 srgb(134,136,137)
        28: (136, 22, 25) #881619 srgb(136,22,25)
         8: (136, 90, 30) #885A1E srgb(136,90,30)
       560: (138,140,143) #8A8C8F srgb(138,140,143)
        38: (139,133, 98) #8B8562 srgb(139,133,98)
       147: (140,142,145) #8C8E91 srgb(140,142,145)
        59: (140,150,100) #8C9664 srgb(140,150,100)
        27: (141, 76, 42) #8D4C2A srgb(141,76,42)
        41: (141, 89, 62) #8D593E srgb(141,89,62)
        52: (141,115, 79) #8D734F srgb(141,115,79)
       187: (143,144,147) #8F9093 srgb(143,144,147)
        52: (144,144,143) #90908F srgb(144,144,143)
        87: (146,147,148) #929394 srgb(146,147,148)
        25: (147,141, 84) #938D54 srgb(147,141,84)
       182: (148,150,153) #949699 srgb(148,150,153)
        47: (150,144, 35) #969023 srgb(150,144,35)
        52: (150,152,155) #96989B srgb(150,152,155)
        15: (151,106, 40) #976A28 srgb(151,106,40)
        37: (152, 26, 30) #981A1E srgb(152,26,30)
        52: (152,151,151) #989797 srgb(152,151,151)
        37: (153,161, 94) #99A15E srgb(153,161,94)
        54: (154,155,157) #9A9B9D srgb(154,155,157)
        52: (156, 99, 68) #9C6344 srgb(156,99,68)
       309: (156,158,161) #9C9EA1 srgb(156,158,161)
       239: (158,160,163) #9EA0A3 srgb(158,160,163)
        85: (159,160,159) #9FA09F srgb(159,160,159)
        99: (161,163,164) #A1A3A4 srgb(161,163,164)
        97: (164,166,169) #A4A6A9 srgb(164,166,169)
        61: (166,172, 89) #A6AC59 srgb(166,172,89)
        17: (167,169, 84) #A7A954 srgb(167,169,84)
       167: (167,169,172) #A7A9AC srgb(167,169,172)
        75: (170,171,173) #AAABAD srgb(170,171,173)
       229: (172,174,177) #ACAEB1 srgb(172,174,177)
        47: (173,110, 72) #AD6E48 srgb(173,110,72)
        29: (174, 89, 46) #AE592E srgb(174,89,46)
        26: (174,140, 73) #AE8C49 srgb(174,140,73)
        19: (175, 25, 29) #AF191D srgb(175,25,29)
        27: (175, 30, 35) #AF1E23 srgb(175,30,35)
       175: (175,176,179) #AFB0B3 srgb(175,176,179)
        13: (176,170, 76) #B0AA4C srgb(176,170,76)
        80: (177,179,180) #B1B3B4 srgb(177,179,180)
        11: (179,109, 51) #B36D33 srgb(179,109,51)
         5: (179,144, 43) #B3902B srgb(179,144,43)
        54: (179,174, 41) #B3AE29 srgb(179,174,41)
        46: (179,183, 83) #B3B753 srgb(179,183,83)
       126: (181,182,185) #B5B6B9 srgb(181,182,185)
        50: (183,184,187) #B7B8BB srgb(183,184,187)
        62: (186,116, 80) #BA7450 srgb(186,116,80)
        62: (186,187,189) #BABBBD srgb(186,187,189)
        19: (189, 32, 37) #BD2025 srgb(189,32,37)
       404: (189,190,193) #BDBEC1 srgb(189,190,193)
       284: (191,192,195) #BFC0C3 srgb(191,192,195)
         2: (192,126, 50) #C07E32 srgb(192,126,50)
        50: (192,194, 77) #C0C24D srgb(192,194,77)
       112: (193,194,195) #C1C2C3 srgb(193,194,195)
        11: (195, 32, 38) #C32026 srgb(195,32,38)
        16: (196,100, 51) #C46433 srgb(196,100,51)
        33: (197,176, 72) #C5B048 srgb(197,176,72)
        93: (197,198,201) #C5C6C9 srgb(197,198,201)
         4: (198,111, 68) #C66F44 srgb(198,111,68)
        98: (199,200,202) #C7C8CA srgb(199,200,202)
        47: (201,125, 86) #C97D56 srgb(201,125,86)
        14: (203, 30, 36) #CB1E24 srgb(203,30,36)
        29: (203,196, 48) #CBC430 srgb(203,196,48)
       130: (203,203,205) #CBCBCD srgb(203,203,205)
       118: (205, 32, 39) #CD2027 srgb(205,32,39)
        76: (205,205, 71) #CDCD47 srgb(205,205,71)
       213: (206,207,208) #CECFD0 srgb(206,207,208)
       173: (207,103, 51) #CF6733 srgb(207,103,51)
       179: (207,208,210) #CFD0D2 srgb(207,208,210)
        89: (208,103, 52) #D06734 srgb(208,103,52)
        67: (209,105, 53) #D16935 srgb(209,105,53)
        35: (209,143, 52) #D18F34 srgb(209,143,52)
        30: (209,173, 58) #D1AD3A srgb(209,173,58)
        95: (210,210,211) #D2D2D3 srgb(210,210,211)
        11: (211, 32, 39) #D32027 srgb(211,32,39)
        63: (213,109, 57) #D56D39 srgb(213,109,57)
        45: (213,137, 86) #D58956 srgb(213,137,86)
       174: (214,215,216) #D6D7D8 srgb(214,215,216)
        98: (215,216,217) #D7D8D9 srgb(215,216,217)
        40: (216,210, 50) #D8D232 srgb(216,210,50)
        52: (217,113, 62) #D9713E srgb(217,113,62)
         2: (219,200, 67) #DBC843 srgb(219,200,67)
        57: (219,216, 66) #DBD842 srgb(219,216,66)
        73: (219,220,221) #DBDCDD srgb(219,220,221)
        49: (221,118, 67) #DD7643 srgb(221,118,67)
       305: (222,223,224) #DEDFE0 srgb(222,223,224)
       159: (223,224,225) #DFE0E1 srgb(223,224,225)
        84: (226,226,227) #E2E2E3 srgb(226,226,227)
       141: (227,124, 73) #E37C49 srgb(227,124,73)
        49: (230,224, 51) #E6E033 srgb(230,224,51)
       210: (231,231,232) #E7E7E8 srgb(231,231,232)
        30: (232,129, 78) #E8814E srgb(232,129,78)
        58: (232,143, 98) #E88F62 srgb(232,143,98)
        30: (232,177, 56) #E8B138 srgb(232,177,56)
       119: (232,227, 60) #E8E33C srgb(232,227,60)
        13: (235,152, 55) #EB9837 srgb(235,152,55)
       206: (237, 31, 36) #ED1F24 srgb(237,31,36)
        53: (237,134, 83) #ED8653 srgb(237,134,83)
       318: (237,237,238) #EDEDEE srgb(237,237,238)
       107: (239,239,240) #EFEFF0 srgb(239,239,240)
       129: (239,240,240) #EFF0F0 srgb(239,240,240)
        20: (241,210, 48) #F1D230 srgb(241,210,48)
        55: (243,140, 89) #F38C59 srgb(243,140,89)
       315: (243,244,244) #F3F4F4 srgb(243,244,244)
        56: (245,145, 94) #F5915E srgb(245,145,94)
        91: (245,228, 55) #F5E437 srgb(245,228,55)
      1468: (245,238, 54) #F5EE36 srgb(245,238,54)
        93: (247,149,100) #F79564 srgb(247,149,100)
       104: (247,152,103) #F79867 srgb(247,152,103)
      1603: (247,152,104) #F79868 srgb(247,152,104)
        60: (247,212, 56) #F7D438 srgb(247,212,56)
        90: (249,164, 55) #F9A437 srgb(249,164,55)
        87: (249,185, 55) #F9B937 srgb(249,185,55)
        77: (249,218, 55) #F9DA37 srgb(249,218,55)
        96: (250,201, 55) #FAC937 srgb(250,201,55)
        22: (251,227, 49) #FBE331 srgb(251,227,49)
         6: (251,229, 47) #FBE52F srgb(251,229,47)
       139: (251,250,244) #FBFAF4 srgb(251,250,244)
       206: (254,205,  8) #FECD08 srgb(254,205,8)
        42: (254,208, 23) #FED017 srgb(254,208,23)
        43: (254,219, 75) #FEDB4B srgb(254,219,75)
        37: (254,225,108) #FEE16C srgb(254,225,108)
        33: (254,231,137) #FEE789 srgb(254,231,137)
      2942: (255,  0,  0) #FF0000 red
       118: (255, 16, 16) #FF1010 srgb(255,16,16)
        95: (255, 32, 32) #FF2020 srgb(255,32,32)
        78: (255, 48, 48) #FF3030 srgb(255,48,48)
       130: (255, 64, 64) #FF4040 srgb(255,64,64)
        62: (255, 80, 80) #FF5050 srgb(255,80,80)
       107: (255, 96, 96) #FF6060 srgb(255,96,96)
        51: (255,112,112) #FF7070 srgb(255,112,112)
       109: (255,127,127) #FF7F7F srgb(255,127,127)
        55: (255,143,143) #FF8F8F srgb(255,143,143)
        88: (255,159,159) #FF9F9F srgb(255,159,159)
        59: (255,175,175) #FFAFAF srgb(255,175,175)
       142: (255,191,191) #FFBFBF srgb(255,191,191)
        84: (255,207,207) #FFCFCF srgb(255,207,207)
       105: (255,223,223) #FFDFDF srgb(255,223,223)
        23: (255,236,162) #FFECA2 srgb(255,236,162)
        31: (255,239,178) #FFEFB2 srgb(255,239,178)
       125: (255,239,239) #FFEFEF srgb(255,239,239)
         9: (255,242,193) #FFF2C1 srgb(255,242,193)
        31: (255,246,209) #FFF6D1 srgb(255,246,209)
        14: (255,249,224) #FFF9E0 srgb(255,249,224)
    256244: (255,255,255) #FFFFFF white
  Colormap: 256
         0: (  4,  7,  7) #040707 srgb(4,7,7)
         1: (  6,  9, 14) #06090E srgb(6,9,14)
         2: ( 10, 11, 11) #0A0B0B srgb(10,11,11)
         3: ( 20, 11, 10) #140B0A srgb(20,11,10)
         4: ( 19, 18, 12) #13120C srgb(19,18,12)
         5: ( 30, 20, 13) #1E140D srgb(30,20,13)
         6: (  6, 10, 16) #060A10 srgb(6,10,16)
         7: (  9, 13, 19) #090D13 srgb(9,13,19)
         8: (  9, 14, 25) #090E19 srgb(9,14,25)
         9: ( 20, 23, 23) #141717 srgb(20,23,23)
        10: ( 24, 27, 27) #181B1B srgb(24,27,27)
        11: ( 13, 17, 22) #0D1116 srgb(13,17,22)
        12: ( 35, 25, 19) #231913 srgb(35,25,19)
        13: ( 51, 16, 13) #33100D srgb(51,16,13)
        14: ( 53, 36, 24) #352418 srgb(53,36,24)
        15: ( 49, 50, 17) #313211 srgb(49,50,17)
        16: ( 34, 36, 17) #222411 srgb(34,36,17)
        17: ( 11, 17, 34) #0B1122 srgb(11,17,34)
        18: ( 13, 20, 42) #0D142A srgb(13,20,42)
        19: ( 14, 26, 55) #0E1A37 srgb(14,26,55)
        20: ( 19, 23, 56) #131738 srgb(19,23,56)
        21: ( 15, 17, 41) #0F1129 srgb(15,17,41)
        22: ( 30, 33, 33) #1E2121 srgb(30,33,33)
        23: ( 35, 38, 38) #232626 srgb(35,38,38)
        24: ( 41, 43, 43) #292B2B srgb(41,43,43)
        25: ( 46, 49, 50) #2E3132 srgb(46,49,50)
        26: ( 51, 54, 54) #333636 srgb(51,54,54)
        27: ( 57, 59, 60) #393B3C srgb(57,59,60)
        28: ( 51, 50, 42) #33322A srgb(51,50,42)
        29: ( 38, 30, 34) #261E22 srgb(38,30,34)
        30: ( 81, 13, 14) #510D0E srgb(81,13,14)
        31: (100, 12, 13) #640C0D srgb(100,12,13)
        32: (121, 18, 20) #791214 srgb(121,18,20)
        33: (109, 16, 18) #6D1012 srgb(109,16,18)
        34: ( 65, 43, 31) #412B1F srgb(65,43,31)
        35: ( 70, 41, 24) #462918 srgb(70,41,24)
        36: ( 78, 50, 23) #4E3217 srgb(78,50,23)
        37: ( 95, 61, 43) #5F3D2B srgb(95,61,43)
        38: ( 81, 52, 37) #513425 srgb(81,52,37)
        39: ( 76, 58, 54) #4C3A36 srgb(76,58,54)
        40: (111, 58, 31) #6F3A1F srgb(111,58,31)
        41: ( 69, 69, 20) #454514 srgb(69,69,20)
        42: ( 94, 94, 25) #5E5E19 srgb(94,94,25)
        43: ( 80, 68, 22) #504416 srgb(80,68,22)
        44: (106, 81, 27) #6A511B srgb(106,81,27)
        45: (125,123, 31) #7D7B1F srgb(125,123,31)
        46: (109,108, 28) #6D6C1C srgb(109,108,28)
        47: (110, 70, 49) #6E4631 srgb(110,70,49)
        48: (126, 80, 56) #7E5038 srgb(126,80,56)
        49: (119, 72, 42) #77482A srgb(119,72,42)
        50: (110, 95, 42) #6E5F2A srgb(110,95,42)
        51: ( 18, 30, 67) #121E43 srgb(18,30,67)
        52: ( 26, 27, 75) #1A1B4B srgb(26,27,75)
        53: ( 30, 30, 86) #1E1E56 srgb(30,30,86)
        54: ( 20, 35, 77) #14234D srgb(20,35,77)
        55: ( 23, 41, 94) #17295E srgb(23,41,94)
        56: ( 25, 37, 87) #192557 srgb(25,37,87)
        57: ( 33, 32, 95) #21205F srgb(33,32,95)
        58: ( 46, 42, 93) #2E2A5D srgb(46,42,93)
        59: ( 60, 53, 90) #3C355A srgb(60,53,90)
        60: ( 25, 45,103) #192D67 srgb(25,45,103)
        61: ( 27, 48,111) #1B306F srgb(27,48,111)
        62: ( 28, 52,120) #1C3478 srgb(28,52,120)
        63: ( 31, 49,114) #1F3172 srgb(31,49,114)
        64: ( 34, 35, 99) #222363 srgb(34,35,99)
        65: ( 36, 39,105) #242769 srgb(36,39,105)
        66: ( 37, 42,109) #252A6D srgb(37,42,109)
        67: ( 35, 42,101) #232A65 srgb(35,42,101)
        68: ( 38, 45,115) #262D73 srgb(38,45,115)
        69: ( 39, 48,119) #273077 srgb(39,48,119)
        70: ( 39, 50,124) #27327C srgb(39,50,124)
        71: ( 52, 56,109) #34386D srgb(52,56,109)
        72: ( 72, 58, 88) #483A58 srgb(72,58,88)
        73: ( 63, 65, 66) #3F4142 srgb(63,65,66)
        74: ( 55, 71,126) #37477E srgb(55,71,126)
        75: ( 69, 70, 70) #454646 srgb(69,70,70)
        76: ( 75, 75, 75) #4B4B4B srgb(75,75,75)
        77: ( 71, 74, 74) #474A4A srgb(71,74,74)
        78: ( 83, 85, 85) #535555 srgb(83,85,85)
        79: ( 90, 91, 92) #5A5B5C srgb(90,91,92)
        80: ( 87, 85, 87) #575557 srgb(87,85,87)
        81: ( 81, 73, 85) #514955 srgb(81,73,85)
        82: (109, 85, 81) #6D5551 srgb(109,85,81)
        83: (114,104, 84) #726854 srgb(114,104,84)
        84: ( 79, 82,108) #4F526C srgb(79,82,108)
        85: ( 87,105,122) #57697A srgb(87,105,122)
        86: ( 93, 97,102) #5D6166 srgb(93,97,102)
        87: ( 98,100,100) #626464 srgb(98,100,100)
        88: (106,108,108) #6A6C6C srgb(106,108,108)
        89: (103,105,103) #676967 srgb(103,105,103)
        90: (103,116,116) #677474 srgb(103,116,116)
        91: (114,116,116) #727474 srgb(114,116,116)
        92: (121,123,123) #797B7B srgb(121,123,123)
        93: (113,118,106) #71766A srgb(113,118,106)
        94: (104, 86, 99) #685663 srgb(104,86,99)
        95: (152, 26, 30) #981A1E srgb(152,26,30)
        96: (136, 22, 25) #881619 srgb(136,22,25)
        97: (175, 30, 35) #AF1E23 srgb(175,30,35)
        98: (189, 32, 37) #BD2025 srgb(189,32,37)
        99: (175, 25, 29) #AF191D srgb(175,25,29)
       100: (255,  0,  0) #FF0000 red
       101: (255, 16, 16) #FF1010 srgb(255,16,16)
       102: (203, 30, 36) #CB1E24 srgb(203,30,36)
       103: (237, 31, 36) #ED1F24 srgb(237,31,36)
       104: (205, 32, 39) #CD2027 srgb(205,32,39)
       105: (195, 32, 38) #C32026 srgb(195,32,38)
       106: (211, 32, 39) #D32027 srgb(211,32,39)
       107: (255, 32, 32) #FF2020 srgb(255,32,32)
       108: (255, 48, 48) #FF3030 srgb(255,48,48)
       109: (141, 89, 62) #8D593E srgb(141,89,62)
       110: (141, 76, 42) #8D4C2A srgb(141,76,42)
       111: (174, 89, 46) #AE592E srgb(174,89,46)
       112: (151,106, 40) #976A28 srgb(151,106,40)
       113: (179,109, 51) #B36D33 srgb(179,109,51)
       114: (136, 90, 30) #885A1E srgb(136,90,30)
       115: (207,103, 51) #CF6733 srgb(207,103,51)
       116: (196,100, 51) #C46433 srgb(196,100,51)
       117: (209,105, 53) #D16935 srgb(209,105,53)
       118: (213,109, 57) #D56D39 srgb(213,109,57)
       119: (208,103, 52) #D06734 srgb(208,103,52)
       120: (217,113, 62) #D9713E srgb(217,113,62)
       121: (192,126, 50) #C07E32 srgb(192,126,50)
       122: (156, 99, 68) #9C6344 srgb(156,99,68)
       123: (141,115, 79) #8D734F srgb(141,115,79)
       124: (186,116, 80) #BA7450 srgb(186,116,80)
       125: (173,110, 72) #AD6E48 srgb(173,110,72)
       126: (132, 91, 72) #845B48 srgb(132,91,72)
       127: (255, 64, 64) #FF4040 srgb(255,64,64)
       128: (255, 80, 80) #FF5050 srgb(255,80,80)
       129: (221,118, 67) #DD7643 srgb(221,118,67)
       130: (201,125, 86) #C97D56 srgb(201,125,86)
       131: (198,111, 68) #C66F44 srgb(198,111,68)
       132: (227,124, 73) #E37C49 srgb(227,124,73)
       133: (255, 96, 96) #FF6060 srgb(255,96,96)
       134: (255,112,112) #FF7070 srgb(255,112,112)
       135: (255,127,127) #FF7F7F srgb(255,127,127)
       136: (126,138,106) #7E8A6A srgb(126,138,106)
       137: (113,128,112) #718070 srgb(113,128,112)
       138: (150,144, 35) #969023 srgb(150,144,35)
       139: (179,174, 41) #B3AE29 srgb(179,174,41)
       140: (179,144, 43) #B3902B srgb(179,144,43)
       141: (209,143, 52) #D18F34 srgb(209,143,52)
       142: (209,173, 58) #D1AD3A srgb(209,173,58)
       143: (249,164, 55) #F9A437 srgb(249,164,55)
       144: (249,185, 55) #F9B937 srgb(249,185,55)
       145: (232,177, 56) #E8B138 srgb(232,177,56)
       146: (235,152, 55) #EB9837 srgb(235,152,55)
       147: (254,205,  8) #FECD08 srgb(254,205,8)
       148: (254,208, 23) #FED017 srgb(254,208,23)
       149: (216,210, 50) #D8D232 srgb(216,210,50)
       150: (203,196, 48) #CBC430 srgb(203,196,48)
       151: (250,201, 55) #FAC937 srgb(250,201,55)
       152: (247,212, 56) #F7D438 srgb(247,212,56)
       153: (249,218, 55) #F9DA37 srgb(249,218,55)
       154: (241,210, 48) #F1D230 srgb(241,210,48)
       155: (232,227, 60) #E8E33C srgb(232,227,60)
       156: (230,224, 51) #E6E033 srgb(230,224,51)
       157: (245,228, 55) #F5E437 srgb(245,228,55)
       158: (245,238, 54) #F5EE36 srgb(245,238,54)
       159: (251,227, 49) #FBE331 srgb(251,227,49)
       160: (251,229, 47) #FBE52F srgb(251,229,47)
       161: (147,141, 84) #938D54 srgb(147,141,84)
       162: (174,140, 73) #AE8C49 srgb(174,140,73)
       163: (153,161, 94) #99A15E srgb(153,161,94)
       164: (166,172, 89) #A6AC59 srgb(166,172,89)
       165: (167,169, 84) #A7A954 srgb(167,169,84)
       166: (179,183, 83) #B3B753 srgb(179,183,83)
       167: (176,170, 76) #B0AA4C srgb(176,170,76)
       168: (140,150,100) #8C9664 srgb(140,150,100)
       169: (139,133, 98) #8B8562 srgb(139,133,98)
       170: (213,137, 86) #D58956 srgb(213,137,86)
       171: (232,129, 78) #E8814E srgb(232,129,78)
       172: (237,134, 83) #ED8653 srgb(237,134,83)
       173: (243,140, 89) #F38C59 srgb(243,140,89)
       174: (245,145, 94) #F5915E srgb(245,145,94)
       175: (197,176, 72) #C5B048 srgb(197,176,72)
       176: (232,143, 98) #E88F62 srgb(232,143,98)
       177: (247,149,100) #F79564 srgb(247,149,100)
       178: (247,152,104) #F79868 srgb(247,152,104)
       179: (247,152,103) #F79867 srgb(247,152,103)
       180: (205,205, 71) #CDCD47 srgb(205,205,71)
       181: (192,194, 77) #C0C24D srgb(192,194,77)
       182: (219,216, 66) #DBD842 srgb(219,216,66)
       183: (219,200, 67) #DBC843 srgb(219,200,67)
       184: (254,219, 75) #FEDB4B srgb(254,219,75)
       185: (254,225,108) #FEE16C srgb(254,225,108)
       186: ( 30, 55,129) #1E3781 srgb(30,55,129)
       187: ( 38, 54,130) #263682 srgb(38,54,130)
       188: ( 38, 56,134) #263886 srgb(38,56,134)
       189: ( 36, 59,139) #243B8B srgb(36,59,139)
       190: ( 34, 62,146) #223E92 srgb(34,62,146)
       191: ( 47, 73,140) #2F498C srgb(47,73,140)
       192: ( 60, 84,135) #3C5487 srgb(60,84,135)
       193: ( 51, 70,133) #334685 srgb(51,70,133)
       194: ( 74, 95,129) #4A5F81 srgb(74,95,129)
       195: (125,127,129) #7D7F81 srgb(125,127,129)
       196: (127,128,129) #7F8081 srgb(127,128,129)
       197: (130,131,132) #828384 srgb(130,131,132)
       198: (138,140,143) #8A8C8F srgb(138,140,143)
       199: (134,136,137) #868889 srgb(134,136,137)
       200: (140,142,145) #8C8E91 srgb(140,142,145)
       201: (143,144,147) #8F9093 srgb(143,144,147)
       202: (146,147,148) #929394 srgb(146,147,148)
       203: (148,150,153) #949699 srgb(148,150,153)
       204: (150,152,155) #96989B srgb(150,152,155)
       205: (154,155,157) #9A9B9D srgb(154,155,157)
       206: (152,151,151) #989797 srgb(152,151,151)
       207: (144,144,143) #90908F srgb(144,144,143)
       208: (156,158,161) #9C9EA1 srgb(156,158,161)
       209: (158,160,163) #9EA0A3 srgb(158,160,163)
       210: (161,163,164) #A1A3A4 srgb(161,163,164)
       211: (164,166,169) #A4A6A9 srgb(164,166,169)
       212: (167,169,172) #A7A9AC srgb(167,169,172)
       213: (170,171,173) #AAABAD srgb(170,171,173)
       214: (172,174,177) #ACAEB1 srgb(172,174,177)
       215: (175,176,179) #AFB0B3 srgb(175,176,179)
       216: (177,179,180) #B1B3B4 srgb(177,179,180)
       217: (181,182,185) #B5B6B9 srgb(181,182,185)
       218: (183,184,187) #B7B8BB srgb(183,184,187)
       219: (186,187,189) #BABBBD srgb(186,187,189)
       220: (159,160,159) #9FA09F srgb(159,160,159)
       221: (255,143,143) #FF8F8F srgb(255,143,143)
       222: (255,159,159) #FF9F9F srgb(255,159,159)
       223: (255,175,175) #FFAFAF srgb(255,175,175)
       224: (255,191,191) #FFBFBF srgb(255,191,191)
       225: (254,231,137) #FEE789 srgb(254,231,137)
       226: (255,239,178) #FFEFB2 srgb(255,239,178)
       227: (255,236,162) #FFECA2 srgb(255,236,162)
       228: (189,190,193) #BDBEC1 srgb(189,190,193)
       229: (191,192,195) #BFC0C3 srgb(191,192,195)
       230: (193,194,195) #C1C2C3 srgb(193,194,195)
       231: (197,198,201) #C5C6C9 srgb(197,198,201)
       232: (203,203,205) #CBCBCD srgb(203,203,205)
       233: (199,200,202) #C7C8CA srgb(199,200,202)
       234: (206,207,208) #CECFD0 srgb(206,207,208)
       235: (207,208,210) #CFD0D2 srgb(207,208,210)
       236: (210,210,211) #D2D2D3 srgb(210,210,211)
       237: (214,215,216) #D6D7D8 srgb(214,215,216)
       238: (215,216,217) #D7D8D9 srgb(215,216,217)
       239: (219,220,221) #DBDCDD srgb(219,220,221)
       240: (255,207,207) #FFCFCF srgb(255,207,207)
       241: (255,223,223) #FFDFDF srgb(255,223,223)
       242: (255,242,193) #FFF2C1 srgb(255,242,193)
       243: (255,246,209) #FFF6D1 srgb(255,246,209)
       244: (222,223,224) #DEDFE0 srgb(222,223,224)
       245: (223,224,225) #DFE0E1 srgb(223,224,225)
       246: (226,226,227) #E2E2E3 srgb(226,226,227)
       247: (237,237,238) #EDEDEE srgb(237,237,238)
       248: (231,231,232) #E7E7E8 srgb(231,231,232)
       249: (255,239,239) #FFEFEF srgb(255,239,239)
       250: (239,239,240) #EFEFF0 srgb(239,239,240)
       251: (239,240,240) #EFF0F0 srgb(239,240,240)
       252: (243,244,244) #F3F4F4 srgb(243,244,244)
       253: (255,255,255) #FFFFFF white
       254: (251,250,244) #FBFAF4 srgb(251,250,244)
       255: (255,249,224) #FFF9E0 srgb(255,249,224)
  Rendering intent: Perceptual
  Gamma: 0.45455
  Chromaticity:
    red primary: (0.64,0.33)
    green primary: (0.3,0.6)
    blue primary: (0.15,0.06)
    white point: (0.3127,0.3127)
  Interlace: None
  Background color: white
  Border color: srgb(223,223,223)
  Matte color: grey74
  Transparent color: black
  Compose: Over
  Page geometry: 640x480+0+0
  Dispose: Undefined
  Compression: LZW
  Orientation: Undefined
  Properties:
    date:create: 2012-05-01T14:49:55+01:00
    date:modify: 2012-05-01T14:49:55+01:00
    signature: 5c701306a9a985a0c93c8d11a1e761d7f8637577697fc60d7189b221388f8edf
  Profiles:
    Profile-icc: 3144 bytes
      IEC 61966-2.1 Default RGB colour space - sRGB
  Artifacts:
    filename: logo.miff
    verbose: true
  Tainted: False
  Filesize: 38.3KB
  Number pixels: 307K
  Pixels per second: 3.072PB
  User time: 0.000u
  Elapsed time: 0:01.000
  Version: ImageMagick 6.7.6-8 2012-05-01 Q16 http://www.imagemagick.org
However, using "convert fits:original.FIT original.miff" throws up the following errors:

Code: Select all

convert: unexpected end-of-file `original.FIT': No such file or directory @ error/fits.c/ReadFITSImage/406.
convert: image type not supported `original.FIT' @ error/fits.c/ReadFITSImage/410.
convert: no images defined `original.miff' @ error/convert.c/ConvertImageCommand/3018
Also "convert -debug configure" gives:

Code: Select all

2012-05-01T15:03:52+01:00 0:00.000 0.000u 6.7.6 Configure convert[22234]: utility.c/ExpandFilenames/928/Configure
  Command line: convert {-debug} {configure}
2012-05-01T15:03:52+01:00 0:00.000 0.000u 6.7.6 Configure convert[22234]: locale.c/LoadLocaleList/1092/Configure
  Loading locale configure file "/usr/local/share/ImageMagick-6.7.6/locale.xml" ...
2012-05-01T15:03:52+01:00 0:00.000 0.000u 6.7.6 Configure convert[22234]: locale.c/LoadLocaleList/1092/Configure
  Loading locale configure file "/usr/local/share/ImageMagick-6.7.6/english.xml" ...
convert: missing an image filename `configure' @ error/convert.c/ConvertImageCommand/3015.
But no mention of any modules... Did I misunderstand how to run the debug command?

Finally, I ran "convert -list Delegates":

Code: Select all

Path: /usr/local/etc/ImageMagick/delegates.xml

Delegate                Command
-------------------------------------------------------------------------------
    blender =>          "blender" -b "%i" -F PNG -o "%o""\n"convert" -concatenate "%o*.png" "%o"
        cdr =>          "uniconvertor" "%i" "%o.svg"; mv "%o.svg" "%o"
        cgm =>          "ralcgm" -d ps -oC < "%i" > "%o" 2> "%Z"
 dng:decode =>          "ufraw-batch" --silent --create-id=also --out-type=png --out-depth=16 "--output=%u.png" "%i"
        dvi =>          "dvips" -q -o "%o" "%i"
        eps<=>pdf       "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 "-sDEVICE=pdfwrite" "-sOutputFile=%o" "-f%i"
        eps<=>ps        "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pswrite" "-sOutputFile=%o" "-f%i"
        fig =>          "fig2dev" -L ps "%i" "%o"
        hpg =>          "hp2xx" -q -m eps -f `basename "%o"` "%i";     mv -f `basename "%o"` "%o"
       hpgl =>          "if [ -e hp2xx -o -e /usr/bin/hp2xx ]; then     hp2xx -q -m eps -f `basename "%o"` "%i";     mv -f `basename "%o"` "%o";   else     echo "You need to install hp2xx to use HPGL files with ImageMagick.";     exit 1;   fi"
        htm =>          "html2ps" -U -o "%o" "%i"
       html =>          "html2ps" -U -o "%o" "%i"
      https =>          "curl" -s -k -o "%o" "https:%M"
       ilbm =>          "ilbmtoppm" "%i" > "%o"
        man =>          "groff" -man -Tps "%i" > "%o"
       miff<= show      "/usr/local/bin/display" -delay 0 -window-group %[group] -title "%l " "ephemeral:%i"
mpeg:decode =>          "ffmpeg" -v -1 -i "%i" -vframes %S -vcodec pam -an -f rawvideo -y "%u.pam" 2> "%Z"
        pdf<=>eps       "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=epswrite" "-sOutputFile=%o" "-f%i"
        pdf<=>ps        "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pswrite" "-sOutputFile=%o" "-f%i"
        plt =>          "echo" "set size 1.25,0.62; set terminal postscript portrait color solid; set output \'%o\'; load \'%i\'" > "%u";"gnuplot" "%u"
        pnm<= ilbm      "ppmtoilbm" -24if "%i" > "%o"
        pov =>          "povray" "+i%i" -D0 +o"%o" +fn%q +w%w +h%h +a -q9 -kfi"%s" -kff"%n"\n"convert" -concatenate "%o*.png" "%o"
         ps<=>eps       "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=epswrite" "-sOutputFile=%o" "-f%i"
         ps<=>pdf       "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pdfwrite" "-sOutputFile=%o" "-f%i"
         ps<= print     "lpr "%i"
       rgba<= rle       "rawtorle" -o "%o" -v "%i"
       scan =>          "scanimage" -d "%i" > "%o"
      scanx =>          "scanimage" > "%o"
      shtml =>          "html2ps" -U -o "%o" "%i"
        sid =>          "mrsidgeodecode" -if sid -i "%i" -of tif -o "%o" > "%u"
        svg =>          "rsvg-convert" -o "%o" "%i"
       tiff<= launch    "gimp" "%i"
        txt<=>ps        "enscript" -o "%o" "%i"
        wmf =>          "wmf2eps" -o "%o" "%i"
So I am guessing that ImageMagick doesn't know where to look for the modules, but I don't know how to correct this... Do I need to run Magick-config and add the appropriate flags to point to the module directory above? Or am I missing something during my compilation?
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Re: problem converting grayscale 16-bit FIT to TIFF

Post by magick »

It should be -debug module. Also verify original.FIT is indeed a FITS file. Ours starts with 'SIMPLE ='. Otherwise we're clueless why its failing for you.
Light
Posts: 8
Joined: 2012-04-30T13:28:31-07:00
Authentication code: 13

Re: problem converting grayscale 16-bit FIT to TIFF

Post by Light »

Thank you very much for all your help magick - it has been invaluable!

As it turns out I recompiled on my openSUSE box with "./configure --enable-hdri=yes --with-modules=yes --enable-delegate-build=yes" and I can now use the convert command again :)

Now by using 'identify' on my three images I get the following output for each:
  • original.FIT:

    Code: Select all

    original.FIT FITS 660x500 660x500+0+0 16-bit DirectClass 668KB 0.020u 0:00.019
    original.tif (converted using the latest build of IM)

    Code: Select all

    original.tif TIFF 660x500 660x500+0+0 16-bit Grayscale DirectClass 661KB 0.000u 0:00.000
    imagej.tif:

    Code: Select all

    imagej.tiff TIFF 660x500 660x500+0+0 16-bit Grayscale DirectClass 668KB 0.000u 0:00.000
    identify: imagej.tif: unknown field with tag 50838 (0xc696) encountered. `TIFFReadDirectory' @ warning/tiff.c/TIFFWarnings/768.
    identify: imagej.tif: unknown field with tag 50839 (0xc697) encountered. `TIFFReadDirectory' @ warning/tiff.c/TIFFWarnings/768.
    
So it looks like imagej is at fault and did not convert the FITS file correctly! I think it must've been my understanding of TIFF and FITS files and their respective intensity values that I did not understand :? I am going to try converting an image sequence (with subtraction of a background image) and comparing the results to my research group's previous conversion software (ImageTOOLSca in Windows) - so I'll post again when I've checked everything...

Once again thanks a million for all your help :D
Light
Posts: 8
Joined: 2012-04-30T13:28:31-07:00
Authentication code: 13

Re: problem converting grayscale 16-bit FIT to TIFF

Post by Light »

Okay, here is the latest... The ImageVIEWca matches the original, but once again I have the intensity value issues when using convert :( I have tried the original command I posted, as well as a few others such as "convert -colorspace Gray FITS:original.FIT -colorspace Gray TIFF:original.tif" used above*. In any case, I have convinced myself its a simple case of I am not getting the convert command usage quite right, but...

The other interesting tidbit I have is that the FITS file does not specify it is a grayscale image when using identify - I don't know how relevant this is because as far as I know FITS files only come as grayscale images... Maybe somebody can tell me where I'm going wrong.

Thanks in advance for any further help :)

EDIT: 'convert -version' output:

Code: Select all

Version: ImageMagick 6.7.6-8 2012-05-02 Q16 http://www.imagemagick.org
Copyright: Copyright (C) 1999-2012 ImageMagick Studio LLC
Features: OpenMP  HDRI
 
Light
Posts: 8
Joined: 2012-04-30T13:28:31-07:00
Authentication code: 13

Re: problem converting grayscale 16-bit FIT to TIFF

Post by Light »

Sorry for the late info...
Here is the header to original.FIT:

Code: Select all

SIMPLE	T /
BITPIX	16 /
NAXIS	2 /
NAXIS1	660 /
NAXIS2	500 /
OBJECT	'0eV'
TELESCOP	''
INSTRUME	'Starlight Xpress CCD'
OBSERVER	''
ORIGIN	''
DATE-OBS	'2012-03-04'
TIME-OBS	'10:54:14'
HISTORY	''
HISTORY	''
HISTORY	''
HISTORY	''
HISTORY	''
HISTORY	''
HISTORY	''
HISTORY	''
HISTORY	''
HISTORY	''
HISTORY	''
HISTORY	''
HISTORY	''
HISTORY	''
HISTORY	''
HISTORY	'                                                                    '
HISTORY	'                                                                    '
HISTORY	'                                                                    '
HISTORY	'                                                                    '
COMMENT	'                                                                    '
COMMENT	'                                                                    '
COMMENT	'                                                                    '
COMMENT	'                                                                    '
BZERO	+3.2768000000E+04
BSCALE	+1.0000000000E+00
PIXWIDTH	7.4000000000E-03
PIXHEIGH	7.4000000000E-03
SATURATE	65535
EXPTIME	1.0000000000E+00
FOCALLEN	0.0000000000E+00
APERTURE	0.0000000000E+00
FILTER	'None'
The file seems to be okay. Again, I'm clueless why the conversion doesn't work as expected... Please could anyone help out with this (or add their comments on this)?
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Re: problem converting grayscale 16-bit FIT to TIFF

Post by magick »

Add -normalize to your command line to stretch the contrast.
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: problem converting grayscale 16-bit FIT to TIFF

Post by fmw42 »

magick wrote:Add -normalize to your command line to stretch the contrast.
or -auto-level if you do not want any clipping but just stretch the min and max to black and white
Light
Posts: 8
Joined: 2012-04-30T13:28:31-07:00
Authentication code: 13

Re: problem converting grayscale 16-bit FIT to TIFF

Post by Light »

Thank you very much fmw42 and magic for your helpful replies :D

As it happens -auto-level was just what I was after (I do not want to lose any information when I do post-processing on the image sequence) - it seems to work a charm!
Post Reply