├── .github └── workflows │ └── cmake.yml ├── .gitignore ├── CMakeLists.txt ├── 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 │ ├── Makefile │ ├── linux-gtk.c │ └── linux-svgalib.c ├── OpenGL │ └── TextureManager │ │ ├── TextureManager.cpp │ │ ├── TextureManager.h │ │ └── readme.txt └── Plugin │ ├── PluginCradle.cpp │ └── PluginCradle.h ├── FreeImage.2017.sln ├── FreeImage.2017.vcxproj ├── FreeImage.2017.vcxproj.filters ├── FreeImage.rc ├── Makefile ├── Makefile.android ├── Makefile.cygwin ├── Makefile.fip ├── Makefile.gnu ├── Makefile.ios ├── Makefile.iphone ├── Makefile.mingw ├── Makefile.osx ├── Makefile.solaris ├── Makefile.srcs ├── README.iphone ├── README.linux ├── README.md ├── README.minGW ├── README.osx ├── README.solaris ├── Source ├── CacheFile.h ├── FreeImage.h ├── FreeImage │ ├── BitmapAccess.cpp │ ├── CacheFile.cpp │ ├── ColorLookup.cpp │ ├── Conversion.cpp │ ├── Conversion16_555.cpp │ ├── Conversion16_565.cpp │ ├── Conversion24.cpp │ ├── Conversion32.cpp │ ├── Conversion4.cpp │ ├── Conversion8.cpp │ ├── ConversionFloat.cpp │ ├── ConversionRGB16.cpp │ ├── ConversionRGBA16.cpp │ ├── ConversionRGBAF.cpp │ ├── ConversionRGBF.cpp │ ├── ConversionType.cpp │ ├── ConversionUINT16.cpp │ ├── FreeImage.cpp │ ├── FreeImageC.c │ ├── FreeImageIO.cpp │ ├── GetType.cpp │ ├── Halftoning.cpp │ ├── J2KHelper.cpp │ ├── J2KHelper.h │ ├── LFPQuantizer.cpp │ ├── MNGHelper.cpp │ ├── MemoryIO.cpp │ ├── MultiPage.cpp │ ├── NNQuantizer.cpp │ ├── PSDParser.cpp │ ├── PSDParser.h │ ├── PixelAccess.cpp │ ├── Plugin.cpp │ ├── PluginBMP.cpp │ ├── PluginCUT.cpp │ ├── PluginDDS.cpp │ ├── PluginEXR.cpp │ ├── PluginG3.cpp │ ├── PluginGIF.cpp │ ├── PluginHDR.cpp │ ├── PluginICO.cpp │ ├── PluginIFF.cpp │ ├── PluginJ2K.cpp │ ├── PluginJNG.cpp │ ├── PluginJP2.cpp │ ├── PluginJPEG.cpp │ ├── PluginJXR.cpp │ ├── PluginKOALA.cpp │ ├── PluginMNG.cpp │ ├── PluginPCD.cpp │ ├── PluginPCX.cpp │ ├── PluginPFM.cpp │ ├── PluginPICT.cpp │ ├── PluginPNG.cpp │ ├── PluginPNM.cpp │ ├── PluginPSD.cpp │ ├── PluginRAS.cpp │ ├── PluginRAW.cpp │ ├── PluginSGI.cpp │ ├── PluginTARGA.cpp │ ├── PluginTIFF.cpp │ ├── PluginWBMP.cpp │ ├── PluginWebP.cpp │ ├── PluginXBM.cpp │ ├── PluginXPM.cpp │ ├── TIFFLogLuv.cpp │ ├── ToneMapping.cpp │ ├── WuQuantizer.cpp │ ├── ZLibInterface.cpp │ ├── tmoColorConvert.cpp │ ├── tmoDrago03.cpp │ ├── tmoFattal02.cpp │ └── tmoReinhard05.cpp ├── FreeImageIO.h ├── FreeImageLib │ ├── FreeImageLib.2017.vcxproj │ └── FreeImageLib.2017.vcxproj.filters ├── FreeImageToolkit │ ├── BSplineRotate.cpp │ ├── Background.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 │ ├── LibJPEG.2017.vcxproj │ ├── LibJPEG.2017.vcxproj.filters │ ├── README │ ├── cderror.h │ ├── cdjpeg.c │ ├── cdjpeg.h │ ├── change.log │ ├── cjpeg.c │ ├── ckconfig.c │ ├── coderules.txt │ ├── djpeg.c │ ├── example.c │ ├── filelist.txt │ ├── install.txt │ ├── jaricom.c │ ├── jcapimin.c │ ├── jcapistd.c │ ├── jcarith.c │ ├── jccoefct.c │ ├── jccolor.c │ ├── jcdctmgr.c │ ├── jchuff.c │ ├── jcinit.c │ ├── jcmainct.c │ ├── jcmarker.c │ ├── jcmaster.c │ ├── jcomapi.c │ ├── jconfig.h │ ├── jconfig.txt │ ├── jcparam.c │ ├── jcprepct.c │ ├── jcsample.c │ ├── jctrans.c │ ├── jdapimin.c │ ├── jdapistd.c │ ├── jdarith.c │ ├── jdatadst.c │ ├── jdatasrc.c │ ├── jdcoefct.c │ ├── jdcolor.c │ ├── jdct.h │ ├── jddctmgr.c │ ├── jdhuff.c │ ├── jdinput.c │ ├── jdmainct.c │ ├── jdmarker.c │ ├── jdmaster.c │ ├── jdmerge.c │ ├── jdpostct.c │ ├── jdsample.c │ ├── jdtrans.c │ ├── jerror.c │ ├── jerror.h │ ├── jfdctflt.c │ ├── jfdctfst.c │ ├── jfdctint.c │ ├── jidctflt.c │ ├── jidctfst.c │ ├── jidctint.c │ ├── jinclude.h │ ├── jmemansi.c │ ├── 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.txt │ ├── rdbmp.c │ ├── rdcolmap.c │ ├── rdgif.c │ ├── rdjpgcom.c │ ├── rdppm.c │ ├── rdrle.c │ ├── rdswitch.c │ ├── rdtarga.c │ ├── structure.txt │ ├── transupp.c │ ├── transupp.h │ ├── usage.txt │ ├── wizard.txt │ ├── wrbmp.c │ ├── wrgif.c │ ├── wrjpgcom.c │ ├── wrppm.c │ ├── wrrle.c │ └── wrtarga.c ├── LibJXR │ ├── LICENCE │ ├── LibJXR.2017.vcxproj │ ├── LibJXR.2017.vcxproj.filters │ ├── README │ ├── common │ │ └── include │ │ │ ├── guiddef.h │ │ │ ├── wmsal.h │ │ │ ├── wmspecstring.h │ │ │ ├── wmspecstrings_adt.h │ │ │ ├── wmspecstrings_strict.h │ │ │ └── wmspecstrings_undef.h │ ├── image │ │ ├── decode │ │ │ ├── JXRTranscode.c │ │ │ ├── decode.c │ │ │ ├── decode.h │ │ │ ├── postprocess.c │ │ │ ├── segdec.c │ │ │ ├── strInvTransform.c │ │ │ ├── strPredQuantDec.c │ │ │ ├── strdec.c │ │ │ └── strdec_x86.c │ │ ├── encode │ │ │ ├── encode.c │ │ │ ├── encode.h │ │ │ ├── segenc.c │ │ │ ├── strFwdTransform.c │ │ │ ├── strPredQuantEnc.c │ │ │ ├── strenc.c │ │ │ └── strenc_x86.c │ │ ├── sys │ │ │ ├── adapthuff.c │ │ │ ├── ansi.h │ │ │ ├── common.h │ │ │ ├── image.c │ │ │ ├── perfTimer.h │ │ │ ├── perfTimerANSI.c │ │ │ ├── strPredQuant.c │ │ │ ├── strTransform.c │ │ │ ├── strTransform.h │ │ │ ├── strcodec.c │ │ │ ├── strcodec.h │ │ │ ├── windowsmediaphoto.h │ │ │ └── xplatform_image.h │ │ └── x86 │ │ │ └── x86.h │ └── jxrgluelib │ │ ├── JXRGlue.c │ │ ├── JXRGlue.h │ │ ├── JXRGlueJxr.c │ │ ├── JXRGluePFC.c │ │ ├── JXRMeta.c │ │ └── JXRMeta.h ├── LibOpenJPEG │ ├── AUTHORS │ ├── INSTALL │ ├── LICENSE │ ├── LibOpenJPEG.2017.vcxproj │ ├── LibOpenJPEG.2017.vcxproj.filters │ ├── NEWS │ ├── README │ ├── THANKS │ ├── bio.c │ ├── bio.h │ ├── cidx_manager.c │ ├── cidx_manager.h │ ├── cio.c │ ├── cio.h │ ├── dwt.c │ ├── dwt.h │ ├── event.c │ ├── event.h │ ├── function_list.c │ ├── function_list.h │ ├── image.c │ ├── image.h │ ├── indexbox_manager.h │ ├── invert.c │ ├── invert.h │ ├── j2k.c │ ├── j2k.h │ ├── jp2.c │ ├── jp2.h │ ├── mct.c │ ├── mct.h │ ├── mqc.c │ ├── mqc.h │ ├── openjpeg.c │ ├── openjpeg.h │ ├── opj_clock.c │ ├── opj_clock.h │ ├── opj_codec.h │ ├── opj_config.h │ ├── opj_config_private.h │ ├── opj_includes.h │ ├── opj_intmath.h │ ├── opj_inttypes.h │ ├── opj_malloc.h │ ├── opj_stdint.h │ ├── phix_manager.c │ ├── pi.c │ ├── pi.h │ ├── ppix_manager.c │ ├── raw.c │ ├── raw.h │ ├── t1.c │ ├── t1.h │ ├── t1_generate_luts.c │ ├── t1_luts.h │ ├── t2.c │ ├── t2.h │ ├── tcd.c │ ├── tcd.h │ ├── tgt.c │ ├── tgt.h │ ├── thix_manager.c │ └── tpix_manager.c ├── LibPNG │ ├── ANNOUNCE │ ├── AUTHORS │ ├── CHANGES │ ├── CMakeLists.txt │ ├── INSTALL │ ├── LICENSE │ ├── LibPNG.2017.vcxproj │ ├── LibPNG.2017.vcxproj.filters │ ├── README │ ├── TODO │ ├── TRADEMARK │ ├── configure │ ├── example.c │ ├── libpng-manual.txt │ ├── libpng.3 │ ├── libpngpf.3 │ ├── png.5 │ ├── png.c │ ├── png.h │ ├── pngconf.h │ ├── pngdebug.h │ ├── pngerror.c │ ├── pngget.c │ ├── pnginfo.h │ ├── pnglibconf.h │ ├── pngmem.c │ ├── pngpread.c │ ├── pngpriv.h │ ├── pngread.c │ ├── pngrio.c │ ├── pngrtran.c │ ├── pngrutil.c │ ├── pngset.c │ ├── pngstruct.h │ ├── pngtest.c │ ├── pngtrans.c │ ├── pngwio.c │ ├── pngwrite.c │ ├── pngwtran.c │ └── pngwutil.c ├── LibRawLite │ ├── COPYRIGHT │ ├── Changelog.txt │ ├── DEVELOPER-NOTES │ ├── LICENSE.CDDL │ ├── LICENSE.LGPL │ ├── LibRawLite.2017.vcxproj │ ├── LibRawLite.2017.vcxproj.filters │ ├── README │ ├── README.DNGSDK.txt │ ├── README.GoPro.txt │ ├── README.RawSpeed.txt │ ├── README.cmake │ ├── README.demosaic-packs │ ├── README.md │ ├── internal │ │ ├── dcraw_defs.h │ │ ├── dcraw_fileio_defs.h │ │ ├── defines.h │ │ ├── dmp_include.h │ │ ├── libraw_cameraids.h │ │ ├── libraw_cxx_defs.h │ │ ├── libraw_internal_funcs.h │ │ ├── var_defines.h │ │ └── x3f_tools.h │ ├── libraw │ │ ├── libraw.h │ │ ├── libraw_alloc.h │ │ ├── libraw_const.h │ │ ├── libraw_datastream.h │ │ ├── libraw_internal.h │ │ ├── libraw_types.h │ │ └── libraw_version.h │ └── src │ │ ├── decoders │ │ ├── canon_600.cpp │ │ ├── crx.cpp │ │ ├── decoders_dcraw.cpp │ │ ├── decoders_libraw.cpp │ │ ├── decoders_libraw_dcrdefs.cpp │ │ ├── dng.cpp │ │ ├── fp_dng.cpp │ │ ├── fuji_compressed.cpp │ │ ├── generic.cpp │ │ ├── kodak_decoders.cpp │ │ ├── load_mfbacks.cpp │ │ ├── smal.cpp │ │ ├── unpack.cpp │ │ └── unpack_thumb.cpp │ │ ├── demosaic │ │ ├── aahd_demosaic.cpp │ │ ├── ahd_demosaic.cpp │ │ ├── dcb_demosaic.cpp │ │ ├── dht_demosaic.cpp │ │ ├── misc_demosaic.cpp │ │ └── xtrans_demosaic.cpp │ │ ├── integration │ │ ├── dngsdk_glue.cpp │ │ └── rawspeed_glue.cpp │ │ ├── libraw_c_api.cpp │ │ ├── libraw_datastream.cpp │ │ ├── metadata │ │ ├── adobepano.cpp │ │ ├── canon.cpp │ │ ├── ciff.cpp │ │ ├── cr3_parser.cpp │ │ ├── epson.cpp │ │ ├── exif_gps.cpp │ │ ├── fuji.cpp │ │ ├── hasselblad_model.cpp │ │ ├── identify.cpp │ │ ├── identify_tools.cpp │ │ ├── kodak.cpp │ │ ├── leica.cpp │ │ ├── makernotes.cpp │ │ ├── mediumformat.cpp │ │ ├── minolta.cpp │ │ ├── misc_parsers.cpp │ │ ├── nikon.cpp │ │ ├── normalize_model.cpp │ │ ├── olympus.cpp │ │ ├── p1.cpp │ │ ├── pentax.cpp │ │ ├── samsung.cpp │ │ ├── sony.cpp │ │ └── tiff.cpp │ │ ├── postprocessing │ │ ├── aspect_ratio.cpp │ │ ├── dcraw_process.cpp │ │ ├── mem_image.cpp │ │ ├── postprocessing_aux.cpp │ │ ├── postprocessing_ph.cpp │ │ ├── postprocessing_utils.cpp │ │ └── postprocessing_utils_dcrdefs.cpp │ │ ├── preprocessing │ │ ├── ext_preprocess.cpp │ │ ├── preprocessing_ph.cpp │ │ ├── raw2image.cpp │ │ └── subtract_black.cpp │ │ ├── tables │ │ ├── cameralist.cpp │ │ ├── colorconst.cpp │ │ ├── colordata.cpp │ │ └── wblists.cpp │ │ ├── utils │ │ ├── curves.cpp │ │ ├── decoder_info.cpp │ │ ├── init_close_utils.cpp │ │ ├── open.cpp │ │ ├── phaseone_processing.cpp │ │ ├── read_utils.cpp │ │ ├── thumb_utils.cpp │ │ ├── utils_dcraw.cpp │ │ └── utils_libraw.cpp │ │ ├── write │ │ ├── apply_profile.cpp │ │ ├── file_write.cpp │ │ ├── tiff_writer.cpp │ │ └── write_ph.cpp │ │ └── x3f │ │ ├── x3f_parse_process.cpp │ │ └── x3f_utils_patched.cpp ├── LibTIFF4 │ ├── CMakeLists.txt │ ├── COPYRIGHT │ ├── ChangeLog │ ├── LibTIFF4.2017.vcxproj │ ├── LibTIFF4.2017.vcxproj.filters │ ├── Makefile.am │ ├── RELEASE-DATE │ ├── libport.h │ ├── libtiff.def │ ├── libtiff.map │ ├── libtiffxx.map │ ├── mkg3states.c │ ├── mkspans.c │ ├── t4.h │ ├── tif_aux.c │ ├── tif_close.c │ ├── tif_codec.c │ ├── tif_color.c │ ├── tif_compress.c │ ├── tif_config.h │ ├── tif_config.h.cmake.in │ ├── tif_config.h.in │ ├── 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 │ ├── tif_flush.c │ ├── tif_getimage.c │ ├── tif_hash_set.c │ ├── tif_hash_set.h │ ├── tif_jbig.c │ ├── tif_jpeg.c │ ├── tif_jpeg_12.c │ ├── tif_lerc.c │ ├── tif_luv.c │ ├── tif_lzma.c │ ├── tif_lzw.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_warning.c │ ├── tif_webp.c │ ├── tif_win32.c │ ├── tif_wince.c │ ├── tif_write.c │ ├── tif_zip.c │ ├── tif_zstd.c │ ├── tiff.h │ ├── tiffconf.h │ ├── tiffconf.h.cmake.in │ ├── tiffconf.h.in │ ├── tiffconf.vc.h │ ├── tiffconf.wince.h │ ├── tiffio.h │ ├── tiffio.hxx │ ├── tiffiop.h │ ├── tiffvers.h │ ├── tiffvers.h.cmake.in │ ├── tiffvers.h.in │ └── uvcode.h ├── LibWebP │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── LibWebP.2017.vcxproj │ ├── LibWebP.2017.vcxproj.filters │ ├── NEWS │ ├── PATENTS │ ├── README │ ├── README.mux │ └── src │ │ ├── dec │ │ ├── alpha_dec.c │ │ ├── alphai_dec.h │ │ ├── buffer_dec.c │ │ ├── common_dec.h │ │ ├── frame_dec.c │ │ ├── idec_dec.c │ │ ├── io_dec.c │ │ ├── quant_dec.c │ │ ├── tree_dec.c │ │ ├── vp8_dec.c │ │ ├── vp8_dec.h │ │ ├── vp8i_dec.h │ │ ├── vp8l_dec.c │ │ ├── vp8li_dec.h │ │ ├── webp_dec.c │ │ └── webpi_dec.h │ │ ├── demux │ │ ├── anim_decode.c │ │ └── demux.c │ │ ├── dsp │ │ ├── alpha_processing.c │ │ ├── alpha_processing_mips_dsp_r2.c │ │ ├── alpha_processing_neon.c │ │ ├── alpha_processing_sse2.c │ │ ├── alpha_processing_sse41.c │ │ ├── common_sse2.h │ │ ├── common_sse41.h │ │ ├── cost.c │ │ ├── cost_mips32.c │ │ ├── cost_mips_dsp_r2.c │ │ ├── cost_neon.c │ │ ├── cost_sse2.c │ │ ├── cpu.c │ │ ├── dec.c │ │ ├── dec_clip_tables.c │ │ ├── dec_mips32.c │ │ ├── dec_mips_dsp_r2.c │ │ ├── dec_msa.c │ │ ├── dec_neon.c │ │ ├── dec_sse2.c │ │ ├── dec_sse41.c │ │ ├── dsp.h │ │ ├── enc.c │ │ ├── enc_avx2.c │ │ ├── enc_mips32.c │ │ ├── enc_mips_dsp_r2.c │ │ ├── enc_msa.c │ │ ├── enc_neon.c │ │ ├── enc_sse2.c │ │ ├── enc_sse41.c │ │ ├── filters.c │ │ ├── filters_mips_dsp_r2.c │ │ ├── filters_msa.c │ │ ├── filters_neon.c │ │ ├── filters_sse2.c │ │ ├── lossless.c │ │ ├── lossless.h │ │ ├── lossless_common.h │ │ ├── lossless_enc.c │ │ ├── lossless_enc_mips32.c │ │ ├── lossless_enc_mips_dsp_r2.c │ │ ├── lossless_enc_msa.c │ │ ├── lossless_enc_neon.c │ │ ├── lossless_enc_sse2.c │ │ ├── lossless_enc_sse41.c │ │ ├── lossless_mips_dsp_r2.c │ │ ├── lossless_msa.c │ │ ├── lossless_neon.c │ │ ├── lossless_sse2.c │ │ ├── lossless_sse41.c │ │ ├── mips_macro.h │ │ ├── msa_macro.h │ │ ├── neon.h │ │ ├── quant.h │ │ ├── rescaler.c │ │ ├── rescaler_mips32.c │ │ ├── rescaler_mips_dsp_r2.c │ │ ├── rescaler_msa.c │ │ ├── rescaler_neon.c │ │ ├── rescaler_sse2.c │ │ ├── ssim.c │ │ ├── ssim_sse2.c │ │ ├── upsampling.c │ │ ├── upsampling_mips_dsp_r2.c │ │ ├── upsampling_msa.c │ │ ├── upsampling_neon.c │ │ ├── upsampling_sse2.c │ │ ├── upsampling_sse41.c │ │ ├── yuv.c │ │ ├── yuv.h │ │ ├── yuv_mips32.c │ │ ├── yuv_mips_dsp_r2.c │ │ ├── yuv_neon.c │ │ ├── yuv_sse2.c │ │ └── yuv_sse41.c │ │ ├── enc │ │ ├── alpha_enc.c │ │ ├── analysis_enc.c │ │ ├── backward_references_cost_enc.c │ │ ├── backward_references_enc.c │ │ ├── backward_references_enc.h │ │ ├── config_enc.c │ │ ├── cost_enc.c │ │ ├── cost_enc.h │ │ ├── filter_enc.c │ │ ├── frame_enc.c │ │ ├── histogram_enc.c │ │ ├── histogram_enc.h │ │ ├── iterator_enc.c │ │ ├── near_lossless_enc.c │ │ ├── picture_csp_enc.c │ │ ├── picture_enc.c │ │ ├── picture_psnr_enc.c │ │ ├── picture_rescale_enc.c │ │ ├── picture_tools_enc.c │ │ ├── predictor_enc.c │ │ ├── quant_enc.c │ │ ├── syntax_enc.c │ │ ├── token_enc.c │ │ ├── tree_enc.c │ │ ├── vp8i_enc.h │ │ ├── vp8l_enc.c │ │ ├── vp8li_enc.h │ │ └── webp_enc.c │ │ ├── mux │ │ ├── anim_encode.c │ │ ├── animi.h │ │ ├── muxedit.c │ │ ├── muxi.h │ │ ├── muxinternal.c │ │ └── muxread.c │ │ ├── utils │ │ ├── bit_reader_inl_utils.h │ │ ├── bit_reader_utils.c │ │ ├── bit_reader_utils.h │ │ ├── bit_writer_utils.c │ │ ├── bit_writer_utils.h │ │ ├── color_cache_utils.c │ │ ├── color_cache_utils.h │ │ ├── endian_inl_utils.h │ │ ├── filters_utils.c │ │ ├── filters_utils.h │ │ ├── huffman_encode_utils.c │ │ ├── huffman_encode_utils.h │ │ ├── huffman_utils.c │ │ ├── huffman_utils.h │ │ ├── quant_levels_dec_utils.c │ │ ├── quant_levels_dec_utils.h │ │ ├── quant_levels_utils.c │ │ ├── quant_levels_utils.h │ │ ├── random_utils.c │ │ ├── random_utils.h │ │ ├── rescaler_utils.c │ │ ├── rescaler_utils.h │ │ ├── thread_utils.c │ │ ├── thread_utils.h │ │ ├── utils.c │ │ └── utils.h │ │ └── webp │ │ ├── decode.h │ │ ├── demux.h │ │ ├── encode.h │ │ ├── format_constants.h │ │ ├── mux.h │ │ ├── mux_types.h │ │ └── types.h ├── MapIntrospector.h ├── Metadata │ ├── Exif.cpp │ ├── FIRational.cpp │ ├── FIRational.h │ ├── FreeImageTag.cpp │ ├── FreeImageTag.h │ ├── IPTC.cpp │ ├── TagConversion.cpp │ ├── TagLib.cpp │ └── XTIFF.cpp ├── OpenEXR │ ├── Copyrights │ │ ├── ilmbase │ │ │ ├── AUTHORS │ │ │ ├── COPYING │ │ │ ├── ChangeLog │ │ │ ├── INSTALL │ │ │ ├── LICENSE │ │ │ ├── NEWS │ │ │ ├── README │ │ │ ├── README.CVS │ │ │ ├── README.OSX │ │ │ ├── README.git │ │ │ ├── README.namespacing │ │ │ └── README.win32 │ │ └── openexr │ │ │ ├── AUTHORS │ │ │ ├── COPYING │ │ │ ├── ChangeLog │ │ │ ├── INSTALL │ │ │ ├── LICENSE │ │ │ ├── NEWS │ │ │ ├── PATENTS │ │ │ ├── README │ │ │ ├── README.CVS │ │ │ ├── README.OSX │ │ │ ├── README.git │ │ │ ├── README.namespacing │ │ │ └── README.win32 │ ├── Half │ │ ├── eLut.cpp │ │ ├── eLut.h │ │ ├── half.cpp │ │ ├── half.h │ │ ├── halfExport.h │ │ ├── halfFunction.h │ │ ├── halfLimits.h │ │ ├── toFloat.cpp │ │ └── toFloat.h │ ├── Iex │ │ ├── Iex.h │ │ ├── IexBaseExc.cpp │ │ ├── IexBaseExc.h │ │ ├── IexErrnoExc.h │ │ ├── IexExport.h │ │ ├── IexForward.h │ │ ├── IexMacros.h │ │ ├── IexMathExc.h │ │ ├── IexNamespace.h │ │ ├── IexThrowErrnoExc.cpp │ │ └── IexThrowErrnoExc.h │ ├── IexMath │ │ ├── IexMathFloatExc.cpp │ │ ├── IexMathFloatExc.h │ │ ├── IexMathFpu.cpp │ │ ├── IexMathFpu.h │ │ └── IexMathIeeeExc.h │ ├── IlmBaseConfig.h │ ├── IlmImf │ │ ├── ImfAcesFile.cpp │ │ ├── ImfAcesFile.h │ │ ├── ImfArray.h │ │ ├── ImfAttribute.cpp │ │ ├── ImfAttribute.h │ │ ├── ImfAutoArray.h │ │ ├── ImfB44Compressor.cpp │ │ ├── ImfB44Compressor.h │ │ ├── ImfBoxAttribute.cpp │ │ ├── ImfBoxAttribute.h │ │ ├── ImfCRgbaFile.cpp │ │ ├── ImfCRgbaFile.h │ │ ├── ImfChannelList.cpp │ │ ├── ImfChannelList.h │ │ ├── ImfChannelListAttribute.cpp │ │ ├── ImfChannelListAttribute.h │ │ ├── ImfCheckedArithmetic.h │ │ ├── ImfChromaticities.cpp │ │ ├── ImfChromaticities.h │ │ ├── ImfChromaticitiesAttribute.cpp │ │ ├── ImfChromaticitiesAttribute.h │ │ ├── ImfCompositeDeepScanLine.cpp │ │ ├── ImfCompositeDeepScanLine.h │ │ ├── ImfCompression.h │ │ ├── ImfCompressionAttribute.cpp │ │ ├── ImfCompressionAttribute.h │ │ ├── ImfCompressor.cpp │ │ ├── ImfCompressor.h │ │ ├── ImfConvert.cpp │ │ ├── ImfConvert.h │ │ ├── ImfDeepCompositing.cpp │ │ ├── ImfDeepCompositing.h │ │ ├── ImfDeepFrameBuffer.cpp │ │ ├── ImfDeepFrameBuffer.h │ │ ├── ImfDeepImageState.h │ │ ├── ImfDeepImageStateAttribute.cpp │ │ ├── ImfDeepImageStateAttribute.h │ │ ├── ImfDeepScanLineInputFile.cpp │ │ ├── ImfDeepScanLineInputFile.h │ │ ├── ImfDeepScanLineInputPart.cpp │ │ ├── ImfDeepScanLineInputPart.h │ │ ├── ImfDeepScanLineOutputFile.cpp │ │ ├── ImfDeepScanLineOutputFile.h │ │ ├── ImfDeepScanLineOutputPart.cpp │ │ ├── ImfDeepScanLineOutputPart.h │ │ ├── ImfDeepTiledInputFile.cpp │ │ ├── ImfDeepTiledInputFile.h │ │ ├── ImfDeepTiledInputPart.cpp │ │ ├── ImfDeepTiledInputPart.h │ │ ├── ImfDeepTiledOutputFile.cpp │ │ ├── ImfDeepTiledOutputFile.h │ │ ├── ImfDeepTiledOutputPart.cpp │ │ ├── ImfDeepTiledOutputPart.h │ │ ├── ImfDoubleAttribute.cpp │ │ ├── ImfDoubleAttribute.h │ │ ├── ImfDwaCompressor.cpp │ │ ├── ImfDwaCompressor.h │ │ ├── ImfDwaCompressorSimd.h │ │ ├── ImfEnvmap.cpp │ │ ├── ImfEnvmap.h │ │ ├── ImfEnvmapAttribute.cpp │ │ ├── ImfEnvmapAttribute.h │ │ ├── ImfExport.h │ │ ├── ImfFastHuf.cpp │ │ ├── ImfFastHuf.h │ │ ├── ImfFloatAttribute.cpp │ │ ├── ImfFloatAttribute.h │ │ ├── ImfFloatVectorAttribute.cpp │ │ ├── ImfFloatVectorAttribute.h │ │ ├── ImfForward.h │ │ ├── ImfFrameBuffer.cpp │ │ ├── ImfFrameBuffer.h │ │ ├── ImfFramesPerSecond.cpp │ │ ├── ImfFramesPerSecond.h │ │ ├── ImfGenericInputFile.cpp │ │ ├── ImfGenericInputFile.h │ │ ├── ImfGenericOutputFile.cpp │ │ ├── ImfGenericOutputFile.h │ │ ├── ImfHeader.cpp │ │ ├── ImfHeader.h │ │ ├── ImfHuf.cpp │ │ ├── ImfHuf.h │ │ ├── ImfIO.cpp │ │ ├── ImfIO.h │ │ ├── ImfInputFile.cpp │ │ ├── ImfInputFile.h │ │ ├── ImfInputPart.cpp │ │ ├── ImfInputPart.h │ │ ├── ImfInputPartData.cpp │ │ ├── ImfInputPartData.h │ │ ├── ImfInputStreamMutex.h │ │ ├── ImfInt64.h │ │ ├── ImfIntAttribute.cpp │ │ ├── ImfIntAttribute.h │ │ ├── ImfKeyCode.cpp │ │ ├── ImfKeyCode.h │ │ ├── ImfKeyCodeAttribute.cpp │ │ ├── ImfKeyCodeAttribute.h │ │ ├── ImfLineOrder.h │ │ ├── ImfLineOrderAttribute.cpp │ │ ├── ImfLineOrderAttribute.h │ │ ├── ImfLut.cpp │ │ ├── ImfLut.h │ │ ├── ImfMatrixAttribute.cpp │ │ ├── ImfMatrixAttribute.h │ │ ├── ImfMisc.cpp │ │ ├── ImfMisc.h │ │ ├── ImfMultiPartInputFile.cpp │ │ ├── ImfMultiPartInputFile.h │ │ ├── ImfMultiPartOutputFile.cpp │ │ ├── ImfMultiPartOutputFile.h │ │ ├── ImfMultiView.cpp │ │ ├── ImfMultiView.h │ │ ├── ImfName.h │ │ ├── ImfNamespace.h │ │ ├── ImfOpaqueAttribute.cpp │ │ ├── ImfOpaqueAttribute.h │ │ ├── ImfOptimizedPixelReading.h │ │ ├── ImfOutputFile.cpp │ │ ├── ImfOutputFile.h │ │ ├── ImfOutputPart.cpp │ │ ├── ImfOutputPart.h │ │ ├── ImfOutputPartData.cpp │ │ ├── ImfOutputPartData.h │ │ ├── ImfOutputStreamMutex.h │ │ ├── ImfPartHelper.h │ │ ├── ImfPartType.cpp │ │ ├── ImfPartType.h │ │ ├── ImfPixelType.h │ │ ├── ImfPizCompressor.cpp │ │ ├── ImfPizCompressor.h │ │ ├── ImfPreviewImage.cpp │ │ ├── ImfPreviewImage.h │ │ ├── ImfPreviewImageAttribute.cpp │ │ ├── ImfPreviewImageAttribute.h │ │ ├── ImfPxr24Compressor.cpp │ │ ├── ImfPxr24Compressor.h │ │ ├── ImfRational.cpp │ │ ├── ImfRational.h │ │ ├── ImfRationalAttribute.cpp │ │ ├── ImfRationalAttribute.h │ │ ├── ImfRgba.h │ │ ├── ImfRgbaFile.cpp │ │ ├── ImfRgbaFile.h │ │ ├── ImfRgbaYca.cpp │ │ ├── ImfRgbaYca.h │ │ ├── ImfRle.cpp │ │ ├── ImfRle.h │ │ ├── ImfRleCompressor.cpp │ │ ├── ImfRleCompressor.h │ │ ├── ImfScanLineInputFile.cpp │ │ ├── ImfScanLineInputFile.h │ │ ├── ImfSimd.h │ │ ├── ImfStandardAttributes.cpp │ │ ├── ImfStandardAttributes.h │ │ ├── ImfStdIO.cpp │ │ ├── ImfStdIO.h │ │ ├── ImfStringAttribute.cpp │ │ ├── ImfStringAttribute.h │ │ ├── ImfStringVectorAttribute.cpp │ │ ├── ImfStringVectorAttribute.h │ │ ├── ImfSystemSpecific.cpp │ │ ├── ImfSystemSpecific.h │ │ ├── ImfTestFile.cpp │ │ ├── ImfTestFile.h │ │ ├── ImfThreading.cpp │ │ ├── ImfThreading.h │ │ ├── ImfTileDescription.h │ │ ├── ImfTileDescriptionAttribute.cpp │ │ ├── ImfTileDescriptionAttribute.h │ │ ├── ImfTileOffsets.cpp │ │ ├── ImfTileOffsets.h │ │ ├── ImfTiledInputFile.cpp │ │ ├── ImfTiledInputFile.h │ │ ├── ImfTiledInputPart.cpp │ │ ├── ImfTiledInputPart.h │ │ ├── ImfTiledMisc.cpp │ │ ├── ImfTiledMisc.h │ │ ├── ImfTiledOutputFile.cpp │ │ ├── ImfTiledOutputFile.h │ │ ├── ImfTiledOutputPart.cpp │ │ ├── ImfTiledOutputPart.h │ │ ├── ImfTiledRgbaFile.cpp │ │ ├── ImfTiledRgbaFile.h │ │ ├── ImfTimeCode.cpp │ │ ├── ImfTimeCode.h │ │ ├── ImfTimeCodeAttribute.cpp │ │ ├── ImfTimeCodeAttribute.h │ │ ├── ImfVecAttribute.cpp │ │ ├── ImfVecAttribute.h │ │ ├── ImfVersion.cpp │ │ ├── ImfVersion.h │ │ ├── ImfWav.cpp │ │ ├── ImfWav.h │ │ ├── ImfXdr.h │ │ ├── ImfZip.cpp │ │ ├── ImfZip.h │ │ ├── ImfZipCompressor.cpp │ │ ├── ImfZipCompressor.h │ │ ├── b44ExpLogTable.cpp │ │ ├── b44ExpLogTable.h │ │ ├── dwaLookups.cpp │ │ └── dwaLookups.h │ ├── IlmThread │ │ ├── IlmThread.cpp │ │ ├── IlmThread.h │ │ ├── IlmThreadExport.h │ │ ├── IlmThreadForward.h │ │ ├── IlmThreadMutex.cpp │ │ ├── IlmThreadMutex.h │ │ ├── IlmThreadMutexPosix.cpp │ │ ├── IlmThreadMutexWin32.cpp │ │ ├── IlmThreadNamespace.h │ │ ├── IlmThreadPool.cpp │ │ ├── IlmThreadPool.h │ │ ├── IlmThreadPosix.cpp │ │ ├── IlmThreadSemaphore.cpp │ │ ├── IlmThreadSemaphore.h │ │ ├── IlmThreadSemaphorePosix.cpp │ │ ├── IlmThreadSemaphorePosixCompat.cpp │ │ ├── IlmThreadSemaphoreWin32.cpp │ │ └── IlmThreadWin32.cpp │ ├── Imath │ │ ├── ImathBox.cpp │ │ ├── ImathBox.h │ │ ├── ImathBoxAlgo.h │ │ ├── ImathColor.h │ │ ├── ImathColorAlgo.cpp │ │ ├── ImathColorAlgo.h │ │ ├── ImathEuler.h │ │ ├── ImathExc.h │ │ ├── ImathExport.h │ │ ├── ImathForward.h │ │ ├── ImathFrame.h │ │ ├── ImathFrustum.h │ │ ├── ImathFrustumTest.h │ │ ├── ImathFun.cpp │ │ ├── ImathFun.h │ │ ├── ImathGL.h │ │ ├── ImathGLU.h │ │ ├── ImathHalfLimits.h │ │ ├── ImathInt64.h │ │ ├── ImathInterval.h │ │ ├── ImathLimits.h │ │ ├── ImathLine.h │ │ ├── ImathLineAlgo.h │ │ ├── ImathMath.h │ │ ├── ImathMatrix.h │ │ ├── ImathMatrixAlgo.cpp │ │ ├── ImathMatrixAlgo.h │ │ ├── ImathNamespace.h │ │ ├── ImathPlane.h │ │ ├── ImathPlatform.h │ │ ├── ImathQuat.h │ │ ├── ImathRandom.cpp │ │ ├── ImathRandom.h │ │ ├── ImathRoots.h │ │ ├── ImathShear.cpp │ │ ├── ImathShear.h │ │ ├── ImathSphere.h │ │ ├── ImathVec.cpp │ │ ├── ImathVec.h │ │ └── ImathVecAlgo.h │ ├── OpenEXR.2017.vcxproj │ ├── OpenEXR.2017.vcxproj.filters │ └── OpenEXRConfig.h ├── Plugin.h ├── Quantizers.h ├── ToneMapping.h ├── Utilities.h └── ZLib │ ├── CMakeLists.txt │ ├── ChangeLog │ ├── FAQ │ ├── INDEX │ ├── LICENSE │ ├── Makefile │ ├── Makefile.in │ ├── README │ ├── ZLib.2017.vcxproj │ ├── ZLib.2017.vcxproj.filters │ ├── adler32.c │ ├── compress.c │ ├── configure │ ├── crc32.c │ ├── crc32.h │ ├── deflate.c │ ├── deflate.h │ ├── gzclose.c │ ├── gzguts.h │ ├── gzlib.c │ ├── gzread.c │ ├── gzwrite.c │ ├── infback.c │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inftrees.c │ ├── inftrees.h │ ├── trees.c │ ├── trees.h │ ├── uncompr.c │ ├── zconf.h │ ├── zconf.h.in │ ├── zlib.3 │ ├── zlib.h │ ├── zutil.c │ └── zutil.h ├── TestAPI ├── .gitignore ├── CMakeLists.txt ├── MainTestSuite.cpp ├── Makefile ├── Test.2017.sln ├── Test.2017.vcxproj ├── TestSuite.h ├── exif.jpg ├── exif.jxr ├── sample.png ├── testChannels.cpp ├── testHeaderOnly.cpp ├── testImageType.cpp ├── testJPEG.cpp ├── testMPage.cpp ├── testMPageMemory.cpp ├── testMPageStream.cpp ├── testMemIO.cpp ├── testPlugins.cpp ├── testThumbnail.cpp ├── testTools.cpp └── testWrappedBuffer.cpp ├── Whatsnew.txt ├── Wrapper ├── Delphi │ ├── WhatsNew_Delphi.txt │ ├── _clean.bat │ ├── demo │ │ ├── ImagePreview │ │ │ ├── ImagePreview.dpr │ │ │ ├── ImagePreview.res │ │ │ ├── MainFrm.dfm │ │ │ ├── MainFrm.pas │ │ │ ├── Readme.txt │ │ │ └── Tiger.jpg │ │ ├── MultiBitmap │ │ │ ├── MultiBitmap.dpr │ │ │ ├── MultiBitmap.res │ │ │ ├── MultiBitmap.stat │ │ │ ├── mbMainForm.dfm │ │ │ └── mbMainForm.pas │ │ ├── TargaUnit │ │ │ ├── Readme.txt │ │ │ └── TargaImage.pas │ │ └── WinBitmap │ │ │ ├── MainDemo.dpr │ │ │ ├── MainDemo.res │ │ │ ├── MainForm.dfm │ │ │ └── MainForm.pas │ ├── license.txt │ └── src │ │ ├── FreeBitmap.pas │ │ ├── FreeImage.pas │ │ ├── FreeUtils.pas │ │ └── Version.inc ├── FreeImage.NET │ ├── cpp │ │ └── FreeImageIO │ │ │ ├── AssemblyInfo.cpp │ │ │ ├── FreeImageIO.Net.cpp │ │ │ ├── FreeImageIO.Net.h │ │ │ ├── FreeImageIO.Net.vcproj │ │ │ ├── FreeImageIO.sln │ │ │ ├── ReadMe.txt │ │ │ ├── Stdafx.cpp │ │ │ ├── Stdafx.h │ │ │ ├── app.ico │ │ │ ├── app.rc │ │ │ └── resource.h │ └── cs │ │ ├── Bin │ │ └── delete.me │ │ ├── Content.txt │ │ ├── Doc │ │ ├── 3.11.0 │ │ │ └── FreeImage.NET.shfbproj │ │ ├── 3.12.0 │ │ │ └── FreeImage.NET.shfbproj │ │ ├── 3.13.0 │ │ │ └── FreeImage.NET.shfbproj │ │ ├── FreeImage.NET.shfbproj │ │ └── SHFB.txt │ │ ├── FreeImage.NET.nunit │ │ ├── FreeImage.NET.sln │ │ ├── Library │ │ ├── Classes │ │ │ ├── FreeImageBitmap.cs │ │ │ ├── FreeImageEngine.cs │ │ │ ├── FreeImagePlugin.cs │ │ │ ├── FreeImageStreamIO.cs │ │ │ ├── GifInformation.cs │ │ │ ├── ImageMetadata.cs │ │ │ ├── LocalPlugin.cs │ │ │ ├── MemoryArray.cs │ │ │ ├── MetadataModel.cs │ │ │ ├── MetadataModels.cs │ │ │ ├── MetadataTag.cs │ │ │ ├── Palette.cs │ │ │ ├── PluginRepository.cs │ │ │ ├── Scanline.cs │ │ │ └── StreamWrapper.cs │ │ ├── Delegates.cs │ │ ├── Enumerations │ │ │ ├── DisposalMethodType.cs │ │ │ ├── FREE_IMAGE_COLOR_CHANNEL.cs │ │ │ ├── FREE_IMAGE_COLOR_DEPTH.cs │ │ │ ├── FREE_IMAGE_COLOR_OPTIONS.cs │ │ │ ├── FREE_IMAGE_COLOR_TYPE.cs │ │ │ ├── FREE_IMAGE_COMPARE_FLAGS.cs │ │ │ ├── FREE_IMAGE_DITHER.cs │ │ │ ├── FREE_IMAGE_FILTER.cs │ │ │ ├── FREE_IMAGE_FORMAT.cs │ │ │ ├── FREE_IMAGE_JPEG_OPERATION.cs │ │ │ ├── FREE_IMAGE_LOAD_FLAGS.cs │ │ │ ├── FREE_IMAGE_MDMODEL.cs │ │ │ ├── FREE_IMAGE_MDTYPE.cs │ │ │ ├── FREE_IMAGE_METADATA_COPY.cs │ │ │ ├── FREE_IMAGE_QUANTIZE.cs │ │ │ ├── FREE_IMAGE_SAVE_FLAGS.cs │ │ │ ├── FREE_IMAGE_TMO.cs │ │ │ ├── FREE_IMAGE_TYPE.cs │ │ │ ├── ICC_FLAGS.cs │ │ │ └── MD_SEARCH_FLAGS.cs │ │ ├── FreeImageStaticImports.cs │ │ ├── FreeImageWrapper.cs │ │ ├── Library.2005.csproj │ │ ├── Library.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Structs │ │ │ ├── BITMAP.cs │ │ │ ├── BITMAPINFO.cs │ │ │ ├── BITMAPINFOHEADER.cs │ │ │ ├── FI16RGB555.cs │ │ │ ├── FI16RGB565.cs │ │ │ ├── FI1BIT.cs │ │ │ ├── FI4BIT.cs │ │ │ ├── FIBITMAP.cs │ │ │ ├── FICOMPLEX.cs │ │ │ ├── FIICCPROFILE.cs │ │ │ ├── FIMEMORY.cs │ │ │ ├── FIMETADATA.cs │ │ │ ├── FIMULTIBITMAP.cs │ │ │ ├── FIRGB16.cs │ │ │ ├── FIRGBA16.cs │ │ │ ├── FIRGBAF.cs │ │ │ ├── FIRGBF.cs │ │ │ ├── FIRational.cs │ │ │ ├── FITAG.cs │ │ │ ├── FIURational.cs │ │ │ ├── FreeImageIO.cs │ │ │ ├── Plugin.cs │ │ │ ├── RGBQUAD.cs │ │ │ ├── RGBTRIPLE.cs │ │ │ └── fi_handle.cs │ │ └── build.bat │ │ ├── Samples │ │ ├── Sample 01 - Loading and saving │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Sample 01 - Loading and saving.2005.csproj │ │ │ ├── Sample 01 - Loading and saving.csproj │ │ │ └── Sample.jpg │ │ ├── Sample 02 - Multipaged bitmaps │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Sample 02 - Multipaged bitmaps.2005.csproj │ │ │ ├── Sample 02 - Multipaged bitmaps.csproj │ │ │ └── multipaged.tif │ │ ├── Sample 03 - Allocating │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Sample 03 - Allocating.2005.csproj │ │ │ └── Sample 03 - Allocating.csproj │ │ ├── Sample 04 - Getting bitmap informations │ │ │ ├── MainForm.Designer.cs │ │ │ ├── MainForm.cs │ │ │ ├── MainForm.resx │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Sample 04 - Getting bitmap informations.2005.csproj │ │ │ └── Sample 04 - Getting bitmap informations.csproj │ │ ├── Sample 05 - Working with pixels │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Sample 05 - Working with pixels.2005.csproj │ │ │ ├── Sample 05 - Working with pixels.csproj │ │ │ ├── Sample.jpg │ │ │ └── Sample.tif │ │ ├── Sample 06 - Converting │ │ │ ├── MainForm.Designer.cs │ │ │ ├── MainForm.cs │ │ │ ├── MainForm.resx │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Sample 06 - Converting.2005.csproj │ │ │ ├── Sample 06 - Converting.csproj │ │ │ └── Sample.jpg │ │ ├── Sample 07 - ICC Profiles │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Sample 07 - ICC Profiles.2005.csproj │ │ │ ├── Sample 07 - ICC Profiles.csproj │ │ │ └── Sample.jpg │ │ ├── Sample 08 - Creating a plugin │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Sample 08 - Creating a plugin.2005.csproj │ │ │ ├── Sample 08 - Creating a plugin.csproj │ │ │ ├── Sample.jpg │ │ │ ├── SampleForm.Designer.cs │ │ │ ├── SampleForm.cs │ │ │ ├── SampleForm.resx │ │ │ └── SerializationPlugin.cs │ │ ├── Sample 09 - Working with streams │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Sample 09 - Working with streams.2005.csproj │ │ │ ├── Sample 09 - Working with streams.csproj │ │ │ ├── SampleForm.Designer.cs │ │ │ ├── SampleForm.cs │ │ │ └── SampleForm.resx │ │ ├── Sample 10 - Metadata │ │ │ ├── MainForm.Designer.cs │ │ │ ├── MainForm.cs │ │ │ ├── MainForm.resx │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Sample 10 - Metadata.2005.csproj │ │ │ └── Sample 10 - Metadata.csproj │ │ └── Sample 11 - Using the FreeImageBitmap class │ │ │ ├── MainForm.Designer.cs │ │ │ ├── MainForm.cs │ │ │ ├── MainForm.resx │ │ │ ├── MetaDataFrame.Designer.cs │ │ │ ├── MetaDataFrame.cs │ │ │ ├── MetaDataFrame.resx │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── Sample 11 - Using the FreeImageBitmap class.2005.csproj │ │ │ └── Sample 11 - Using the FreeImageBitmap class.csproj │ │ ├── SourceFileMerger │ │ ├── FreeImage.cs.template │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── SourceFileMerger.2005.csproj │ │ └── SourceFileMerger.csproj │ │ ├── UnitTest │ │ ├── FreeImage.cs │ │ ├── ImageManager.cs │ │ ├── NUnit.txt │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── UnitTest.2005.csproj │ │ ├── UnitTest.cs │ │ └── UnitTest.csproj │ │ ├── Whats_New.NET.txt │ │ └── clean.bat ├── FreeImagePlus │ ├── FreeImagePlus.2017.sln │ ├── FreeImagePlus.2017.vcxproj │ ├── FreeImagePlus.2017.vcxproj.filters │ ├── FreeImagePlus.h │ ├── FreeImagePlus.rc │ ├── WhatsNew_FIP.txt │ ├── clean.bat │ ├── dist │ │ └── delete.me │ ├── doc │ │ ├── FreeImagePlus.dox │ │ ├── footer.html │ │ ├── freeimage.png │ │ ├── freeimagedoc.jpg │ │ └── index.html │ ├── src │ │ ├── FreeImagePlus.cpp │ │ ├── fipImage.cpp │ │ ├── fipMemoryIO.cpp │ │ ├── fipMetadataFind.cpp │ │ ├── fipMultiPage.cpp │ │ ├── fipTag.cpp │ │ └── fipWinImage.cpp │ └── test │ │ ├── fipTest.2017.sln │ │ ├── fipTest.2017.vcxproj │ │ ├── fipTest.cpp │ │ ├── fipTest.h │ │ ├── fipTestMPage.cpp │ │ ├── fipTestMPageMemory.cpp │ │ ├── fipTestMPageStream.cpp │ │ ├── fipTestMemIO.cpp │ │ ├── test.jpg │ │ └── test.tif └── VB6 │ └── src │ ├── MFreeImage.bas │ └── WhatsNew_VB.txt ├── clean.bat ├── clean.sh ├── cmake └── FreeImageConfig.cmake.in ├── fipMakefile.srcs ├── genfipsrclist.sh ├── gensrclist.sh ├── license-fi.txt ├── license-gplv2.txt └── license-gplv3.txt /.github/workflows/cmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/.github/workflows/cmake.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Dist/delete.me: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/Generic/BatchLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Examples/Generic/BatchLoad.cpp -------------------------------------------------------------------------------- /Examples/Generic/CloneMultiPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Examples/Generic/CloneMultiPage.cpp -------------------------------------------------------------------------------- /Examples/Generic/CreateAlpha.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Examples/Generic/CreateAlpha.cpp -------------------------------------------------------------------------------- /Examples/Generic/FIFImportExport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Examples/Generic/FIFImportExport.cpp -------------------------------------------------------------------------------- /Examples/Generic/FIIO_Mem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Examples/Generic/FIIO_Mem.cpp -------------------------------------------------------------------------------- /Examples/Generic/FIIO_Mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Examples/Generic/FIIO_Mem.h -------------------------------------------------------------------------------- /Examples/Generic/LoadFromHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Examples/Generic/LoadFromHandle.cpp -------------------------------------------------------------------------------- /Examples/Generic/LoadFromMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Examples/Generic/LoadFromMemory.cpp -------------------------------------------------------------------------------- /Examples/Generic/ShowMetadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Examples/Generic/ShowMetadata.cpp -------------------------------------------------------------------------------- /Examples/Linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Examples/Linux/Makefile -------------------------------------------------------------------------------- /Examples/Linux/linux-gtk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Examples/Linux/linux-gtk.c -------------------------------------------------------------------------------- /Examples/Linux/linux-svgalib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Examples/Linux/linux-svgalib.c -------------------------------------------------------------------------------- /Examples/Plugin/PluginCradle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Examples/Plugin/PluginCradle.cpp -------------------------------------------------------------------------------- /Examples/Plugin/PluginCradle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Examples/Plugin/PluginCradle.h -------------------------------------------------------------------------------- /FreeImage.2017.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/FreeImage.2017.sln -------------------------------------------------------------------------------- /FreeImage.2017.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/FreeImage.2017.vcxproj -------------------------------------------------------------------------------- /FreeImage.2017.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/FreeImage.2017.vcxproj.filters -------------------------------------------------------------------------------- /FreeImage.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/FreeImage.rc -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Makefile.android -------------------------------------------------------------------------------- /Makefile.cygwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Makefile.cygwin -------------------------------------------------------------------------------- /Makefile.fip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Makefile.fip -------------------------------------------------------------------------------- /Makefile.gnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Makefile.gnu -------------------------------------------------------------------------------- /Makefile.ios: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Makefile.ios -------------------------------------------------------------------------------- /Makefile.iphone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Makefile.iphone -------------------------------------------------------------------------------- /Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Makefile.mingw -------------------------------------------------------------------------------- /Makefile.osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Makefile.osx -------------------------------------------------------------------------------- /Makefile.solaris: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Makefile.solaris -------------------------------------------------------------------------------- /Makefile.srcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Makefile.srcs -------------------------------------------------------------------------------- /README.iphone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/README.iphone -------------------------------------------------------------------------------- /README.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/README.linux -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/README.md -------------------------------------------------------------------------------- /README.minGW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/README.minGW -------------------------------------------------------------------------------- /README.osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/README.osx -------------------------------------------------------------------------------- /README.solaris: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/README.solaris -------------------------------------------------------------------------------- /Source/CacheFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/CacheFile.h -------------------------------------------------------------------------------- /Source/FreeImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage.h -------------------------------------------------------------------------------- /Source/FreeImage/BitmapAccess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/BitmapAccess.cpp -------------------------------------------------------------------------------- /Source/FreeImage/CacheFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/CacheFile.cpp -------------------------------------------------------------------------------- /Source/FreeImage/ColorLookup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/ColorLookup.cpp -------------------------------------------------------------------------------- /Source/FreeImage/Conversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/Conversion.cpp -------------------------------------------------------------------------------- /Source/FreeImage/Conversion16_555.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/Conversion16_555.cpp -------------------------------------------------------------------------------- /Source/FreeImage/Conversion16_565.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/Conversion16_565.cpp -------------------------------------------------------------------------------- /Source/FreeImage/Conversion24.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/Conversion24.cpp -------------------------------------------------------------------------------- /Source/FreeImage/Conversion32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/Conversion32.cpp -------------------------------------------------------------------------------- /Source/FreeImage/Conversion4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/Conversion4.cpp -------------------------------------------------------------------------------- /Source/FreeImage/Conversion8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/Conversion8.cpp -------------------------------------------------------------------------------- /Source/FreeImage/ConversionFloat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/ConversionFloat.cpp -------------------------------------------------------------------------------- /Source/FreeImage/ConversionRGB16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/ConversionRGB16.cpp -------------------------------------------------------------------------------- /Source/FreeImage/ConversionRGBA16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/ConversionRGBA16.cpp -------------------------------------------------------------------------------- /Source/FreeImage/ConversionRGBAF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/ConversionRGBAF.cpp -------------------------------------------------------------------------------- /Source/FreeImage/ConversionRGBF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/ConversionRGBF.cpp -------------------------------------------------------------------------------- /Source/FreeImage/ConversionType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/ConversionType.cpp -------------------------------------------------------------------------------- /Source/FreeImage/ConversionUINT16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/ConversionUINT16.cpp -------------------------------------------------------------------------------- /Source/FreeImage/FreeImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/FreeImage.cpp -------------------------------------------------------------------------------- /Source/FreeImage/FreeImageC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/FreeImageC.c -------------------------------------------------------------------------------- /Source/FreeImage/FreeImageIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/FreeImageIO.cpp -------------------------------------------------------------------------------- /Source/FreeImage/GetType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/GetType.cpp -------------------------------------------------------------------------------- /Source/FreeImage/Halftoning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/Halftoning.cpp -------------------------------------------------------------------------------- /Source/FreeImage/J2KHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/J2KHelper.cpp -------------------------------------------------------------------------------- /Source/FreeImage/J2KHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/J2KHelper.h -------------------------------------------------------------------------------- /Source/FreeImage/LFPQuantizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/LFPQuantizer.cpp -------------------------------------------------------------------------------- /Source/FreeImage/MNGHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/MNGHelper.cpp -------------------------------------------------------------------------------- /Source/FreeImage/MemoryIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/MemoryIO.cpp -------------------------------------------------------------------------------- /Source/FreeImage/MultiPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/MultiPage.cpp -------------------------------------------------------------------------------- /Source/FreeImage/NNQuantizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/NNQuantizer.cpp -------------------------------------------------------------------------------- /Source/FreeImage/PSDParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/PSDParser.cpp -------------------------------------------------------------------------------- /Source/FreeImage/PSDParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/PSDParser.h -------------------------------------------------------------------------------- /Source/FreeImage/PixelAccess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/PixelAccess.cpp -------------------------------------------------------------------------------- /Source/FreeImage/Plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/Plugin.cpp -------------------------------------------------------------------------------- /Source/FreeImage/PluginBMP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/PluginBMP.cpp -------------------------------------------------------------------------------- /Source/FreeImage/PluginCUT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/PluginCUT.cpp -------------------------------------------------------------------------------- /Source/FreeImage/PluginDDS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/PluginDDS.cpp -------------------------------------------------------------------------------- /Source/FreeImage/PluginEXR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/PluginEXR.cpp -------------------------------------------------------------------------------- /Source/FreeImage/PluginG3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/PluginG3.cpp -------------------------------------------------------------------------------- /Source/FreeImage/PluginGIF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/PluginGIF.cpp -------------------------------------------------------------------------------- /Source/FreeImage/PluginHDR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/PluginHDR.cpp -------------------------------------------------------------------------------- /Source/FreeImage/PluginICO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/PluginICO.cpp -------------------------------------------------------------------------------- /Source/FreeImage/PluginIFF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/PluginIFF.cpp -------------------------------------------------------------------------------- /Source/FreeImage/PluginJ2K.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/PluginJ2K.cpp -------------------------------------------------------------------------------- /Source/FreeImage/PluginJNG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/PluginJNG.cpp -------------------------------------------------------------------------------- /Source/FreeImage/PluginJP2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/PluginJP2.cpp -------------------------------------------------------------------------------- /Source/FreeImage/PluginJPEG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/PluginJPEG.cpp -------------------------------------------------------------------------------- /Source/FreeImage/PluginJXR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/PluginJXR.cpp -------------------------------------------------------------------------------- /Source/FreeImage/PluginKOALA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/PluginKOALA.cpp -------------------------------------------------------------------------------- /Source/FreeImage/PluginMNG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/PluginMNG.cpp -------------------------------------------------------------------------------- /Source/FreeImage/PluginPCD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/PluginPCD.cpp -------------------------------------------------------------------------------- /Source/FreeImage/PluginPCX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/PluginPCX.cpp -------------------------------------------------------------------------------- /Source/FreeImage/PluginPFM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/PluginPFM.cpp -------------------------------------------------------------------------------- /Source/FreeImage/PluginPICT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/PluginPICT.cpp -------------------------------------------------------------------------------- /Source/FreeImage/PluginPNG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/PluginPNG.cpp -------------------------------------------------------------------------------- /Source/FreeImage/PluginPNM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/PluginPNM.cpp -------------------------------------------------------------------------------- /Source/FreeImage/PluginPSD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/PluginPSD.cpp -------------------------------------------------------------------------------- /Source/FreeImage/PluginRAS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/PluginRAS.cpp -------------------------------------------------------------------------------- /Source/FreeImage/PluginRAW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/PluginRAW.cpp -------------------------------------------------------------------------------- /Source/FreeImage/PluginSGI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/PluginSGI.cpp -------------------------------------------------------------------------------- /Source/FreeImage/PluginTARGA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/PluginTARGA.cpp -------------------------------------------------------------------------------- /Source/FreeImage/PluginTIFF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/PluginTIFF.cpp -------------------------------------------------------------------------------- /Source/FreeImage/PluginWBMP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/PluginWBMP.cpp -------------------------------------------------------------------------------- /Source/FreeImage/PluginWebP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/PluginWebP.cpp -------------------------------------------------------------------------------- /Source/FreeImage/PluginXBM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/PluginXBM.cpp -------------------------------------------------------------------------------- /Source/FreeImage/PluginXPM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/PluginXPM.cpp -------------------------------------------------------------------------------- /Source/FreeImage/TIFFLogLuv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/TIFFLogLuv.cpp -------------------------------------------------------------------------------- /Source/FreeImage/ToneMapping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/ToneMapping.cpp -------------------------------------------------------------------------------- /Source/FreeImage/WuQuantizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/WuQuantizer.cpp -------------------------------------------------------------------------------- /Source/FreeImage/ZLibInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/ZLibInterface.cpp -------------------------------------------------------------------------------- /Source/FreeImage/tmoColorConvert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/tmoColorConvert.cpp -------------------------------------------------------------------------------- /Source/FreeImage/tmoDrago03.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/tmoDrago03.cpp -------------------------------------------------------------------------------- /Source/FreeImage/tmoFattal02.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/tmoFattal02.cpp -------------------------------------------------------------------------------- /Source/FreeImage/tmoReinhard05.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImage/tmoReinhard05.cpp -------------------------------------------------------------------------------- /Source/FreeImageIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImageIO.h -------------------------------------------------------------------------------- /Source/FreeImageToolkit/Background.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImageToolkit/Background.cpp -------------------------------------------------------------------------------- /Source/FreeImageToolkit/Channels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImageToolkit/Channels.cpp -------------------------------------------------------------------------------- /Source/FreeImageToolkit/Colors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImageToolkit/Colors.cpp -------------------------------------------------------------------------------- /Source/FreeImageToolkit/CopyPaste.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImageToolkit/CopyPaste.cpp -------------------------------------------------------------------------------- /Source/FreeImageToolkit/Display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImageToolkit/Display.cpp -------------------------------------------------------------------------------- /Source/FreeImageToolkit/Filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImageToolkit/Filters.h -------------------------------------------------------------------------------- /Source/FreeImageToolkit/Flip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImageToolkit/Flip.cpp -------------------------------------------------------------------------------- /Source/FreeImageToolkit/Rescale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImageToolkit/Rescale.cpp -------------------------------------------------------------------------------- /Source/FreeImageToolkit/Resize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImageToolkit/Resize.cpp -------------------------------------------------------------------------------- /Source/FreeImageToolkit/Resize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/FreeImageToolkit/Resize.h -------------------------------------------------------------------------------- /Source/LibJPEG/LibJPEG.2017.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/LibJPEG.2017.vcxproj -------------------------------------------------------------------------------- /Source/LibJPEG/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/README -------------------------------------------------------------------------------- /Source/LibJPEG/cderror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/cderror.h -------------------------------------------------------------------------------- /Source/LibJPEG/cdjpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/cdjpeg.c -------------------------------------------------------------------------------- /Source/LibJPEG/cdjpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/cdjpeg.h -------------------------------------------------------------------------------- /Source/LibJPEG/change.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/change.log -------------------------------------------------------------------------------- /Source/LibJPEG/cjpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/cjpeg.c -------------------------------------------------------------------------------- /Source/LibJPEG/ckconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/ckconfig.c -------------------------------------------------------------------------------- /Source/LibJPEG/coderules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/coderules.txt -------------------------------------------------------------------------------- /Source/LibJPEG/djpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/djpeg.c -------------------------------------------------------------------------------- /Source/LibJPEG/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/example.c -------------------------------------------------------------------------------- /Source/LibJPEG/filelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/filelist.txt -------------------------------------------------------------------------------- /Source/LibJPEG/install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/install.txt -------------------------------------------------------------------------------- /Source/LibJPEG/jaricom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jaricom.c -------------------------------------------------------------------------------- /Source/LibJPEG/jcapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jcapimin.c -------------------------------------------------------------------------------- /Source/LibJPEG/jcapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jcapistd.c -------------------------------------------------------------------------------- /Source/LibJPEG/jcarith.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jcarith.c -------------------------------------------------------------------------------- /Source/LibJPEG/jccoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jccoefct.c -------------------------------------------------------------------------------- /Source/LibJPEG/jccolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jccolor.c -------------------------------------------------------------------------------- /Source/LibJPEG/jcdctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jcdctmgr.c -------------------------------------------------------------------------------- /Source/LibJPEG/jchuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jchuff.c -------------------------------------------------------------------------------- /Source/LibJPEG/jcinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jcinit.c -------------------------------------------------------------------------------- /Source/LibJPEG/jcmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jcmainct.c -------------------------------------------------------------------------------- /Source/LibJPEG/jcmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jcmarker.c -------------------------------------------------------------------------------- /Source/LibJPEG/jcmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jcmaster.c -------------------------------------------------------------------------------- /Source/LibJPEG/jcomapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jcomapi.c -------------------------------------------------------------------------------- /Source/LibJPEG/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jconfig.h -------------------------------------------------------------------------------- /Source/LibJPEG/jconfig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jconfig.txt -------------------------------------------------------------------------------- /Source/LibJPEG/jcparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jcparam.c -------------------------------------------------------------------------------- /Source/LibJPEG/jcprepct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jcprepct.c -------------------------------------------------------------------------------- /Source/LibJPEG/jcsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jcsample.c -------------------------------------------------------------------------------- /Source/LibJPEG/jctrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jctrans.c -------------------------------------------------------------------------------- /Source/LibJPEG/jdapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jdapimin.c -------------------------------------------------------------------------------- /Source/LibJPEG/jdapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jdapistd.c -------------------------------------------------------------------------------- /Source/LibJPEG/jdarith.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jdarith.c -------------------------------------------------------------------------------- /Source/LibJPEG/jdatadst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jdatadst.c -------------------------------------------------------------------------------- /Source/LibJPEG/jdatasrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jdatasrc.c -------------------------------------------------------------------------------- /Source/LibJPEG/jdcoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jdcoefct.c -------------------------------------------------------------------------------- /Source/LibJPEG/jdcolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jdcolor.c -------------------------------------------------------------------------------- /Source/LibJPEG/jdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jdct.h -------------------------------------------------------------------------------- /Source/LibJPEG/jddctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jddctmgr.c -------------------------------------------------------------------------------- /Source/LibJPEG/jdhuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jdhuff.c -------------------------------------------------------------------------------- /Source/LibJPEG/jdinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jdinput.c -------------------------------------------------------------------------------- /Source/LibJPEG/jdmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jdmainct.c -------------------------------------------------------------------------------- /Source/LibJPEG/jdmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jdmarker.c -------------------------------------------------------------------------------- /Source/LibJPEG/jdmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jdmaster.c -------------------------------------------------------------------------------- /Source/LibJPEG/jdmerge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jdmerge.c -------------------------------------------------------------------------------- /Source/LibJPEG/jdpostct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jdpostct.c -------------------------------------------------------------------------------- /Source/LibJPEG/jdsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jdsample.c -------------------------------------------------------------------------------- /Source/LibJPEG/jdtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jdtrans.c -------------------------------------------------------------------------------- /Source/LibJPEG/jerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jerror.c -------------------------------------------------------------------------------- /Source/LibJPEG/jerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jerror.h -------------------------------------------------------------------------------- /Source/LibJPEG/jfdctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jfdctflt.c -------------------------------------------------------------------------------- /Source/LibJPEG/jfdctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jfdctfst.c -------------------------------------------------------------------------------- /Source/LibJPEG/jfdctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jfdctint.c -------------------------------------------------------------------------------- /Source/LibJPEG/jidctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jidctflt.c -------------------------------------------------------------------------------- /Source/LibJPEG/jidctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jidctfst.c -------------------------------------------------------------------------------- /Source/LibJPEG/jidctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jidctint.c -------------------------------------------------------------------------------- /Source/LibJPEG/jinclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jinclude.h -------------------------------------------------------------------------------- /Source/LibJPEG/jmemansi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jmemansi.c -------------------------------------------------------------------------------- /Source/LibJPEG/jmemdos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jmemdos.c -------------------------------------------------------------------------------- /Source/LibJPEG/jmemmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jmemmac.c -------------------------------------------------------------------------------- /Source/LibJPEG/jmemmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jmemmgr.c -------------------------------------------------------------------------------- /Source/LibJPEG/jmemname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jmemname.c -------------------------------------------------------------------------------- /Source/LibJPEG/jmemnobs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jmemnobs.c -------------------------------------------------------------------------------- /Source/LibJPEG/jmemsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jmemsys.h -------------------------------------------------------------------------------- /Source/LibJPEG/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jmorecfg.h -------------------------------------------------------------------------------- /Source/LibJPEG/jpegint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jpegint.h -------------------------------------------------------------------------------- /Source/LibJPEG/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jpeglib.h -------------------------------------------------------------------------------- /Source/LibJPEG/jpegtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jpegtran.c -------------------------------------------------------------------------------- /Source/LibJPEG/jquant1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jquant1.c -------------------------------------------------------------------------------- /Source/LibJPEG/jquant2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jquant2.c -------------------------------------------------------------------------------- /Source/LibJPEG/jutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jutils.c -------------------------------------------------------------------------------- /Source/LibJPEG/jversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/jversion.h -------------------------------------------------------------------------------- /Source/LibJPEG/libjpeg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/libjpeg.txt -------------------------------------------------------------------------------- /Source/LibJPEG/rdbmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/rdbmp.c -------------------------------------------------------------------------------- /Source/LibJPEG/rdcolmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/rdcolmap.c -------------------------------------------------------------------------------- /Source/LibJPEG/rdgif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/rdgif.c -------------------------------------------------------------------------------- /Source/LibJPEG/rdjpgcom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/rdjpgcom.c -------------------------------------------------------------------------------- /Source/LibJPEG/rdppm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/rdppm.c -------------------------------------------------------------------------------- /Source/LibJPEG/rdrle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/rdrle.c -------------------------------------------------------------------------------- /Source/LibJPEG/rdswitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/rdswitch.c -------------------------------------------------------------------------------- /Source/LibJPEG/rdtarga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/rdtarga.c -------------------------------------------------------------------------------- /Source/LibJPEG/structure.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/structure.txt -------------------------------------------------------------------------------- /Source/LibJPEG/transupp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/transupp.c -------------------------------------------------------------------------------- /Source/LibJPEG/transupp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/transupp.h -------------------------------------------------------------------------------- /Source/LibJPEG/usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/usage.txt -------------------------------------------------------------------------------- /Source/LibJPEG/wizard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/wizard.txt -------------------------------------------------------------------------------- /Source/LibJPEG/wrbmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/wrbmp.c -------------------------------------------------------------------------------- /Source/LibJPEG/wrgif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/wrgif.c -------------------------------------------------------------------------------- /Source/LibJPEG/wrjpgcom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/wrjpgcom.c -------------------------------------------------------------------------------- /Source/LibJPEG/wrppm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/wrppm.c -------------------------------------------------------------------------------- /Source/LibJPEG/wrrle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/wrrle.c -------------------------------------------------------------------------------- /Source/LibJPEG/wrtarga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJPEG/wrtarga.c -------------------------------------------------------------------------------- /Source/LibJXR/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJXR/LICENCE -------------------------------------------------------------------------------- /Source/LibJXR/LibJXR.2017.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJXR/LibJXR.2017.vcxproj -------------------------------------------------------------------------------- /Source/LibJXR/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJXR/README -------------------------------------------------------------------------------- /Source/LibJXR/common/include/guiddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJXR/common/include/guiddef.h -------------------------------------------------------------------------------- /Source/LibJXR/common/include/wmsal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJXR/common/include/wmsal.h -------------------------------------------------------------------------------- /Source/LibJXR/image/decode/decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJXR/image/decode/decode.c -------------------------------------------------------------------------------- /Source/LibJXR/image/decode/decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJXR/image/decode/decode.h -------------------------------------------------------------------------------- /Source/LibJXR/image/decode/postprocess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJXR/image/decode/postprocess.c -------------------------------------------------------------------------------- /Source/LibJXR/image/decode/segdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJXR/image/decode/segdec.c -------------------------------------------------------------------------------- /Source/LibJXR/image/decode/strdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJXR/image/decode/strdec.c -------------------------------------------------------------------------------- /Source/LibJXR/image/decode/strdec_x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJXR/image/decode/strdec_x86.c -------------------------------------------------------------------------------- /Source/LibJXR/image/encode/encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJXR/image/encode/encode.c -------------------------------------------------------------------------------- /Source/LibJXR/image/encode/encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJXR/image/encode/encode.h -------------------------------------------------------------------------------- /Source/LibJXR/image/encode/segenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJXR/image/encode/segenc.c -------------------------------------------------------------------------------- /Source/LibJXR/image/encode/strenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJXR/image/encode/strenc.c -------------------------------------------------------------------------------- /Source/LibJXR/image/encode/strenc_x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJXR/image/encode/strenc_x86.c -------------------------------------------------------------------------------- /Source/LibJXR/image/sys/adapthuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJXR/image/sys/adapthuff.c -------------------------------------------------------------------------------- /Source/LibJXR/image/sys/ansi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJXR/image/sys/ansi.h -------------------------------------------------------------------------------- /Source/LibJXR/image/sys/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJXR/image/sys/common.h -------------------------------------------------------------------------------- /Source/LibJXR/image/sys/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJXR/image/sys/image.c -------------------------------------------------------------------------------- /Source/LibJXR/image/sys/perfTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJXR/image/sys/perfTimer.h -------------------------------------------------------------------------------- /Source/LibJXR/image/sys/perfTimerANSI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJXR/image/sys/perfTimerANSI.c -------------------------------------------------------------------------------- /Source/LibJXR/image/sys/strPredQuant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJXR/image/sys/strPredQuant.c -------------------------------------------------------------------------------- /Source/LibJXR/image/sys/strTransform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJXR/image/sys/strTransform.c -------------------------------------------------------------------------------- /Source/LibJXR/image/sys/strTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJXR/image/sys/strTransform.h -------------------------------------------------------------------------------- /Source/LibJXR/image/sys/strcodec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJXR/image/sys/strcodec.c -------------------------------------------------------------------------------- /Source/LibJXR/image/sys/strcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJXR/image/sys/strcodec.h -------------------------------------------------------------------------------- /Source/LibJXR/image/x86/x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJXR/image/x86/x86.h -------------------------------------------------------------------------------- /Source/LibJXR/jxrgluelib/JXRGlue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJXR/jxrgluelib/JXRGlue.c -------------------------------------------------------------------------------- /Source/LibJXR/jxrgluelib/JXRGlue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJXR/jxrgluelib/JXRGlue.h -------------------------------------------------------------------------------- /Source/LibJXR/jxrgluelib/JXRGlueJxr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJXR/jxrgluelib/JXRGlueJxr.c -------------------------------------------------------------------------------- /Source/LibJXR/jxrgluelib/JXRGluePFC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJXR/jxrgluelib/JXRGluePFC.c -------------------------------------------------------------------------------- /Source/LibJXR/jxrgluelib/JXRMeta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJXR/jxrgluelib/JXRMeta.c -------------------------------------------------------------------------------- /Source/LibJXR/jxrgluelib/JXRMeta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibJXR/jxrgluelib/JXRMeta.h -------------------------------------------------------------------------------- /Source/LibOpenJPEG/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/AUTHORS -------------------------------------------------------------------------------- /Source/LibOpenJPEG/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/INSTALL -------------------------------------------------------------------------------- /Source/LibOpenJPEG/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/LICENSE -------------------------------------------------------------------------------- /Source/LibOpenJPEG/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/NEWS -------------------------------------------------------------------------------- /Source/LibOpenJPEG/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/README -------------------------------------------------------------------------------- /Source/LibOpenJPEG/THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/THANKS -------------------------------------------------------------------------------- /Source/LibOpenJPEG/bio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/bio.c -------------------------------------------------------------------------------- /Source/LibOpenJPEG/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/bio.h -------------------------------------------------------------------------------- /Source/LibOpenJPEG/cidx_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/cidx_manager.c -------------------------------------------------------------------------------- /Source/LibOpenJPEG/cidx_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/cidx_manager.h -------------------------------------------------------------------------------- /Source/LibOpenJPEG/cio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/cio.c -------------------------------------------------------------------------------- /Source/LibOpenJPEG/cio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/cio.h -------------------------------------------------------------------------------- /Source/LibOpenJPEG/dwt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/dwt.c -------------------------------------------------------------------------------- /Source/LibOpenJPEG/dwt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/dwt.h -------------------------------------------------------------------------------- /Source/LibOpenJPEG/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/event.c -------------------------------------------------------------------------------- /Source/LibOpenJPEG/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/event.h -------------------------------------------------------------------------------- /Source/LibOpenJPEG/function_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/function_list.c -------------------------------------------------------------------------------- /Source/LibOpenJPEG/function_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/function_list.h -------------------------------------------------------------------------------- /Source/LibOpenJPEG/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/image.c -------------------------------------------------------------------------------- /Source/LibOpenJPEG/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/image.h -------------------------------------------------------------------------------- /Source/LibOpenJPEG/indexbox_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/indexbox_manager.h -------------------------------------------------------------------------------- /Source/LibOpenJPEG/invert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/invert.c -------------------------------------------------------------------------------- /Source/LibOpenJPEG/invert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/invert.h -------------------------------------------------------------------------------- /Source/LibOpenJPEG/j2k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/j2k.c -------------------------------------------------------------------------------- /Source/LibOpenJPEG/j2k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/j2k.h -------------------------------------------------------------------------------- /Source/LibOpenJPEG/jp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/jp2.c -------------------------------------------------------------------------------- /Source/LibOpenJPEG/jp2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/jp2.h -------------------------------------------------------------------------------- /Source/LibOpenJPEG/mct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/mct.c -------------------------------------------------------------------------------- /Source/LibOpenJPEG/mct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/mct.h -------------------------------------------------------------------------------- /Source/LibOpenJPEG/mqc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/mqc.c -------------------------------------------------------------------------------- /Source/LibOpenJPEG/mqc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/mqc.h -------------------------------------------------------------------------------- /Source/LibOpenJPEG/openjpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/openjpeg.c -------------------------------------------------------------------------------- /Source/LibOpenJPEG/openjpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/openjpeg.h -------------------------------------------------------------------------------- /Source/LibOpenJPEG/opj_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/opj_clock.c -------------------------------------------------------------------------------- /Source/LibOpenJPEG/opj_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/opj_clock.h -------------------------------------------------------------------------------- /Source/LibOpenJPEG/opj_codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/opj_codec.h -------------------------------------------------------------------------------- /Source/LibOpenJPEG/opj_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/opj_config.h -------------------------------------------------------------------------------- /Source/LibOpenJPEG/opj_config_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/opj_config_private.h -------------------------------------------------------------------------------- /Source/LibOpenJPEG/opj_includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/opj_includes.h -------------------------------------------------------------------------------- /Source/LibOpenJPEG/opj_intmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/opj_intmath.h -------------------------------------------------------------------------------- /Source/LibOpenJPEG/opj_inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/opj_inttypes.h -------------------------------------------------------------------------------- /Source/LibOpenJPEG/opj_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/opj_malloc.h -------------------------------------------------------------------------------- /Source/LibOpenJPEG/opj_stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/opj_stdint.h -------------------------------------------------------------------------------- /Source/LibOpenJPEG/phix_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/phix_manager.c -------------------------------------------------------------------------------- /Source/LibOpenJPEG/pi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/pi.c -------------------------------------------------------------------------------- /Source/LibOpenJPEG/pi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/pi.h -------------------------------------------------------------------------------- /Source/LibOpenJPEG/ppix_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/ppix_manager.c -------------------------------------------------------------------------------- /Source/LibOpenJPEG/raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/raw.c -------------------------------------------------------------------------------- /Source/LibOpenJPEG/raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/raw.h -------------------------------------------------------------------------------- /Source/LibOpenJPEG/t1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/t1.c -------------------------------------------------------------------------------- /Source/LibOpenJPEG/t1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/t1.h -------------------------------------------------------------------------------- /Source/LibOpenJPEG/t1_generate_luts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/t1_generate_luts.c -------------------------------------------------------------------------------- /Source/LibOpenJPEG/t1_luts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/t1_luts.h -------------------------------------------------------------------------------- /Source/LibOpenJPEG/t2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/t2.c -------------------------------------------------------------------------------- /Source/LibOpenJPEG/t2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/t2.h -------------------------------------------------------------------------------- /Source/LibOpenJPEG/tcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/tcd.c -------------------------------------------------------------------------------- /Source/LibOpenJPEG/tcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/tcd.h -------------------------------------------------------------------------------- /Source/LibOpenJPEG/tgt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/tgt.c -------------------------------------------------------------------------------- /Source/LibOpenJPEG/tgt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/tgt.h -------------------------------------------------------------------------------- /Source/LibOpenJPEG/thix_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/thix_manager.c -------------------------------------------------------------------------------- /Source/LibOpenJPEG/tpix_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibOpenJPEG/tpix_manager.c -------------------------------------------------------------------------------- /Source/LibPNG/ANNOUNCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibPNG/ANNOUNCE -------------------------------------------------------------------------------- /Source/LibPNG/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibPNG/AUTHORS -------------------------------------------------------------------------------- /Source/LibPNG/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibPNG/CHANGES -------------------------------------------------------------------------------- /Source/LibPNG/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibPNG/CMakeLists.txt -------------------------------------------------------------------------------- /Source/LibPNG/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibPNG/INSTALL -------------------------------------------------------------------------------- /Source/LibPNG/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibPNG/LICENSE -------------------------------------------------------------------------------- /Source/LibPNG/LibPNG.2017.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibPNG/LibPNG.2017.vcxproj -------------------------------------------------------------------------------- /Source/LibPNG/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibPNG/README -------------------------------------------------------------------------------- /Source/LibPNG/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibPNG/TODO -------------------------------------------------------------------------------- /Source/LibPNG/TRADEMARK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibPNG/TRADEMARK -------------------------------------------------------------------------------- /Source/LibPNG/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibPNG/configure -------------------------------------------------------------------------------- /Source/LibPNG/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibPNG/example.c -------------------------------------------------------------------------------- /Source/LibPNG/libpng-manual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibPNG/libpng-manual.txt -------------------------------------------------------------------------------- /Source/LibPNG/libpng.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibPNG/libpng.3 -------------------------------------------------------------------------------- /Source/LibPNG/libpngpf.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibPNG/libpngpf.3 -------------------------------------------------------------------------------- /Source/LibPNG/png.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibPNG/png.5 -------------------------------------------------------------------------------- /Source/LibPNG/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibPNG/png.c -------------------------------------------------------------------------------- /Source/LibPNG/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibPNG/png.h -------------------------------------------------------------------------------- /Source/LibPNG/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibPNG/pngconf.h -------------------------------------------------------------------------------- /Source/LibPNG/pngdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibPNG/pngdebug.h -------------------------------------------------------------------------------- /Source/LibPNG/pngerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibPNG/pngerror.c -------------------------------------------------------------------------------- /Source/LibPNG/pngget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibPNG/pngget.c -------------------------------------------------------------------------------- /Source/LibPNG/pnginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibPNG/pnginfo.h -------------------------------------------------------------------------------- /Source/LibPNG/pnglibconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibPNG/pnglibconf.h -------------------------------------------------------------------------------- /Source/LibPNG/pngmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibPNG/pngmem.c -------------------------------------------------------------------------------- /Source/LibPNG/pngpread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibPNG/pngpread.c -------------------------------------------------------------------------------- /Source/LibPNG/pngpriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibPNG/pngpriv.h -------------------------------------------------------------------------------- /Source/LibPNG/pngread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibPNG/pngread.c -------------------------------------------------------------------------------- /Source/LibPNG/pngrio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibPNG/pngrio.c -------------------------------------------------------------------------------- /Source/LibPNG/pngrtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibPNG/pngrtran.c -------------------------------------------------------------------------------- /Source/LibPNG/pngrutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibPNG/pngrutil.c -------------------------------------------------------------------------------- /Source/LibPNG/pngset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibPNG/pngset.c -------------------------------------------------------------------------------- /Source/LibPNG/pngstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibPNG/pngstruct.h -------------------------------------------------------------------------------- /Source/LibPNG/pngtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibPNG/pngtest.c -------------------------------------------------------------------------------- /Source/LibPNG/pngtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibPNG/pngtrans.c -------------------------------------------------------------------------------- /Source/LibPNG/pngwio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibPNG/pngwio.c -------------------------------------------------------------------------------- /Source/LibPNG/pngwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibPNG/pngwrite.c -------------------------------------------------------------------------------- /Source/LibPNG/pngwtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibPNG/pngwtran.c -------------------------------------------------------------------------------- /Source/LibPNG/pngwutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibPNG/pngwutil.c -------------------------------------------------------------------------------- /Source/LibRawLite/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibRawLite/COPYRIGHT -------------------------------------------------------------------------------- /Source/LibRawLite/Changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibRawLite/Changelog.txt -------------------------------------------------------------------------------- /Source/LibRawLite/DEVELOPER-NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibRawLite/DEVELOPER-NOTES -------------------------------------------------------------------------------- /Source/LibRawLite/LICENSE.CDDL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibRawLite/LICENSE.CDDL -------------------------------------------------------------------------------- /Source/LibRawLite/LICENSE.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibRawLite/LICENSE.LGPL -------------------------------------------------------------------------------- /Source/LibRawLite/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibRawLite/README -------------------------------------------------------------------------------- /Source/LibRawLite/README.DNGSDK.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibRawLite/README.DNGSDK.txt -------------------------------------------------------------------------------- /Source/LibRawLite/README.GoPro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibRawLite/README.GoPro.txt -------------------------------------------------------------------------------- /Source/LibRawLite/README.RawSpeed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibRawLite/README.RawSpeed.txt -------------------------------------------------------------------------------- /Source/LibRawLite/README.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibRawLite/README.cmake -------------------------------------------------------------------------------- /Source/LibRawLite/README.demosaic-packs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibRawLite/README.demosaic-packs -------------------------------------------------------------------------------- /Source/LibRawLite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibRawLite/README.md -------------------------------------------------------------------------------- /Source/LibRawLite/internal/dcraw_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibRawLite/internal/dcraw_defs.h -------------------------------------------------------------------------------- /Source/LibRawLite/internal/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibRawLite/internal/defines.h -------------------------------------------------------------------------------- /Source/LibRawLite/internal/dmp_include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibRawLite/internal/dmp_include.h -------------------------------------------------------------------------------- /Source/LibRawLite/internal/var_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibRawLite/internal/var_defines.h -------------------------------------------------------------------------------- /Source/LibRawLite/internal/x3f_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibRawLite/internal/x3f_tools.h -------------------------------------------------------------------------------- /Source/LibRawLite/libraw/libraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibRawLite/libraw/libraw.h -------------------------------------------------------------------------------- /Source/LibRawLite/libraw/libraw_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibRawLite/libraw/libraw_alloc.h -------------------------------------------------------------------------------- /Source/LibRawLite/libraw/libraw_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibRawLite/libraw/libraw_const.h -------------------------------------------------------------------------------- /Source/LibRawLite/libraw/libraw_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibRawLite/libraw/libraw_types.h -------------------------------------------------------------------------------- /Source/LibRawLite/src/decoders/crx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibRawLite/src/decoders/crx.cpp -------------------------------------------------------------------------------- /Source/LibRawLite/src/decoders/dng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibRawLite/src/decoders/dng.cpp -------------------------------------------------------------------------------- /Source/LibRawLite/src/decoders/smal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibRawLite/src/decoders/smal.cpp -------------------------------------------------------------------------------- /Source/LibRawLite/src/libraw_c_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibRawLite/src/libraw_c_api.cpp -------------------------------------------------------------------------------- /Source/LibRawLite/src/metadata/canon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibRawLite/src/metadata/canon.cpp -------------------------------------------------------------------------------- /Source/LibRawLite/src/metadata/ciff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibRawLite/src/metadata/ciff.cpp -------------------------------------------------------------------------------- /Source/LibRawLite/src/metadata/epson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibRawLite/src/metadata/epson.cpp -------------------------------------------------------------------------------- /Source/LibRawLite/src/metadata/fuji.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibRawLite/src/metadata/fuji.cpp -------------------------------------------------------------------------------- /Source/LibRawLite/src/metadata/kodak.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibRawLite/src/metadata/kodak.cpp -------------------------------------------------------------------------------- /Source/LibRawLite/src/metadata/leica.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibRawLite/src/metadata/leica.cpp -------------------------------------------------------------------------------- /Source/LibRawLite/src/metadata/nikon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibRawLite/src/metadata/nikon.cpp -------------------------------------------------------------------------------- /Source/LibRawLite/src/metadata/p1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibRawLite/src/metadata/p1.cpp -------------------------------------------------------------------------------- /Source/LibRawLite/src/metadata/sony.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibRawLite/src/metadata/sony.cpp -------------------------------------------------------------------------------- /Source/LibRawLite/src/metadata/tiff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibRawLite/src/metadata/tiff.cpp -------------------------------------------------------------------------------- /Source/LibRawLite/src/tables/wblists.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibRawLite/src/tables/wblists.cpp -------------------------------------------------------------------------------- /Source/LibRawLite/src/utils/curves.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibRawLite/src/utils/curves.cpp -------------------------------------------------------------------------------- /Source/LibRawLite/src/utils/open.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibRawLite/src/utils/open.cpp -------------------------------------------------------------------------------- /Source/LibRawLite/src/write/write_ph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibRawLite/src/write/write_ph.cpp -------------------------------------------------------------------------------- /Source/LibTIFF4/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/CMakeLists.txt -------------------------------------------------------------------------------- /Source/LibTIFF4/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/COPYRIGHT -------------------------------------------------------------------------------- /Source/LibTIFF4/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/ChangeLog -------------------------------------------------------------------------------- /Source/LibTIFF4/LibTIFF4.2017.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/LibTIFF4.2017.vcxproj -------------------------------------------------------------------------------- /Source/LibTIFF4/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/Makefile.am -------------------------------------------------------------------------------- /Source/LibTIFF4/RELEASE-DATE: -------------------------------------------------------------------------------- 1 | 20230908 2 | -------------------------------------------------------------------------------- /Source/LibTIFF4/libport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/libport.h -------------------------------------------------------------------------------- /Source/LibTIFF4/libtiff.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/libtiff.def -------------------------------------------------------------------------------- /Source/LibTIFF4/libtiff.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/libtiff.map -------------------------------------------------------------------------------- /Source/LibTIFF4/libtiffxx.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/libtiffxx.map -------------------------------------------------------------------------------- /Source/LibTIFF4/mkg3states.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/mkg3states.c -------------------------------------------------------------------------------- /Source/LibTIFF4/mkspans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/mkspans.c -------------------------------------------------------------------------------- /Source/LibTIFF4/t4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/t4.h -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_aux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_aux.c -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_close.c -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_codec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_codec.c -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_color.c -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_compress.c -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_config.h -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_config.h.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_config.h.cmake.in -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_config.h.in -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_config.vc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_config.vc.h -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_config.wince.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_config.wince.h -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_dir.c -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_dir.h -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_dirinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_dirinfo.c -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_dirread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_dirread.c -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_dirwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_dirwrite.c -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_dumpmode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_dumpmode.c -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_error.c -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_extension.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_extension.c -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_fax3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_fax3.c -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_fax3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_fax3.h -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_fax3sm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_fax3sm.c -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_flush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_flush.c -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_getimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_getimage.c -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_hash_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_hash_set.c -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_hash_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_hash_set.h -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_jbig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_jbig.c -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_jpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_jpeg.c -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_jpeg_12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_jpeg_12.c -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_lerc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_lerc.c -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_luv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_luv.c -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_lzma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_lzma.c -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_lzw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_lzw.c -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_next.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_next.c -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_ojpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_ojpeg.c -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_open.c -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_packbits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_packbits.c -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_pixarlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_pixarlog.c -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_predict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_predict.c -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_predict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_predict.h -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_print.c -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_read.c -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_stream.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_stream.cxx -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_strip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_strip.c -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_swab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_swab.c -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_thunder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_thunder.c -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_tile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_tile.c -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_unix.c -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_version.c -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_warning.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_warning.c -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_webp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_webp.c -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_win32.c -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_wince.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_wince.c -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_write.c -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_zip.c -------------------------------------------------------------------------------- /Source/LibTIFF4/tif_zstd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tif_zstd.c -------------------------------------------------------------------------------- /Source/LibTIFF4/tiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tiff.h -------------------------------------------------------------------------------- /Source/LibTIFF4/tiffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tiffconf.h -------------------------------------------------------------------------------- /Source/LibTIFF4/tiffconf.h.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tiffconf.h.cmake.in -------------------------------------------------------------------------------- /Source/LibTIFF4/tiffconf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tiffconf.h.in -------------------------------------------------------------------------------- /Source/LibTIFF4/tiffconf.vc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tiffconf.vc.h -------------------------------------------------------------------------------- /Source/LibTIFF4/tiffconf.wince.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tiffconf.wince.h -------------------------------------------------------------------------------- /Source/LibTIFF4/tiffio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tiffio.h -------------------------------------------------------------------------------- /Source/LibTIFF4/tiffio.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tiffio.hxx -------------------------------------------------------------------------------- /Source/LibTIFF4/tiffiop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tiffiop.h -------------------------------------------------------------------------------- /Source/LibTIFF4/tiffvers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tiffvers.h -------------------------------------------------------------------------------- /Source/LibTIFF4/tiffvers.h.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tiffvers.h.cmake.in -------------------------------------------------------------------------------- /Source/LibTIFF4/tiffvers.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/tiffvers.h.in -------------------------------------------------------------------------------- /Source/LibTIFF4/uvcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibTIFF4/uvcode.h -------------------------------------------------------------------------------- /Source/LibWebP/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/AUTHORS -------------------------------------------------------------------------------- /Source/LibWebP/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/COPYING -------------------------------------------------------------------------------- /Source/LibWebP/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/ChangeLog -------------------------------------------------------------------------------- /Source/LibWebP/LibWebP.2017.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/LibWebP.2017.vcxproj -------------------------------------------------------------------------------- /Source/LibWebP/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/NEWS -------------------------------------------------------------------------------- /Source/LibWebP/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/PATENTS -------------------------------------------------------------------------------- /Source/LibWebP/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/README -------------------------------------------------------------------------------- /Source/LibWebP/README.mux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/README.mux -------------------------------------------------------------------------------- /Source/LibWebP/src/dec/alpha_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dec/alpha_dec.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dec/alphai_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dec/alphai_dec.h -------------------------------------------------------------------------------- /Source/LibWebP/src/dec/buffer_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dec/buffer_dec.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dec/common_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dec/common_dec.h -------------------------------------------------------------------------------- /Source/LibWebP/src/dec/frame_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dec/frame_dec.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dec/idec_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dec/idec_dec.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dec/io_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dec/io_dec.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dec/quant_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dec/quant_dec.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dec/tree_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dec/tree_dec.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dec/vp8_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dec/vp8_dec.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dec/vp8_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dec/vp8_dec.h -------------------------------------------------------------------------------- /Source/LibWebP/src/dec/vp8i_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dec/vp8i_dec.h -------------------------------------------------------------------------------- /Source/LibWebP/src/dec/vp8l_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dec/vp8l_dec.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dec/vp8li_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dec/vp8li_dec.h -------------------------------------------------------------------------------- /Source/LibWebP/src/dec/webp_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dec/webp_dec.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dec/webpi_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dec/webpi_dec.h -------------------------------------------------------------------------------- /Source/LibWebP/src/demux/anim_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/demux/anim_decode.c -------------------------------------------------------------------------------- /Source/LibWebP/src/demux/demux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/demux/demux.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/common_sse2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/common_sse2.h -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/common_sse41.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/common_sse41.h -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/cost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/cost.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/cost_mips32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/cost_mips32.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/cost_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/cost_neon.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/cost_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/cost_sse2.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/cpu.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/dec.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/dec_clip_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/dec_clip_tables.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/dec_mips32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/dec_mips32.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/dec_mips_dsp_r2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/dec_mips_dsp_r2.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/dec_msa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/dec_msa.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/dec_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/dec_neon.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/dec_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/dec_sse2.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/dec_sse41.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/dec_sse41.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/dsp.h -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/enc.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/enc_avx2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/enc_avx2.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/enc_mips32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/enc_mips32.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/enc_mips_dsp_r2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/enc_mips_dsp_r2.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/enc_msa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/enc_msa.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/enc_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/enc_neon.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/enc_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/enc_sse2.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/enc_sse41.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/enc_sse41.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/filters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/filters.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/filters_msa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/filters_msa.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/filters_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/filters_neon.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/filters_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/filters_sse2.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/lossless.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/lossless.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/lossless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/lossless.h -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/lossless_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/lossless_common.h -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/lossless_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/lossless_enc.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/lossless_msa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/lossless_msa.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/lossless_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/lossless_neon.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/lossless_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/lossless_sse2.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/lossless_sse41.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/lossless_sse41.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/mips_macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/mips_macro.h -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/msa_macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/msa_macro.h -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/neon.h -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/quant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/quant.h -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/rescaler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/rescaler.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/rescaler_mips32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/rescaler_mips32.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/rescaler_msa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/rescaler_msa.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/rescaler_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/rescaler_neon.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/rescaler_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/rescaler_sse2.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/ssim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/ssim.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/ssim_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/ssim_sse2.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/upsampling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/upsampling.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/upsampling_msa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/upsampling_msa.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/upsampling_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/upsampling_neon.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/upsampling_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/upsampling_sse2.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/yuv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/yuv.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/yuv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/yuv.h -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/yuv_mips32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/yuv_mips32.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/yuv_mips_dsp_r2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/yuv_mips_dsp_r2.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/yuv_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/yuv_neon.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/yuv_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/yuv_sse2.c -------------------------------------------------------------------------------- /Source/LibWebP/src/dsp/yuv_sse41.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/dsp/yuv_sse41.c -------------------------------------------------------------------------------- /Source/LibWebP/src/enc/alpha_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/enc/alpha_enc.c -------------------------------------------------------------------------------- /Source/LibWebP/src/enc/analysis_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/enc/analysis_enc.c -------------------------------------------------------------------------------- /Source/LibWebP/src/enc/config_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/enc/config_enc.c -------------------------------------------------------------------------------- /Source/LibWebP/src/enc/cost_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/enc/cost_enc.c -------------------------------------------------------------------------------- /Source/LibWebP/src/enc/cost_enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/enc/cost_enc.h -------------------------------------------------------------------------------- /Source/LibWebP/src/enc/filter_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/enc/filter_enc.c -------------------------------------------------------------------------------- /Source/LibWebP/src/enc/frame_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/enc/frame_enc.c -------------------------------------------------------------------------------- /Source/LibWebP/src/enc/histogram_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/enc/histogram_enc.c -------------------------------------------------------------------------------- /Source/LibWebP/src/enc/histogram_enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/enc/histogram_enc.h -------------------------------------------------------------------------------- /Source/LibWebP/src/enc/iterator_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/enc/iterator_enc.c -------------------------------------------------------------------------------- /Source/LibWebP/src/enc/picture_csp_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/enc/picture_csp_enc.c -------------------------------------------------------------------------------- /Source/LibWebP/src/enc/picture_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/enc/picture_enc.c -------------------------------------------------------------------------------- /Source/LibWebP/src/enc/predictor_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/enc/predictor_enc.c -------------------------------------------------------------------------------- /Source/LibWebP/src/enc/quant_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/enc/quant_enc.c -------------------------------------------------------------------------------- /Source/LibWebP/src/enc/syntax_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/enc/syntax_enc.c -------------------------------------------------------------------------------- /Source/LibWebP/src/enc/token_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/enc/token_enc.c -------------------------------------------------------------------------------- /Source/LibWebP/src/enc/tree_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/enc/tree_enc.c -------------------------------------------------------------------------------- /Source/LibWebP/src/enc/vp8i_enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/enc/vp8i_enc.h -------------------------------------------------------------------------------- /Source/LibWebP/src/enc/vp8l_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/enc/vp8l_enc.c -------------------------------------------------------------------------------- /Source/LibWebP/src/enc/vp8li_enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/enc/vp8li_enc.h -------------------------------------------------------------------------------- /Source/LibWebP/src/enc/webp_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/enc/webp_enc.c -------------------------------------------------------------------------------- /Source/LibWebP/src/mux/anim_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/mux/anim_encode.c -------------------------------------------------------------------------------- /Source/LibWebP/src/mux/animi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/mux/animi.h -------------------------------------------------------------------------------- /Source/LibWebP/src/mux/muxedit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/mux/muxedit.c -------------------------------------------------------------------------------- /Source/LibWebP/src/mux/muxi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/mux/muxi.h -------------------------------------------------------------------------------- /Source/LibWebP/src/mux/muxinternal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/mux/muxinternal.c -------------------------------------------------------------------------------- /Source/LibWebP/src/mux/muxread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/mux/muxread.c -------------------------------------------------------------------------------- /Source/LibWebP/src/utils/filters_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/utils/filters_utils.c -------------------------------------------------------------------------------- /Source/LibWebP/src/utils/filters_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/utils/filters_utils.h -------------------------------------------------------------------------------- /Source/LibWebP/src/utils/huffman_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/utils/huffman_utils.c -------------------------------------------------------------------------------- /Source/LibWebP/src/utils/huffman_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/utils/huffman_utils.h -------------------------------------------------------------------------------- /Source/LibWebP/src/utils/random_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/utils/random_utils.c -------------------------------------------------------------------------------- /Source/LibWebP/src/utils/random_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/utils/random_utils.h -------------------------------------------------------------------------------- /Source/LibWebP/src/utils/thread_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/utils/thread_utils.c -------------------------------------------------------------------------------- /Source/LibWebP/src/utils/thread_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/utils/thread_utils.h -------------------------------------------------------------------------------- /Source/LibWebP/src/utils/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/utils/utils.c -------------------------------------------------------------------------------- /Source/LibWebP/src/utils/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/utils/utils.h -------------------------------------------------------------------------------- /Source/LibWebP/src/webp/decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/webp/decode.h -------------------------------------------------------------------------------- /Source/LibWebP/src/webp/demux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/webp/demux.h -------------------------------------------------------------------------------- /Source/LibWebP/src/webp/encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/webp/encode.h -------------------------------------------------------------------------------- /Source/LibWebP/src/webp/mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/webp/mux.h -------------------------------------------------------------------------------- /Source/LibWebP/src/webp/mux_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/webp/mux_types.h -------------------------------------------------------------------------------- /Source/LibWebP/src/webp/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/LibWebP/src/webp/types.h -------------------------------------------------------------------------------- /Source/MapIntrospector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/MapIntrospector.h -------------------------------------------------------------------------------- /Source/Metadata/Exif.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/Metadata/Exif.cpp -------------------------------------------------------------------------------- /Source/Metadata/FIRational.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/Metadata/FIRational.cpp -------------------------------------------------------------------------------- /Source/Metadata/FIRational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/Metadata/FIRational.h -------------------------------------------------------------------------------- /Source/Metadata/FreeImageTag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/Metadata/FreeImageTag.cpp -------------------------------------------------------------------------------- /Source/Metadata/FreeImageTag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/Metadata/FreeImageTag.h -------------------------------------------------------------------------------- /Source/Metadata/IPTC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/Metadata/IPTC.cpp -------------------------------------------------------------------------------- /Source/Metadata/TagConversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/Metadata/TagConversion.cpp -------------------------------------------------------------------------------- /Source/Metadata/TagLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/Metadata/TagLib.cpp -------------------------------------------------------------------------------- /Source/Metadata/XTIFF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/Metadata/XTIFF.cpp -------------------------------------------------------------------------------- /Source/OpenEXR/Copyrights/ilmbase/INSTALL: -------------------------------------------------------------------------------- 1 | See the README file for instructions on how to build IlmBase from 2 | source. 3 | -------------------------------------------------------------------------------- /Source/OpenEXR/Copyrights/ilmbase/NEWS: -------------------------------------------------------------------------------- 1 | Version 0.9.0: 2 | - Initial release 3 | 4 | -------------------------------------------------------------------------------- /Source/OpenEXR/Copyrights/ilmbase/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Copyrights/ilmbase/README -------------------------------------------------------------------------------- /Source/OpenEXR/Copyrights/openexr/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Copyrights/openexr/NEWS -------------------------------------------------------------------------------- /Source/OpenEXR/Copyrights/openexr/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Copyrights/openexr/README -------------------------------------------------------------------------------- /Source/OpenEXR/Copyrights/openexr/README.win32: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/OpenEXR/Half/eLut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Half/eLut.cpp -------------------------------------------------------------------------------- /Source/OpenEXR/Half/eLut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Half/eLut.h -------------------------------------------------------------------------------- /Source/OpenEXR/Half/half.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Half/half.cpp -------------------------------------------------------------------------------- /Source/OpenEXR/Half/half.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Half/half.h -------------------------------------------------------------------------------- /Source/OpenEXR/Half/halfExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Half/halfExport.h -------------------------------------------------------------------------------- /Source/OpenEXR/Half/halfFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Half/halfFunction.h -------------------------------------------------------------------------------- /Source/OpenEXR/Half/halfLimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Half/halfLimits.h -------------------------------------------------------------------------------- /Source/OpenEXR/Half/toFloat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Half/toFloat.cpp -------------------------------------------------------------------------------- /Source/OpenEXR/Half/toFloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Half/toFloat.h -------------------------------------------------------------------------------- /Source/OpenEXR/Iex/Iex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Iex/Iex.h -------------------------------------------------------------------------------- /Source/OpenEXR/Iex/IexBaseExc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Iex/IexBaseExc.cpp -------------------------------------------------------------------------------- /Source/OpenEXR/Iex/IexBaseExc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Iex/IexBaseExc.h -------------------------------------------------------------------------------- /Source/OpenEXR/Iex/IexErrnoExc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Iex/IexErrnoExc.h -------------------------------------------------------------------------------- /Source/OpenEXR/Iex/IexExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Iex/IexExport.h -------------------------------------------------------------------------------- /Source/OpenEXR/Iex/IexForward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Iex/IexForward.h -------------------------------------------------------------------------------- /Source/OpenEXR/Iex/IexMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Iex/IexMacros.h -------------------------------------------------------------------------------- /Source/OpenEXR/Iex/IexMathExc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Iex/IexMathExc.h -------------------------------------------------------------------------------- /Source/OpenEXR/Iex/IexNamespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Iex/IexNamespace.h -------------------------------------------------------------------------------- /Source/OpenEXR/Iex/IexThrowErrnoExc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Iex/IexThrowErrnoExc.cpp -------------------------------------------------------------------------------- /Source/OpenEXR/Iex/IexThrowErrnoExc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Iex/IexThrowErrnoExc.h -------------------------------------------------------------------------------- /Source/OpenEXR/IexMath/IexMathFloatExc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IexMath/IexMathFloatExc.h -------------------------------------------------------------------------------- /Source/OpenEXR/IexMath/IexMathFpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IexMath/IexMathFpu.cpp -------------------------------------------------------------------------------- /Source/OpenEXR/IexMath/IexMathFpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IexMath/IexMathFpu.h -------------------------------------------------------------------------------- /Source/OpenEXR/IexMath/IexMathIeeeExc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IexMath/IexMathIeeeExc.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmBaseConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmBaseConfig.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfAcesFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfAcesFile.cpp -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfAcesFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfAcesFile.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfArray.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfAttribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfAttribute.cpp -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfAttribute.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfAutoArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfAutoArray.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfB44Compressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfB44Compressor.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfBoxAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfBoxAttribute.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfCRgbaFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfCRgbaFile.cpp -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfCRgbaFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfCRgbaFile.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfChannelList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfChannelList.cpp -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfChannelList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfChannelList.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfCompression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfCompression.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfCompressor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfCompressor.cpp -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfCompressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfCompressor.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfConvert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfConvert.cpp -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfConvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfConvert.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfDwaCompressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfDwaCompressor.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfEnvmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfEnvmap.cpp -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfEnvmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfEnvmap.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfExport.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfFastHuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfFastHuf.cpp -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfFastHuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfFastHuf.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfForward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfForward.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfFrameBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfFrameBuffer.cpp -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfFrameBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfFrameBuffer.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfHeader.cpp -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfHeader.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfHuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfHuf.cpp -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfHuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfHuf.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfIO.cpp -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfIO.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfInputFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfInputFile.cpp -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfInputFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfInputFile.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfInputPart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfInputPart.cpp -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfInputPart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfInputPart.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfInputPartData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfInputPartData.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfInt64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfInt64.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfIntAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfIntAttribute.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfKeyCode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfKeyCode.cpp -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfKeyCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfKeyCode.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfLineOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfLineOrder.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfLut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfLut.cpp -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfLut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfLut.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfMisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfMisc.cpp -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfMisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfMisc.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfMultiView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfMultiView.cpp -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfMultiView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfMultiView.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfName.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfNamespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfNamespace.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfOutputFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfOutputFile.cpp -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfOutputFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfOutputFile.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfOutputPart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfOutputPart.cpp -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfOutputPart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfOutputPart.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfPartHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfPartHelper.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfPartType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfPartType.cpp -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfPartType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfPartType.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfPixelType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfPixelType.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfPizCompressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfPizCompressor.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfPreviewImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfPreviewImage.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfRational.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfRational.cpp -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfRational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfRational.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfRgba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfRgba.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfRgbaFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfRgbaFile.cpp -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfRgbaFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfRgbaFile.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfRgbaYca.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfRgbaYca.cpp -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfRgbaYca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfRgbaYca.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfRle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfRle.cpp -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfRle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfRle.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfRleCompressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfRleCompressor.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfSimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfSimd.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfStdIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfStdIO.cpp -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfStdIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfStdIO.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfTestFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfTestFile.cpp -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfTestFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfTestFile.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfThreading.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfThreading.cpp -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfThreading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfThreading.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfTileOffsets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfTileOffsets.cpp -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfTileOffsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfTileOffsets.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfTiledMisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfTiledMisc.cpp -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfTiledMisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfTiledMisc.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfTiledRgbaFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfTiledRgbaFile.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfTimeCode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfTimeCode.cpp -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfTimeCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfTimeCode.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfVecAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfVecAttribute.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfVersion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfVersion.cpp -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfVersion.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfWav.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfWav.cpp -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfWav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfWav.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfXdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfXdr.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfZip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfZip.cpp -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfZip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfZip.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/ImfZipCompressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/ImfZipCompressor.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/b44ExpLogTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/b44ExpLogTable.cpp -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/b44ExpLogTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/b44ExpLogTable.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/dwaLookups.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/dwaLookups.cpp -------------------------------------------------------------------------------- /Source/OpenEXR/IlmImf/dwaLookups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmImf/dwaLookups.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmThread/IlmThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmThread/IlmThread.cpp -------------------------------------------------------------------------------- /Source/OpenEXR/IlmThread/IlmThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmThread/IlmThread.h -------------------------------------------------------------------------------- /Source/OpenEXR/IlmThread/IlmThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/IlmThread/IlmThreadPool.h -------------------------------------------------------------------------------- /Source/OpenEXR/Imath/ImathBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Imath/ImathBox.cpp -------------------------------------------------------------------------------- /Source/OpenEXR/Imath/ImathBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Imath/ImathBox.h -------------------------------------------------------------------------------- /Source/OpenEXR/Imath/ImathBoxAlgo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Imath/ImathBoxAlgo.h -------------------------------------------------------------------------------- /Source/OpenEXR/Imath/ImathColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Imath/ImathColor.h -------------------------------------------------------------------------------- /Source/OpenEXR/Imath/ImathColorAlgo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Imath/ImathColorAlgo.h -------------------------------------------------------------------------------- /Source/OpenEXR/Imath/ImathEuler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Imath/ImathEuler.h -------------------------------------------------------------------------------- /Source/OpenEXR/Imath/ImathExc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Imath/ImathExc.h -------------------------------------------------------------------------------- /Source/OpenEXR/Imath/ImathExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Imath/ImathExport.h -------------------------------------------------------------------------------- /Source/OpenEXR/Imath/ImathForward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Imath/ImathForward.h -------------------------------------------------------------------------------- /Source/OpenEXR/Imath/ImathFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Imath/ImathFrame.h -------------------------------------------------------------------------------- /Source/OpenEXR/Imath/ImathFrustum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Imath/ImathFrustum.h -------------------------------------------------------------------------------- /Source/OpenEXR/Imath/ImathFun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Imath/ImathFun.cpp -------------------------------------------------------------------------------- /Source/OpenEXR/Imath/ImathFun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Imath/ImathFun.h -------------------------------------------------------------------------------- /Source/OpenEXR/Imath/ImathGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Imath/ImathGL.h -------------------------------------------------------------------------------- /Source/OpenEXR/Imath/ImathGLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Imath/ImathGLU.h -------------------------------------------------------------------------------- /Source/OpenEXR/Imath/ImathInt64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Imath/ImathInt64.h -------------------------------------------------------------------------------- /Source/OpenEXR/Imath/ImathInterval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Imath/ImathInterval.h -------------------------------------------------------------------------------- /Source/OpenEXR/Imath/ImathLimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Imath/ImathLimits.h -------------------------------------------------------------------------------- /Source/OpenEXR/Imath/ImathLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Imath/ImathLine.h -------------------------------------------------------------------------------- /Source/OpenEXR/Imath/ImathLineAlgo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Imath/ImathLineAlgo.h -------------------------------------------------------------------------------- /Source/OpenEXR/Imath/ImathMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Imath/ImathMath.h -------------------------------------------------------------------------------- /Source/OpenEXR/Imath/ImathMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Imath/ImathMatrix.h -------------------------------------------------------------------------------- /Source/OpenEXR/Imath/ImathNamespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Imath/ImathNamespace.h -------------------------------------------------------------------------------- /Source/OpenEXR/Imath/ImathPlane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Imath/ImathPlane.h -------------------------------------------------------------------------------- /Source/OpenEXR/Imath/ImathPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Imath/ImathPlatform.h -------------------------------------------------------------------------------- /Source/OpenEXR/Imath/ImathQuat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Imath/ImathQuat.h -------------------------------------------------------------------------------- /Source/OpenEXR/Imath/ImathRandom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Imath/ImathRandom.cpp -------------------------------------------------------------------------------- /Source/OpenEXR/Imath/ImathRandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Imath/ImathRandom.h -------------------------------------------------------------------------------- /Source/OpenEXR/Imath/ImathRoots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Imath/ImathRoots.h -------------------------------------------------------------------------------- /Source/OpenEXR/Imath/ImathShear.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Imath/ImathShear.cpp -------------------------------------------------------------------------------- /Source/OpenEXR/Imath/ImathShear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Imath/ImathShear.h -------------------------------------------------------------------------------- /Source/OpenEXR/Imath/ImathSphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Imath/ImathSphere.h -------------------------------------------------------------------------------- /Source/OpenEXR/Imath/ImathVec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Imath/ImathVec.cpp -------------------------------------------------------------------------------- /Source/OpenEXR/Imath/ImathVec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Imath/ImathVec.h -------------------------------------------------------------------------------- /Source/OpenEXR/Imath/ImathVecAlgo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/Imath/ImathVecAlgo.h -------------------------------------------------------------------------------- /Source/OpenEXR/OpenEXR.2017.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/OpenEXR.2017.vcxproj -------------------------------------------------------------------------------- /Source/OpenEXR/OpenEXRConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/OpenEXR/OpenEXRConfig.h -------------------------------------------------------------------------------- /Source/Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/Plugin.h -------------------------------------------------------------------------------- /Source/Quantizers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/Quantizers.h -------------------------------------------------------------------------------- /Source/ToneMapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/ToneMapping.h -------------------------------------------------------------------------------- /Source/Utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/Utilities.h -------------------------------------------------------------------------------- /Source/ZLib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/ZLib/CMakeLists.txt -------------------------------------------------------------------------------- /Source/ZLib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/ZLib/ChangeLog -------------------------------------------------------------------------------- /Source/ZLib/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/ZLib/FAQ -------------------------------------------------------------------------------- /Source/ZLib/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/ZLib/INDEX -------------------------------------------------------------------------------- /Source/ZLib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/ZLib/LICENSE -------------------------------------------------------------------------------- /Source/ZLib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/ZLib/Makefile -------------------------------------------------------------------------------- /Source/ZLib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/ZLib/Makefile.in -------------------------------------------------------------------------------- /Source/ZLib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/ZLib/README -------------------------------------------------------------------------------- /Source/ZLib/ZLib.2017.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/ZLib/ZLib.2017.vcxproj -------------------------------------------------------------------------------- /Source/ZLib/ZLib.2017.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/ZLib/ZLib.2017.vcxproj.filters -------------------------------------------------------------------------------- /Source/ZLib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/ZLib/adler32.c -------------------------------------------------------------------------------- /Source/ZLib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/ZLib/compress.c -------------------------------------------------------------------------------- /Source/ZLib/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/ZLib/configure -------------------------------------------------------------------------------- /Source/ZLib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/ZLib/crc32.c -------------------------------------------------------------------------------- /Source/ZLib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/ZLib/crc32.h -------------------------------------------------------------------------------- /Source/ZLib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/ZLib/deflate.c -------------------------------------------------------------------------------- /Source/ZLib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/ZLib/deflate.h -------------------------------------------------------------------------------- /Source/ZLib/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/ZLib/gzclose.c -------------------------------------------------------------------------------- /Source/ZLib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/ZLib/gzguts.h -------------------------------------------------------------------------------- /Source/ZLib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/ZLib/gzlib.c -------------------------------------------------------------------------------- /Source/ZLib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/ZLib/gzread.c -------------------------------------------------------------------------------- /Source/ZLib/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/ZLib/gzwrite.c -------------------------------------------------------------------------------- /Source/ZLib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/ZLib/infback.c -------------------------------------------------------------------------------- /Source/ZLib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/ZLib/inffast.c -------------------------------------------------------------------------------- /Source/ZLib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/ZLib/inffast.h -------------------------------------------------------------------------------- /Source/ZLib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/ZLib/inffixed.h -------------------------------------------------------------------------------- /Source/ZLib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/ZLib/inflate.c -------------------------------------------------------------------------------- /Source/ZLib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/ZLib/inflate.h -------------------------------------------------------------------------------- /Source/ZLib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/ZLib/inftrees.c -------------------------------------------------------------------------------- /Source/ZLib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/ZLib/inftrees.h -------------------------------------------------------------------------------- /Source/ZLib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/ZLib/trees.c -------------------------------------------------------------------------------- /Source/ZLib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/ZLib/trees.h -------------------------------------------------------------------------------- /Source/ZLib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/ZLib/uncompr.c -------------------------------------------------------------------------------- /Source/ZLib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/ZLib/zconf.h -------------------------------------------------------------------------------- /Source/ZLib/zconf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/ZLib/zconf.h.in -------------------------------------------------------------------------------- /Source/ZLib/zlib.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/ZLib/zlib.3 -------------------------------------------------------------------------------- /Source/ZLib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/ZLib/zlib.h -------------------------------------------------------------------------------- /Source/ZLib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/ZLib/zutil.c -------------------------------------------------------------------------------- /Source/ZLib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Source/ZLib/zutil.h -------------------------------------------------------------------------------- /TestAPI/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/TestAPI/.gitignore -------------------------------------------------------------------------------- /TestAPI/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/TestAPI/CMakeLists.txt -------------------------------------------------------------------------------- /TestAPI/MainTestSuite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/TestAPI/MainTestSuite.cpp -------------------------------------------------------------------------------- /TestAPI/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/TestAPI/Makefile -------------------------------------------------------------------------------- /TestAPI/Test.2017.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/TestAPI/Test.2017.sln -------------------------------------------------------------------------------- /TestAPI/Test.2017.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/TestAPI/Test.2017.vcxproj -------------------------------------------------------------------------------- /TestAPI/TestSuite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/TestAPI/TestSuite.h -------------------------------------------------------------------------------- /TestAPI/exif.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/TestAPI/exif.jpg -------------------------------------------------------------------------------- /TestAPI/exif.jxr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/TestAPI/exif.jxr -------------------------------------------------------------------------------- /TestAPI/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/TestAPI/sample.png -------------------------------------------------------------------------------- /TestAPI/testChannels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/TestAPI/testChannels.cpp -------------------------------------------------------------------------------- /TestAPI/testHeaderOnly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/TestAPI/testHeaderOnly.cpp -------------------------------------------------------------------------------- /TestAPI/testImageType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/TestAPI/testImageType.cpp -------------------------------------------------------------------------------- /TestAPI/testJPEG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/TestAPI/testJPEG.cpp -------------------------------------------------------------------------------- /TestAPI/testMPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/TestAPI/testMPage.cpp -------------------------------------------------------------------------------- /TestAPI/testMPageMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/TestAPI/testMPageMemory.cpp -------------------------------------------------------------------------------- /TestAPI/testMPageStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/TestAPI/testMPageStream.cpp -------------------------------------------------------------------------------- /TestAPI/testMemIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/TestAPI/testMemIO.cpp -------------------------------------------------------------------------------- /TestAPI/testPlugins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/TestAPI/testPlugins.cpp -------------------------------------------------------------------------------- /TestAPI/testThumbnail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/TestAPI/testThumbnail.cpp -------------------------------------------------------------------------------- /TestAPI/testTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/TestAPI/testTools.cpp -------------------------------------------------------------------------------- /TestAPI/testWrappedBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/TestAPI/testWrappedBuffer.cpp -------------------------------------------------------------------------------- /Whatsnew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Whatsnew.txt -------------------------------------------------------------------------------- /Wrapper/Delphi/WhatsNew_Delphi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Wrapper/Delphi/WhatsNew_Delphi.txt -------------------------------------------------------------------------------- /Wrapper/Delphi/_clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Wrapper/Delphi/_clean.bat -------------------------------------------------------------------------------- /Wrapper/Delphi/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Wrapper/Delphi/license.txt -------------------------------------------------------------------------------- /Wrapper/Delphi/src/FreeBitmap.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Wrapper/Delphi/src/FreeBitmap.pas -------------------------------------------------------------------------------- /Wrapper/Delphi/src/FreeImage.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Wrapper/Delphi/src/FreeImage.pas -------------------------------------------------------------------------------- /Wrapper/Delphi/src/FreeUtils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Wrapper/Delphi/src/FreeUtils.pas -------------------------------------------------------------------------------- /Wrapper/Delphi/src/Version.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Wrapper/Delphi/src/Version.inc -------------------------------------------------------------------------------- /Wrapper/FreeImage.NET/cs/Bin/delete.me: -------------------------------------------------------------------------------- 1 | You may safely delete this file. 2 | -------------------------------------------------------------------------------- /Wrapper/FreeImage.NET/cs/Content.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Wrapper/FreeImage.NET/cs/Content.txt -------------------------------------------------------------------------------- /Wrapper/FreeImage.NET/cs/Doc/SHFB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Wrapper/FreeImage.NET/cs/Doc/SHFB.txt -------------------------------------------------------------------------------- /Wrapper/FreeImage.NET/cs/clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Wrapper/FreeImage.NET/cs/clean.bat -------------------------------------------------------------------------------- /Wrapper/FreeImagePlus/FreeImagePlus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Wrapper/FreeImagePlus/FreeImagePlus.h -------------------------------------------------------------------------------- /Wrapper/FreeImagePlus/clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Wrapper/FreeImagePlus/clean.bat -------------------------------------------------------------------------------- /Wrapper/FreeImagePlus/dist/delete.me: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Wrapper/FreeImagePlus/doc/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Wrapper/FreeImagePlus/doc/footer.html -------------------------------------------------------------------------------- /Wrapper/FreeImagePlus/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Wrapper/FreeImagePlus/doc/index.html -------------------------------------------------------------------------------- /Wrapper/FreeImagePlus/src/fipTag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Wrapper/FreeImagePlus/src/fipTag.cpp -------------------------------------------------------------------------------- /Wrapper/FreeImagePlus/test/fipTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Wrapper/FreeImagePlus/test/fipTest.h -------------------------------------------------------------------------------- /Wrapper/FreeImagePlus/test/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Wrapper/FreeImagePlus/test/test.jpg -------------------------------------------------------------------------------- /Wrapper/FreeImagePlus/test/test.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Wrapper/FreeImagePlus/test/test.tif -------------------------------------------------------------------------------- /Wrapper/VB6/src/MFreeImage.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Wrapper/VB6/src/MFreeImage.bas -------------------------------------------------------------------------------- /Wrapper/VB6/src/WhatsNew_VB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/Wrapper/VB6/src/WhatsNew_VB.txt -------------------------------------------------------------------------------- /clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/clean.bat -------------------------------------------------------------------------------- /clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/clean.sh -------------------------------------------------------------------------------- /cmake/FreeImageConfig.cmake.in: -------------------------------------------------------------------------------- 1 | @PACKAGE_INIT@ 2 | 3 | include("${CMAKE_CURRENT_LIST_DIR}/FreeImageTargets.cmake") 4 | -------------------------------------------------------------------------------- /fipMakefile.srcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/fipMakefile.srcs -------------------------------------------------------------------------------- /genfipsrclist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/genfipsrclist.sh -------------------------------------------------------------------------------- /gensrclist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/gensrclist.sh -------------------------------------------------------------------------------- /license-fi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/license-fi.txt -------------------------------------------------------------------------------- /license-gplv2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/license-gplv2.txt -------------------------------------------------------------------------------- /license-gplv3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danoli3/FreeImage/HEAD/license-gplv3.txt --------------------------------------------------------------------------------