实例介绍
能用 好用的 FreeImage,本网站已经有两个了,但是下载后不能解压的, 于是找了好久,终于找到,给大家分享吧。
【实例截图】
【核心代码】
4744302543308382220.gz
└── freeimage-3.10.0
├── clean.bat
├── clean.sh
├── Dist
│ └── delete.me
├── Examples
│ ├── Generic
│ │ ├── BatchLoad.cpp
│ │ ├── CloneMultiPage.cpp
│ │ ├── CreateAlpha.cpp
│ │ ├── FIFImportExport.cpp
│ │ ├── FIIO_Mem.cpp
│ │ ├── FIIO_Mem.h
│ │ ├── LoadFromHandle.cpp
│ │ ├── LoadFromMemory-classified.cpp
│ │ ├── LoadFromMemory.cpp
│ │ └── ShowMetadata.cpp
│ ├── Linux
│ │ ├── linux-gtk.c
│ │ ├── linux-svgalib.c
│ │ └── Makefile
│ └── Plugin
│ ├── PluginCradle.cpp
│ └── PluginCradle.h
├── extra.Debian
│ ├── FreeImage3100.pdf
│ └── FreeImage380Chinese.pdf
├── fipMakefile.srcs
├── FreeImage.2003.sln
├── FreeImage.2003.vcproj
├── FreeImage.2005.sln
├── FreeImage.2005.vcproj
├── FreeImage.rc
├── genfipsrclist.sh
├── gensrclist.sh
├── license-fi.txt
├── license-gpl.txt
├── Makefile
├── Makefile.cygwin
├── Makefile.fip
├── Makefile.gnu
├── Makefile.osx
├── Makefile.solaris
├── Makefile.srcs
├── README.linux
├── README.minGW
├── README.osx
├── README.solaris
├── Source
│ ├── CacheFile.h
│ ├── DeprecationManager
│ │ ├── DeprecationMgr.cpp
│ │ └── DeprecationMgr.h
│ ├── FreeImage
│ │ ├── BitmapAccess.cpp
│ │ ├── CacheFile.cpp
│ │ ├── ColorLookup.cpp
│ │ ├── Conversion16_555.cpp
│ │ ├── Conversion16_565.cpp
│ │ ├── Conversion24.cpp
│ │ ├── Conversion32.cpp
│ │ ├── Conversion4.cpp
│ │ ├── Conversion8.cpp
│ │ ├── Conversion.cpp
│ │ ├── ConversionRGBF.cpp
│ │ ├── ConversionType.cpp
│ │ ├── FreeImageC.c
│ │ ├── FreeImage.cpp
│ │ ├── FreeImageIO.cpp
│ │ ├── GetType.cpp
│ │ ├── Halftoning.cpp
│ │ ├── J2KHelper.cpp
│ │ ├── MemoryIO.cpp
│ │ ├── MultiPage.cpp
│ │ ├── NNQuantizer.cpp
│ │ ├── PixelAccess.cpp
│ │ ├── PluginBMP.cpp
│ │ ├── Plugin.cpp
│ │ ├── PluginCUT.cpp
│ │ ├── PluginDDS.cpp
│ │ ├── PluginEXR.cpp
│ │ ├── PluginG3.cpp
│ │ ├── PluginGIF.cpp
│ │ ├── PluginHDR.cpp
│ │ ├── PluginICO.cpp
│ │ ├── PluginIFF.cpp
│ │ ├── PluginJ2K.cpp
│ │ ├── PluginJP2.cpp
│ │ ├── PluginJPEG.cpp
│ │ ├── PluginKOALA.cpp
│ │ ├── PluginMNG.cpp
│ │ ├── PluginPCD.cpp
│ │ ├── PluginPCX.cpp
│ │ ├── PluginPNG.cpp
│ │ ├── PluginPNM.cpp
│ │ ├── PluginPSD.cpp
│ │ ├── PluginRAS.cpp
│ │ ├── PluginSGI.cpp
│ │ ├── PluginTARGA.cpp
│ │ ├── PluginTIFF.cpp
│ │ ├── PluginWBMP.cpp
│ │ ├── PluginXBM.cpp
│ │ ├── PluginXPM.cpp
│ │ ├── tmoColorConvert.cpp
│ │ ├── tmoDrago03.cpp
│ │ ├── tmoFattal02.cpp
│ │ ├── tmoReinhard05.cpp
│ │ ├── ToneMapping.cpp
│ │ ├── WuQuantizer.cpp
│ │ └── ZLibInterface.cpp
│ ├── FreeImage.h
│ ├── FreeImageIO.h
│ ├── FreeImageLib
│ │ ├── FreeImageLib.2003.vcproj
│ │ └── FreeImageLib.2005.vcproj
│ ├── FreeImageToolkit
│ │ ├── BSplineRotate.cpp
│ │ ├── Channels.cpp
│ │ ├── ClassicRotate.cpp
│ │ ├── Colors.cpp
│ │ ├── CopyPaste.cpp
│ │ ├── Display.cpp
│ │ ├── Filters.h
│ │ ├── Flip.cpp
│ │ ├── JPEGTransform.cpp
│ │ ├── MultigridPoissonSolver.cpp
│ │ ├── Rescale.cpp
│ │ ├── Resize.cpp
│ │ └── Resize.h
│ ├── LibJPEG
│ │ ├── ansi2knr.c
│ │ ├── cderror.h
│ │ ├── cdjpeg.c
│ │ ├── cdjpeg.h
│ │ ├── change.log
│ │ ├── cjpeg.c
│ │ ├── ckconfig.c
│ │ ├── djpeg.c
│ │ ├── example.c
│ │ ├── jcapimin.c
│ │ ├── jcapistd.c
│ │ ├── jccoefct.c
│ │ ├── jccolor.c
│ │ ├── jcdctmgr.c
│ │ ├── jchuff.c
│ │ ├── jchuff.h
│ │ ├── jcinit.c
│ │ ├── jcmainct.c
│ │ ├── jcmarker.c
│ │ ├── jcmaster.c
│ │ ├── jcomapi.c
│ │ ├── jconfig.h
│ │ ├── jcparam.c
│ │ ├── jcphuff.c
│ │ ├── jcprepct.c
│ │ ├── jcsample.c
│ │ ├── jctrans.c
│ │ ├── jdapimin.c
│ │ ├── jdapistd.c
│ │ ├── jdatadst.c
│ │ ├── jdatasrc.c
│ │ ├── jdcoefct.c
│ │ ├── jdcolor.c
│ │ ├── jdct.h
│ │ ├── jddctmgr.c
│ │ ├── jdhuff.c
│ │ ├── jdhuff.h
│ │ ├── jdinput.c
│ │ ├── jdmainct.c
│ │ ├── jdmarker.c
│ │ ├── jdmaster.c
│ │ ├── jdmerge.c
│ │ ├── jdphuff.c
│ │ ├── jdpostct.c
│ │ ├── jdsample.c
│ │ ├── jdtrans.c
│ │ ├── jerror.c
│ │ ├── jerror.h
│ │ ├── jfdctflt.c
│ │ ├── jfdctfst.c
│ │ ├── jfdctint.c
│ │ ├── jidctflt.c
│ │ ├── jidctfst.c
│ │ ├── jidctint.c
│ │ ├── jidctred.c
│ │ ├── jinclude.h
│ │ ├── jmemansi.c
│ │ ├── jmemdosa.asm
│ │ ├── jmemdos.c
│ │ ├── jmemmac.c
│ │ ├── jmemmgr.c
│ │ ├── jmemname.c
│ │ ├── jmemnobs.c
│ │ ├── jmemsys.h
│ │ ├── jmorecfg.h
│ │ ├── jpegint.h
│ │ ├── jpeglib.h
│ │ ├── jpegtran.c
│ │ ├── jquant1.c
│ │ ├── jquant2.c
│ │ ├── jutils.c
│ │ ├── jversion.h
│ │ ├── LibJPEG.2003.vcproj
│ │ ├── LibJPEG.2005.vcproj
│ │ ├── rdbmp.c
│ │ ├── rdcolmap.c
│ │ ├── rdgif.c
│ │ ├── rdjpgcom.c
│ │ ├── rdppm.c
│ │ ├── rdrle.c
│ │ ├── rdswitch.c
│ │ ├── rdtarga.c
│ │ ├── transupp.c
│ │ ├── transupp.h
│ │ ├── wrbmp.c
│ │ ├── wrgif.c
│ │ ├── wrjpgcom.c
│ │ ├── wrppm.c
│ │ ├── wrrle.c
│ │ └── wrtarga.c
│ ├── LibMNG
│ │ ├── autogen.sh
│ │ ├── Changes
│ │ ├── LibMNG.2003.vcproj
│ │ ├── LibMNG.2005.vcproj
│ │ ├── libmng_callback_xs.c
│ │ ├── libmng_chunk_descr.c
│ │ ├── libmng_chunk_descr.h
│ │ ├── libmng_chunk_io.c
│ │ ├── libmng_chunk_io.h
│ │ ├── libmng_chunk_prc.c
│ │ ├── libmng_chunk_prc.h
│ │ ├── libmng_chunks.h
│ │ ├── libmng_chunk_xs.c
│ │ ├── libmng_cms.c
│ │ ├── libmng_cms.h
│ │ ├── libmng_conf.h
│ │ ├── libmng_data.h
│ │ ├── libmng_display.c
│ │ ├── libmng_display.h
│ │ ├── libmng_dither.c
│ │ ├── libmng_dither.h
│ │ ├── libmng_error.c
│ │ ├── libmng_error.h
│ │ ├── libmng_filter.c
│ │ ├── libmng_filter.h
│ │ ├── libmng.h
│ │ ├── libmng_hlapi.c
│ │ ├── libmng_jpeg.c
│ │ ├── libmng_jpeg.h
│ │ ├── libmng_memory.h
│ │ ├── libmng_object_prc.c
│ │ ├── libmng_object_prc.h
│ │ ├── libmng_objects.h
│ │ ├── libmng_pixels.c
│ │ ├── libmng_pixels.h
│ │ ├── libmng_prop_xs.c
│ │ ├── libmng_read.c
│ │ ├── libmng_read.h
│ │ ├── libmng_trace.c
│ │ ├── libmng_trace.h
│ │ ├── libmng_types.h
│ │ ├── libmng_write.c
│ │ ├── libmng_write.h
│ │ ├── libmng_zlib.c
│ │ ├── libmng_zlib.h
│ │ ├── LICENSE
│ │ ├── README
│ │ ├── README.autoconf
│ │ ├── README.config
│ │ ├── README.contrib
│ │ ├── README.examples
│ │ ├── README.footprint
│ │ └── README.packaging
│ ├── LibOpenJPEG
│ │ ├── bio.c
│ │ ├── bio.h
│ │ ├── ChangeLog
│ │ ├── cio.c
│ │ ├── cio.h
│ │ ├── dwt.c
│ │ ├── dwt.h
│ │ ├── event.c
│ │ ├── event.h
│ │ ├── fix.h
│ │ ├── image.c
│ │ ├── image.h
│ │ ├── int.h
│ │ ├── j2k.c
│ │ ├── j2k.h
│ │ ├── j2k_lib.c
│ │ ├── j2k_lib.h
│ │ ├── jp2.c
│ │ ├── jp2.h
│ │ ├── jpt.c
│ │ ├── jpt.h
│ │ ├── LibOpenJPEG.2003.vcproj
│ │ ├── LibOpenJPEG.2005.vcproj
│ │ ├── license.txt
│ │ ├── mct.c
│ │ ├── mct.h
│ │ ├── mqc.c
│ │ ├── mqc.h
│ │ ├── openjpeg.c
│ │ ├── openjpeg.h
│ │ ├── opj_includes.h
│ │ ├── pi.c
│ │ ├── pi.h
│ │ ├── raw.c
│ │ ├── raw.h
│ │ ├── t1.c
│ │ ├── t1_generate_luts.c
│ │ ├── t1.h
│ │ ├── t1_luts.h
│ │ ├── t2.c
│ │ ├── t2.h
│ │ ├── tcd.c
│ │ ├── tcd.h
│ │ ├── tgt.c
│ │ └── tgt.h
│ ├── LibPNG
│ │ ├── ANNOUNCE
│ │ ├── CHANGES
│ │ ├── configure
│ │ ├── INSTALL
│ │ ├── KNOWNBUG
│ │ ├── LibPNG.2003.vcproj
│ │ ├── LibPNG.2005.vcproj
│ │ ├── libpng.3
│ │ ├── libpngpf.3
│ │ ├── libpng.txt
│ │ ├── LICENSE
│ │ ├── png.5
│ │ ├── png.c
│ │ ├── pngconf.h
│ │ ├── pngerror.c
│ │ ├── pnggccrd.c
│ │ ├── pngget.c
│ │ ├── png.h
│ │ ├── pngmem.c
│ │ ├── pngpread.c
│ │ ├── pngread.c
│ │ ├── pngrio.c
│ │ ├── pngrtran.c
│ │ ├── pngrutil.c
│ │ ├── pngset.c
│ │ ├── pngtest.c
│ │ ├── pngtrans.c
│ │ ├── pngvcrd.c
│ │ ├── pngwio.c
│ │ ├── pngwrite.c
│ │ ├── pngwtran.c
│ │ ├── pngwutil.c
│ │ ├── README
│ │ ├── TODO
│ │ └── Y2KINFO
│ ├── LibTIFF
│ │ ├── ChangeLog
│ │ ├── LibTIFF.2003.vcproj
│ │ ├── LibTIFF.2005.vcproj
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── makefile.vc
│ │ ├── mkg3states.c
│ │ ├── mkspans.c
│ │ ├── SConstruct
│ │ ├── t4.h
│ │ ├── tif_acorn.c
│ │ ├── tif_apple.c
│ │ ├── tif_atari.c
│ │ ├── tif_aux.c
│ │ ├── tif_close.c
│ │ ├── tif_codec.c
│ │ ├── tif_color.c
│ │ ├── tif_compress.c
│ │ ├── tif_config.h
│ │ ├── tif_config.h.in
│ │ ├── tif_config.h-vms
│ │ ├── tif_config.vc.h
│ │ ├── tif_config.wince.h
│ │ ├── tif_dir.c
│ │ ├── tif_dir.h
│ │ ├── tif_dirinfo.c
│ │ ├── tif_dirread.c
│ │ ├── tif_dirwrite.c
│ │ ├── tif_dumpmode.c
│ │ ├── tif_error.c
│ │ ├── tif_extension.c
│ │ ├── tif_fax3.c
│ │ ├── tif_fax3.h
│ │ ├── tif_fax3sm.c
│ │ ├── tiffconf.h.in
│ │ ├── tiffconf.h-vms
│ │ ├── tiffconf.vc.h
│ │ ├── tiffconf.wince.h
│ │ ├── tiff.h
│ │ ├── tiffio.h
│ │ ├── tiffio.hxx
│ │ ├── tiffiop.h
│ │ ├── tif_flush.c
│ │ ├── tiffvers.h
│ │ ├── tiffvers.h.in
│ │ ├── tif_getimage.c
│ │ ├── tif_jbig.c
│ │ ├── tif_jpeg.c
│ │ ├── tif_luv.c
│ │ ├── tif_lzw.c
│ │ ├── tif_msdos.c
│ │ ├── tif_next.c
│ │ ├── tif_ojpeg.c
│ │ ├── tif_open.c
│ │ ├── tif_packbits.c
│ │ ├── tif_pixarlog.c
│ │ ├── tif_predict.c
│ │ ├── tif_predict.h
│ │ ├── tif_print.c
│ │ ├── tif_read.c
│ │ ├── tif_stream.cxx
│ │ ├── tif_strip.c
│ │ ├── tif_swab.c
│ │ ├── tif_thunder.c
│ │ ├── tif_tile.c
│ │ ├── tif_unix.c
│ │ ├── tif_version.c
│ │ ├── tif_vms.c
│ │ ├── tif_warning.c
│ │ ├── tif_win32.c
│ │ ├── tif_win3.c
│ │ ├── tif_wince.c
│ │ ├── tif_write.c
│ │ ├── tif_zip.c
│ │ └── uvcode.h
│ ├── Metadata
│ │ ├── Exif.cpp
│ │ ├── FIRational.cpp
│ │ ├── FIRational.h
│ │ ├── FreeImageTag.cpp
│ │ ├── FreeImageTag.h
│ │ ├── IPTC.cpp
│ │ ├── TagConversion.cpp
│ │ ├── TagLib.cpp
│ │ └── XTIFF.cpp
│ ├── OpenEXR
│ │ ├── Copyrights
│ │ │ ├── AUTHORS
│ │ │ ├── ChangeLog
│ │ │ ├── COPYING
│ │ │ └── LICENSE
│ │ ├── Half
│ │ │ ├── eLut.cpp
│ │ │ ├── eLut.h
│ │ │ ├── half.cpp
│ │ │ ├── halfFunction.h
│ │ │ ├── half.h
│ │ │ ├── halfLimits.h
│ │ │ ├── Makefile.am
│ │ │ ├── Makefile.in
│ │ │ ├── toFloat.cpp
│ │ │ └── toFloat.h
│ │ ├── Iex
│ │ │ ├── IexBaseExc.cpp
│ │ │ ├── IexBaseExc.h
│ │ │ ├── IexErrnoExc.h
│ │ │ ├── Iex.h
│ │ │ ├── IexMacros.h
│ │ │ ├── IexMathExc.h
│ │ │ ├── IexThrowErrnoExc.cpp
│ │ │ ├── IexThrowErrnoExc.h
│ │ │ ├── Makefile.am
│ │ │ └── Makefile.in
│ │ ├── IlmBaseConfig.h
│ │ ├── IlmImf
│ │ │ ├── b44ExpLogTable.cpp
│ │ │ ├── b44ExpLogTable.h
│ │ │ ├── ImfArray.h
│ │ │ ├── ImfAttribute.cpp
│ │ │ ├── ImfAttribute.h
│ │ │ ├── ImfAutoArray.h
│ │ │ ├── ImfB44Compressor.cpp
│ │ │ ├── ImfB44Compressor.h
│ │ │ ├── ImfBoxAttribute.cpp
│ │ │ ├── ImfBoxAttribute.h
│ │ │ ├── ImfChannelListAttribute.cpp
│ │ │ ├── ImfChannelListAttribute.h
│ │ │ ├── ImfChannelList.cpp
│ │ │ ├── ImfChannelList.h
│ │ │ ├── ImfChromaticitiesAttribute.cpp
│ │ │ ├── ImfChromaticitiesAttribute.h
│ │ │ ├── ImfChromaticities.cpp
│ │ │ ├── ImfChromaticities.h
│ │ │ ├── ImfCompressionAttribute.cpp
│ │ │ ├── ImfCompressionAttribute.h
│ │ │ ├── ImfCompression.h
│ │ │ ├── ImfCompressor.cpp
│ │ │ ├── ImfCompressor.h
│ │ │ ├── ImfConvert.cpp
│ │ │ ├── ImfConvert.h
│ │ │ ├── ImfCRgbaFile.cpp
│ │ │ ├── ImfCRgbaFile.h
│ │ │ ├── ImfDoubleAttribute.cpp
│ │ │ ├── ImfDoubleAttribute.h
│ │ │ ├── ImfEnvmapAttribute.cpp
│ │ │ ├── ImfEnvmapAttribute.h
│ │ │ ├── ImfEnvmap.cpp
│ │ │ ├── ImfEnvmap.h
│ │ │ ├── ImfFloatAttribute.cpp
│ │ │ ├── ImfFloatAttribute.h
│ │ │ ├── ImfFrameBuffer.cpp
│ │ │ ├── ImfFrameBuffer.h
│ │ │ ├── ImfFramesPerSecond.cpp
│ │ │ ├── ImfFramesPerSecond.h
│ │ │ ├── ImfHeader.cpp
│ │ │ ├── ImfHeader.h
│ │ │ ├── ImfHuf.cpp
│ │ │ ├── ImfHuf.h
│ │ │ ├── ImfInputFile.cpp
│ │ │ ├── ImfInputFile.h
│ │ │ ├── ImfInt64.h
│ │ │ ├── ImfIntAttribute.cpp
│ │ │ ├── ImfIntAttribute.h
│ │ │ ├── ImfIO.cpp
│ │ │ ├── ImfIO.h
│ │ │ ├── ImfKeyCodeAttribute.cpp
│ │ │ ├── ImfKeyCodeAttribute.h
│ │ │ ├── ImfKeyCode.cpp
│ │ │ ├── ImfKeyCode.h
│ │ │ ├── ImfLineOrderAttribute.cpp
│ │ │ ├── ImfLineOrderAttribute.h
│ │ │ ├── ImfLineOrder.h
│ │ │ ├── ImfLut.cpp
│ │ │ ├── ImfLut.h
│ │ │ ├── ImfMatrixAttribute.cpp
│ │ │ ├── ImfMatrixAttribute.h
│ │ │ ├── ImfMisc.cpp
│ │ │ ├── ImfMisc.h
│ │ │ ├── ImfName.h
│ │ │ ├── ImfOpaqueAttribute.cpp
│ │ │ ├── ImfOpaqueAttribute.h
│ │ │ ├── ImfOutputFile.cpp
│ │ │ ├── ImfOutputFile.h
│ │ │ ├── ImfPixelType.h
│ │ │ ├── ImfPizCompressor.cpp
│ │ │ ├── ImfPizCompressor.h
│ │ │ ├── ImfPreviewImageAttribute.cpp
│ │ │ ├── ImfPreviewImageAttribute.h
│ │ │ ├── ImfPreviewImage.cpp
│ │ │ ├── ImfPreviewImage.h
│ │ │ ├── ImfPxr24Compressor.cpp
│ │ │ ├── ImfPxr24Compressor.h
│ │ │ ├── ImfRationalAttribute.cpp
│ │ │ ├── ImfRationalAttribute.h
│ │ │ ├── ImfRational.cpp
│ │ │ ├── ImfRational.h
│ │ │ ├── ImfRgbaFile.cpp
│ │ │ ├── ImfRgbaFile.h
│ │ │ ├── ImfRgba.h
│ │ │ ├── ImfRgbaYca.cpp
│ │ │ ├── ImfRgbaYca.h
│ │ │ ├── ImfRleCompressor.cpp
│ │ │ ├── ImfRleCompressor.h
│ │ │ ├── ImfScanLineInputFile.cpp
│ │ │ ├── ImfScanLineInputFile.h
│ │ │ ├── ImfStandardAttributes.cpp
│ │ │ ├── ImfStandardAttributes.h
│ │ │ ├── ImfStdIO.cpp
│ │ │ ├── ImfStdIO.h
│ │ │ ├── ImfStringAttribute.cpp
│ │ │ ├── ImfStringAttribute.h
│ │ │ ├── ImfTestFile.cpp
│ │ │ ├── ImfTestFile.h
│ │ │ ├── ImfThreading.cpp
│ │ │ ├── ImfThreading.h
│ │ │ ├── ImfTileDescriptionAttribute.cpp
│ │ │ ├── ImfTileDescriptionAttribute.h
│ │ │ ├── ImfTileDescription.h
│ │ │ ├── ImfTiledInputFile.cpp
│ │ │ ├── ImfTiledInputFile.h
│ │ │ ├── ImfTiledMisc.cpp
│ │ │ ├── ImfTiledMisc.h
│ │ │ ├── ImfTiledOutputFile.cpp
│ │ │ ├── ImfTiledOutputFile.h
│ │ │ ├── ImfTiledRgbaFile.cpp
│ │ │ ├── ImfTiledRgbaFile.h
│ │ │ ├── ImfTileOffsets.cpp
│ │ │ ├── ImfTileOffsets.h
│ │ │ ├── ImfTimeCodeAttribute.cpp
│ │ │ ├── ImfTimeCodeAttribute.h
│ │ │ ├── ImfTimeCode.cpp
│ │ │ ├── ImfTimeCode.h
│ │ │ ├── ImfVecAttribute.cpp
│ │ │ ├── ImfVecAttribute.h
│ │ │ ├── ImfVersion.cpp
│ │ │ ├── ImfVersion.h
│ │ │ ├── ImfWav.cpp
│ │ │ ├── ImfWav.h
│ │ │ ├── ImfXdr.h
│ │ │ ├── ImfZipCompressor.cpp
│ │ │ ├── ImfZipCompressor.h
│ │ │ ├── Makefile.am
│ │ │ └── Makefile.in
│ │ ├── IlmThread
│ │ │ ├── IlmThread.cpp
│ │ │ ├── IlmThread.h
│ │ │ ├── IlmThreadMutex.cpp
│ │ │ ├── IlmThreadMutex.h
│ │ │ ├── IlmThreadMutexPosix.cpp
│ │ │ ├── IlmThreadMutexWin32.cpp
│ │ │ ├── IlmThreadPool.cpp
│ │ │ ├── IlmThreadPool.h
│ │ │ ├── IlmThreadPosix.cpp
│ │ │ ├── IlmThreadSemaphore.cpp
│ │ │ ├── IlmThreadSemaphore.h
│ │ │ ├── IlmThreadSemaphorePosixCompat.cpp
│ │ │ ├── IlmThreadSemaphorePosix.cpp
│ │ │ ├── IlmThreadSemaphoreWin32.cpp
│ │ │ ├── IlmThreadWin32.cpp
│ │ │ ├── Makefile.am
│ │ │ └── Makefile.in
│ │ ├── Imath
│ │ │ ├── ImathBoxAlgo.h
│ │ │ ├── ImathBox.cpp
│ │ │ ├── ImathBox.h
│ │ │ ├── ImathColorAlgo.cpp
│ │ │ ├── ImathColorAlgo.h
│ │ │ ├── ImathColor.h
│ │ │ ├── ImathEuler.h
│ │ │ ├── ImathExc.h
│ │ │ ├── ImathFrame.h
│ │ │ ├── ImathFrustum.h
│ │ │ ├── ImathFun.cpp
│ │ │ ├── ImathFun.h
│ │ │ ├── ImathGL.h
│ │ │ ├── ImathGLU.h
│ │ │ ├── ImathHalfLimits.h
│ │ │ ├── ImathInt64.h
│ │ │ ├── ImathInterval.h
│ │ │ ├── ImathLimits.h
│ │ │ ├── ImathLineAlgo.h
│ │ │ ├── ImathLine.h
│ │ │ ├── ImathMath.h
│ │ │ ├── ImathMatrixAlgo.cpp
│ │ │ ├── ImathMatrixAlgo.h
│ │ │ ├── ImathMatrix.h
│ │ │ ├── ImathPlane.h
│ │ │ ├── ImathPlatform.h
│ │ │ ├── ImathQuat.h
│ │ │ ├── ImathRandom.cpp
│ │ │ ├── ImathRandom.h
│ │ │ ├── ImathRoots.h
│ │ │ ├── ImathShear.cpp
│ │ │ ├── ImathShear.h
│ │ │ ├── ImathSphere.h
│ │ │ ├── ImathVecAlgo.h
│ │ │ ├── ImathVec.cpp
│ │ │ ├── ImathVec.h
│ │ │ ├── Makefile.am
│ │ │ └── Makefile.in
│ │ ├── OpenEXR.2003.vcproj
│ │ ├── OpenEXR.2005.vcproj
│ │ └── OpenEXRConfig.h
│ ├── Plugin.h
│ ├── Quantizers.h
│ ├── ToneMapping.h
│ ├── Utilities.h
│ └── ZLib
│ ├── adler32.c
│ ├── algorithm.txt
│ ├── ChangeLog
│ ├── compress.c
│ ├── configure
│ ├── crc32.c
│ ├── crc32.h
│ ├── deflate.c
│ ├── deflate.h
│ ├── example.c
│ ├── FAQ
│ ├── gzio.c
│ ├── INDEX
│ ├── infback.c
│ ├── inffast.c
│ ├── inffast.h
│ ├── inffixed.h
│ ├── inflate.c
│ ├── inflate.h
│ ├── inftrees.c
│ ├── inftrees.h
│ ├── Makefile
│ ├── Makefile.in
│ ├── minigzip.c
│ ├── README
│ ├── trees.c
│ ├── trees.h
│ ├── uncompr.c
│ ├── zconf.h
│ ├── zconf.in.h
│ ├── ZLib.2003.vcproj
│ ├── ZLib.2005.vcproj
│ ├── zlib.3
│ ├── zlib.h
│ ├── zutil.c
│ └── zutil.h
├── TestAPI
│ ├── exif.jpg
│ ├── MainTestSuite.cpp
│ ├── Makefile
│ ├── sample.png
│ ├── Test.2003.sln
│ ├── Test.2003.vcproj
│ ├── Test.2005.sln
│ ├── Test.2005.vcproj
│ ├── testImageType.cpp
│ ├── testJPEG.cpp
│ ├── testMemIO.cpp
│ ├── testMPage.cpp
│ ├── testPlugins.cpp
│ ├── TestSuite.h
│ └── testTools.cpp
├── Whatsnew.txt
└── Wrapper
├── Delphi
│ ├── _clean.bat
│ ├── demo
│ │ ├── ImagePreview
│ │ │ ├── ImagePreview.dpr
│ │ │ ├── ImagePreview.res
│ │ │ ├── MainFrm.dfm
│ │ │ ├── MainFrm.pas
│ │ │ ├── Readme.txt
│ │ │ └── Tiger.jpg
│ │ ├── MultiBitmap
│ │ │ ├── mbMainForm.dfm
│ │ │ ├── mbMainForm.pas
│ │ │ ├── MultiBitmap.dpr
│ │ │ ├── MultiBitmap.res
│ │ │ └── MultiBitmap.stat
│ │ ├── TargaUnit
│ │ │ ├── Readme.txt
│ │ │ └── TargaImage.pas
│ │ └── WinBitmap
│ │ ├── MainDemo.dpr
│ │ ├── MainDemo.res
│ │ ├── MainForm.dfm
│ │ └── MainForm.pas
│ ├── license.txt
│ ├── src
│ │ ├── FreeBitmap.pas
│ │ ├── FreeImage.pas
│ │ └── FreeUtils.pas
│ └── WhatsNew_Delphi.txt
├── FreeImage.NET
│ ├── clean.bat
│ ├── contributions
│ │ └── FreeImageIO
│ │ ├── app.ico
│ │ ├── app.rc
│ │ ├── AssemblyInfo.cpp
│ │ ├── FreeImageIO.Net.cpp
│ │ ├── FreeImageIO.Net.h
│ │ ├── FreeImageIO.Net.vcproj
│ │ ├── FreeImageIO.sln
│ │ ├── ReadMe.txt
│ │ ├── resource.h
│ │ ├── Stdafx.cpp
│ │ └── Stdafx.h
│ ├── FreeImageNET.csproj
│ ├── FreeImageNET.sln
│ ├── src
│ │ ├── AssemblyInfo.cs
│ │ ├── build.bat
│ │ └── FreeImage.cs
│ ├── test
│ │ ├── AssemblyInfo.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── FreeImageTest.NET.csproj
│ │ ├── FreeImageTest.NET.sln
│ │ └── Main.cs
│ └── WhatsNew_dotNET.txt
├── FreeImagePlus
│ ├── clean.bat
│ ├── dist
│ │ └── delete.me
│ ├── doc
│ │ ├── doxygen.log
│ │ ├── footer.html
│ │ ├── freeimagedoc.jpg
│ │ ├── FreeImagePlus.dox
│ │ ├── freeimage.png
│ │ ├── header.html
│ │ └── main.html
│ ├── FreeImagePlus.2003.sln
│ ├── FreeImagePlus.2003.vcproj
│ ├── FreeImagePlus.2005.sln
│ ├── FreeImagePlus.2005.vcproj
│ ├── FreeImagePlus.h
│ ├── FreeImagePlus.rc
│ ├── src
│ │ ├── fipImage.cpp
│ │ ├── fipMemoryIO.cpp
│ │ ├── fipMetadataFind.cpp
│ │ ├── fipMultiPage.cpp
│ │ ├── fipTag.cpp
│ │ ├── fipWinImage.cpp
│ │ └── FreeImagePlus.cpp
│ ├── test
│ │ ├── fipTest.2003.sln
│ │ ├── fipTest.2003.vcproj
│ │ ├── fipTest.2005.vcproj
│ │ ├── fipTest.cpp
│ │ ├── fipTest.h
│ │ ├── fipTestMemIO.cpp
│ │ └── fipTestMPage.cpp
│ └── WhatsNew_FIP.txt
└── VB6
├── mfreeimage
│ ├── MFreeImage.bas
│ └── WhatsNew_VB.txt
└── test
├── SimpleTest.frm
└── SimpleTest.vbp
48 directories, 772 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论