├── .gitignore ├── IM_Test ├── .gitignore ├── Classes │ ├── IM_TestAppDelegate.h │ ├── IM_TestAppDelegate.m │ ├── IM_TestViewController.h │ └── IM_TestViewController.m ├── Default-568h@2x.png ├── IM │ ├── include │ │ ├── im_config │ │ │ ├── coder.xml │ │ │ ├── colors.xml │ │ │ ├── delegates.xml │ │ │ ├── english.xml │ │ │ ├── francais.xml │ │ │ ├── locale.xml │ │ │ ├── log.xml │ │ │ ├── magic.xml │ │ │ ├── mime.xml │ │ │ ├── policy.xml │ │ │ ├── quantization-table.xml │ │ │ ├── thresholds.xml │ │ │ ├── type-dejavu.xml │ │ │ ├── type-ghostscript.xml │ │ │ ├── type-windows.xml │ │ │ └── type.xml │ │ ├── jpeg │ │ │ ├── jconfig.h │ │ │ ├── jerror.h │ │ │ ├── jmorecfg.h │ │ │ └── jpeglib.h │ │ ├── magick │ │ │ ├── ImageMagick.h │ │ │ ├── MagickCore.h │ │ │ ├── PreRvIcccm.h │ │ │ ├── accelerate.h │ │ │ ├── animate.h │ │ │ ├── annotate.h │ │ │ ├── api.h │ │ │ ├── artifact.h │ │ │ ├── attribute.h │ │ │ ├── blob.h │ │ │ ├── cache-view.h │ │ │ ├── cache.h │ │ │ ├── channel.h │ │ │ ├── cipher.h │ │ │ ├── client.h │ │ │ ├── coder.h │ │ │ ├── color.h │ │ │ ├── colormap.h │ │ │ ├── colorspace.h │ │ │ ├── compare.h │ │ │ ├── composite.h │ │ │ ├── compress.h │ │ │ ├── configure.h │ │ │ ├── constitute.h │ │ │ ├── decorate.h │ │ │ ├── delegate.h │ │ │ ├── deprecate.h │ │ │ ├── display.h │ │ │ ├── distort.h │ │ │ ├── distribute-cache.h │ │ │ ├── draw.h │ │ │ ├── effect.h │ │ │ ├── enhance.h │ │ │ ├── exception.h │ │ │ ├── feature.h │ │ │ ├── fourier.h │ │ │ ├── fx.h │ │ │ ├── gem.h │ │ │ ├── geometry.h │ │ │ ├── hashmap.h │ │ │ ├── histogram.h │ │ │ ├── identify.h │ │ │ ├── image-view.h │ │ │ ├── image.h │ │ │ ├── layer.h │ │ │ ├── list.h │ │ │ ├── locale_.h │ │ │ ├── log.h │ │ │ ├── magic.h │ │ │ ├── magick-baseconfig.h │ │ │ ├── magick-config.h │ │ │ ├── magick-type.h │ │ │ ├── magick.h │ │ │ ├── matrix.h │ │ │ ├── memory_.h │ │ │ ├── method-attribute.h │ │ │ ├── methods.h │ │ │ ├── mime.h │ │ │ ├── module.h │ │ │ ├── monitor.h │ │ │ ├── montage.h │ │ │ ├── morphology.h │ │ │ ├── opencl.h │ │ │ ├── option.h │ │ │ ├── paint.h │ │ │ ├── pixel-accessor.h │ │ │ ├── pixel.h │ │ │ ├── policy.h │ │ │ ├── prepress.h │ │ │ ├── profile.h │ │ │ ├── property.h │ │ │ ├── quantize.h │ │ │ ├── quantum.h │ │ │ ├── random_.h │ │ │ ├── registry.h │ │ │ ├── resample.h │ │ │ ├── resize.h │ │ │ ├── resource_.h │ │ │ ├── segment.h │ │ │ ├── semaphore.h │ │ │ ├── shear.h │ │ │ ├── signature.h │ │ │ ├── splay-tree.h │ │ │ ├── statistic.h │ │ │ ├── stream.h │ │ │ ├── string_.h │ │ │ ├── studio.h │ │ │ ├── threshold.h │ │ │ ├── timer.h │ │ │ ├── token.h │ │ │ ├── transform.h │ │ │ ├── type.h │ │ │ ├── utility.h │ │ │ ├── version.h │ │ │ ├── widget.h │ │ │ ├── xml-tree.h │ │ │ └── xwindow.h │ │ ├── png │ │ │ ├── png.h │ │ │ ├── pngconf.h │ │ │ └── pnglibconf.h │ │ ├── tiff │ │ │ ├── tiff.h │ │ │ ├── tiffconf.h │ │ │ ├── tiffio.h │ │ │ └── tiffvers.h │ │ └── wand │ │ │ ├── MagickWand.h │ │ │ ├── animate.h │ │ │ ├── compare.h │ │ │ ├── composite.h │ │ │ ├── conjure.h │ │ │ ├── convert.h │ │ │ ├── deprecate.h │ │ │ ├── display.h │ │ │ ├── drawing-wand.h │ │ │ ├── identify.h │ │ │ ├── import.h │ │ │ ├── magick-image.h │ │ │ ├── magick-property.h │ │ │ ├── magick-wand.h │ │ │ ├── magick_wand.h │ │ │ ├── method-attribute.h │ │ │ ├── mogrify.h │ │ │ ├── montage.h │ │ │ ├── pixel-iterator.h │ │ │ ├── pixel-wand.h │ │ │ ├── stream.h │ │ │ └── wand-view.h │ ├── libMagickCore.a │ ├── libMagickWand.a │ ├── libjpeg.a │ ├── libpng.a │ └── libtiff.a ├── IM_Test-Info.plist ├── IM_Test.xcodeproj │ └── project.pbxproj ├── IM_TestViewController.xib ├── IM_Test_Prefix.pch ├── MainWindow.xib ├── benchmarks.txt ├── iphone.png ├── iphone.tif └── main.m ├── README.textile ├── all.sh ├── compile_im.sh ├── compile_jpeg.sh ├── compile_png.sh ├── compile_tiff.sh ├── env.sh ├── flags.sh └── utils.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/.gitignore -------------------------------------------------------------------------------- /IM_Test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/.gitignore -------------------------------------------------------------------------------- /IM_Test/Classes/IM_TestAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/Classes/IM_TestAppDelegate.h -------------------------------------------------------------------------------- /IM_Test/Classes/IM_TestAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/Classes/IM_TestAppDelegate.m -------------------------------------------------------------------------------- /IM_Test/Classes/IM_TestViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/Classes/IM_TestViewController.h -------------------------------------------------------------------------------- /IM_Test/Classes/IM_TestViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/Classes/IM_TestViewController.m -------------------------------------------------------------------------------- /IM_Test/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/Default-568h@2x.png -------------------------------------------------------------------------------- /IM_Test/IM/include/im_config/coder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/im_config/coder.xml -------------------------------------------------------------------------------- /IM_Test/IM/include/im_config/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/im_config/colors.xml -------------------------------------------------------------------------------- /IM_Test/IM/include/im_config/delegates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/im_config/delegates.xml -------------------------------------------------------------------------------- /IM_Test/IM/include/im_config/english.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/im_config/english.xml -------------------------------------------------------------------------------- /IM_Test/IM/include/im_config/francais.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/im_config/francais.xml -------------------------------------------------------------------------------- /IM_Test/IM/include/im_config/locale.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/im_config/locale.xml -------------------------------------------------------------------------------- /IM_Test/IM/include/im_config/log.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/im_config/log.xml -------------------------------------------------------------------------------- /IM_Test/IM/include/im_config/magic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/im_config/magic.xml -------------------------------------------------------------------------------- /IM_Test/IM/include/im_config/mime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/im_config/mime.xml -------------------------------------------------------------------------------- /IM_Test/IM/include/im_config/policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/im_config/policy.xml -------------------------------------------------------------------------------- /IM_Test/IM/include/im_config/quantization-table.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/im_config/quantization-table.xml -------------------------------------------------------------------------------- /IM_Test/IM/include/im_config/thresholds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/im_config/thresholds.xml -------------------------------------------------------------------------------- /IM_Test/IM/include/im_config/type-dejavu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/im_config/type-dejavu.xml -------------------------------------------------------------------------------- /IM_Test/IM/include/im_config/type-ghostscript.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/im_config/type-ghostscript.xml -------------------------------------------------------------------------------- /IM_Test/IM/include/im_config/type-windows.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/im_config/type-windows.xml -------------------------------------------------------------------------------- /IM_Test/IM/include/im_config/type.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/im_config/type.xml -------------------------------------------------------------------------------- /IM_Test/IM/include/jpeg/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/jpeg/jconfig.h -------------------------------------------------------------------------------- /IM_Test/IM/include/jpeg/jerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/jpeg/jerror.h -------------------------------------------------------------------------------- /IM_Test/IM/include/jpeg/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/jpeg/jmorecfg.h -------------------------------------------------------------------------------- /IM_Test/IM/include/jpeg/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/jpeg/jpeglib.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/ImageMagick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/ImageMagick.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/MagickCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/MagickCore.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/PreRvIcccm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/PreRvIcccm.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/accelerate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/accelerate.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/animate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/animate.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/annotate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/annotate.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/api.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/artifact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/artifact.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/attribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/attribute.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/blob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/blob.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/cache-view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/cache-view.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/cache.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/channel.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/cipher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/cipher.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/client.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/coder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/coder.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/color.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/colormap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/colormap.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/colorspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/colorspace.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/compare.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/composite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/composite.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/compress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/compress.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/configure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/configure.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/constitute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/constitute.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/decorate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/decorate.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/delegate.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/deprecate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/deprecate.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/display.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/distort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/distort.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/distribute-cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/distribute-cache.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/draw.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/effect.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/enhance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/enhance.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/exception.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/feature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/feature.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/fourier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/fourier.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/fx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/fx.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/gem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/gem.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/geometry.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/hashmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/hashmap.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/histogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/histogram.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/identify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/identify.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/image-view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/image-view.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/image.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/layer.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/list.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/locale_.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/locale_.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/log.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/magic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/magic.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/magick-baseconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/magick-baseconfig.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/magick-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/magick-config.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/magick-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/magick-type.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/magick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/magick.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/matrix.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/memory_.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/memory_.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/method-attribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/method-attribute.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/methods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/methods.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/mime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/mime.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/module.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/monitor.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/montage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/montage.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/morphology.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/morphology.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/opencl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/opencl.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/option.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/paint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/paint.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/pixel-accessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/pixel-accessor.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/pixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/pixel.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/policy.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/prepress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/prepress.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/profile.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/property.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/quantize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/quantize.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/quantum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/quantum.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/random_.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/random_.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/registry.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/resample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/resample.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/resize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/resize.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/resource_.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/resource_.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/segment.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/semaphore.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/shear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/shear.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/signature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/signature.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/splay-tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/splay-tree.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/statistic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/statistic.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/stream.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/string_.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/string_.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/studio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/studio.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/threshold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/threshold.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/timer.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/token.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/transform.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/type.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/utility.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/version.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/widget.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/xml-tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/xml-tree.h -------------------------------------------------------------------------------- /IM_Test/IM/include/magick/xwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/magick/xwindow.h -------------------------------------------------------------------------------- /IM_Test/IM/include/png/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/png/png.h -------------------------------------------------------------------------------- /IM_Test/IM/include/png/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/png/pngconf.h -------------------------------------------------------------------------------- /IM_Test/IM/include/png/pnglibconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/png/pnglibconf.h -------------------------------------------------------------------------------- /IM_Test/IM/include/tiff/tiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/tiff/tiff.h -------------------------------------------------------------------------------- /IM_Test/IM/include/tiff/tiffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/tiff/tiffconf.h -------------------------------------------------------------------------------- /IM_Test/IM/include/tiff/tiffio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/tiff/tiffio.h -------------------------------------------------------------------------------- /IM_Test/IM/include/tiff/tiffvers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/tiff/tiffvers.h -------------------------------------------------------------------------------- /IM_Test/IM/include/wand/MagickWand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/wand/MagickWand.h -------------------------------------------------------------------------------- /IM_Test/IM/include/wand/animate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/wand/animate.h -------------------------------------------------------------------------------- /IM_Test/IM/include/wand/compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/wand/compare.h -------------------------------------------------------------------------------- /IM_Test/IM/include/wand/composite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/wand/composite.h -------------------------------------------------------------------------------- /IM_Test/IM/include/wand/conjure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/wand/conjure.h -------------------------------------------------------------------------------- /IM_Test/IM/include/wand/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/wand/convert.h -------------------------------------------------------------------------------- /IM_Test/IM/include/wand/deprecate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/wand/deprecate.h -------------------------------------------------------------------------------- /IM_Test/IM/include/wand/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/wand/display.h -------------------------------------------------------------------------------- /IM_Test/IM/include/wand/drawing-wand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/wand/drawing-wand.h -------------------------------------------------------------------------------- /IM_Test/IM/include/wand/identify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/wand/identify.h -------------------------------------------------------------------------------- /IM_Test/IM/include/wand/import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/wand/import.h -------------------------------------------------------------------------------- /IM_Test/IM/include/wand/magick-image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/wand/magick-image.h -------------------------------------------------------------------------------- /IM_Test/IM/include/wand/magick-property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/wand/magick-property.h -------------------------------------------------------------------------------- /IM_Test/IM/include/wand/magick-wand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/wand/magick-wand.h -------------------------------------------------------------------------------- /IM_Test/IM/include/wand/magick_wand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/wand/magick_wand.h -------------------------------------------------------------------------------- /IM_Test/IM/include/wand/method-attribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/wand/method-attribute.h -------------------------------------------------------------------------------- /IM_Test/IM/include/wand/mogrify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/wand/mogrify.h -------------------------------------------------------------------------------- /IM_Test/IM/include/wand/montage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/wand/montage.h -------------------------------------------------------------------------------- /IM_Test/IM/include/wand/pixel-iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/wand/pixel-iterator.h -------------------------------------------------------------------------------- /IM_Test/IM/include/wand/pixel-wand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/wand/pixel-wand.h -------------------------------------------------------------------------------- /IM_Test/IM/include/wand/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/wand/stream.h -------------------------------------------------------------------------------- /IM_Test/IM/include/wand/wand-view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/include/wand/wand-view.h -------------------------------------------------------------------------------- /IM_Test/IM/libMagickCore.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/libMagickCore.a -------------------------------------------------------------------------------- /IM_Test/IM/libMagickWand.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/libMagickWand.a -------------------------------------------------------------------------------- /IM_Test/IM/libjpeg.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/libjpeg.a -------------------------------------------------------------------------------- /IM_Test/IM/libpng.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/libpng.a -------------------------------------------------------------------------------- /IM_Test/IM/libtiff.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM/libtiff.a -------------------------------------------------------------------------------- /IM_Test/IM_Test-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM_Test-Info.plist -------------------------------------------------------------------------------- /IM_Test/IM_Test.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM_Test.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /IM_Test/IM_TestViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM_TestViewController.xib -------------------------------------------------------------------------------- /IM_Test/IM_Test_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/IM_Test_Prefix.pch -------------------------------------------------------------------------------- /IM_Test/MainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/MainWindow.xib -------------------------------------------------------------------------------- /IM_Test/benchmarks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/benchmarks.txt -------------------------------------------------------------------------------- /IM_Test/iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/iphone.png -------------------------------------------------------------------------------- /IM_Test/iphone.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/iphone.tif -------------------------------------------------------------------------------- /IM_Test/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/IM_Test/main.m -------------------------------------------------------------------------------- /README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/README.textile -------------------------------------------------------------------------------- /all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/all.sh -------------------------------------------------------------------------------- /compile_im.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/compile_im.sh -------------------------------------------------------------------------------- /compile_jpeg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/compile_jpeg.sh -------------------------------------------------------------------------------- /compile_png.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/compile_png.sh -------------------------------------------------------------------------------- /compile_tiff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/compile_tiff.sh -------------------------------------------------------------------------------- /env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/env.sh -------------------------------------------------------------------------------- /flags.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/flags.sh -------------------------------------------------------------------------------- /utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marforic/imagemagick_lib_iphone/HEAD/utils.sh --------------------------------------------------------------------------------