实例介绍
Pillow PIL python 图像处理必备组件,PIL后续版本,下了好长时间才下下来,放在这里方便大家,这是目前的最新版本,下载后,评论返还积分
【实例截图】
【核心代码】
6c49b996-01ae-4e35-944a-6eed86e2a465
└── Pillow-4.2.1
├── CHANGES.rst
├── decode.c
├── depends
│ ├── alpine_Dockerfile
│ ├── debian_8.2.sh
│ ├── diffcover-install.sh
│ ├── diffcover-run.sh
│ ├── download-and-extract.sh
│ ├── fedora_23.sh
│ ├── freebsd_10.sh
│ ├── install_extra_test_images.sh
│ ├── install_imagequant.sh
│ ├── install_openjpeg.sh
│ ├── install_raqm_cmake.sh
│ ├── install_raqm.sh
│ ├── install_webp.sh
│ ├── README.rst
│ ├── ubuntu_12.04.sh
│ └── ubuntu_14.04.sh
├── display.c
├── docs
│ ├── about.rst
│ ├── conf.py
│ ├── COPYING
│ ├── example
│ │ └── DdsImagePlugin.py
│ ├── Guardfile
│ ├── handbook
│ │ ├── appendices.rst
│ │ ├── concepts.rst
│ │ ├── image-file-formats.rst
│ │ ├── index.rst
│ │ ├── overview.rst
│ │ ├── tutorial.rst
│ │ └── writing-your-own-file-decoder.rst
│ ├── index.rst
│ ├── installation.rst
│ ├── make.bat
│ ├── Makefile
│ ├── PIL.rst
│ ├── porting.rst
│ ├── reference
│ │ ├── ExifTags.rst
│ │ ├── ImageChops.rst
│ │ ├── ImageCms.rst
│ │ ├── ImageColor.rst
│ │ ├── ImageDraw.rst
│ │ ├── ImageEnhance.rst
│ │ ├── ImageFile.rst
│ │ ├── ImageFilter.rst
│ │ ├── ImageFont.rst
│ │ ├── ImageGrab.rst
│ │ ├── ImageMath.rst
│ │ ├── ImageMorph.rst
│ │ ├── ImageOps.rst
│ │ ├── ImagePalette.rst
│ │ ├── ImagePath.rst
│ │ ├── ImageQt.rst
│ │ ├── Image.rst
│ │ ├── ImageSequence.rst
│ │ ├── ImageStat.rst
│ │ ├── ImageTk.rst
│ │ ├── ImageWin.rst
│ │ ├── index.rst
│ │ ├── internal_design.rst
│ │ ├── limits.rst
│ │ ├── open_files.rst
│ │ ├── PixelAccess.rst
│ │ ├── plugins.rst
│ │ ├── PSDraw.rst
│ │ ├── PyAccess.rst
│ │ └── TiffTags.rst
│ ├── releasenotes
│ │ ├── 2.7.0.rst
│ │ ├── 2.8.0.rst
│ │ ├── 3.0.0.rst
│ │ ├── 3.1.0.rst
│ │ ├── 3.1.1.rst
│ │ ├── 3.1.2.rst
│ │ ├── 3.2.0.rst
│ │ ├── 3.3.0.rst
│ │ ├── 3.3.2.rst
│ │ ├── 3.4.0.rst
│ │ ├── 4.0.0.rst
│ │ ├── 4.1.0.rst
│ │ ├── 4.1.1.rst
│ │ ├── 4.2.0.rst
│ │ ├── 4.2.1.rst
│ │ └── index.rst
│ └── _templates
│ └── sidebarhelp.html
├── encode.c
├── _imaging.c
├── _imagingcms.c
├── _imagingft.c
├── _imagingmath.c
├── _imagingmorph.c
├── _imagingtk.c
├── libImaging
│ ├── Access.c
│ ├── AlphaComposite.c
│ ├── Bands.c
│ ├── BcnDecode.c
│ ├── BitDecode.c
│ ├── Bit.h
│ ├── Blend.c
│ ├── BoxBlur.c
│ ├── Chops.c
│ ├── codec_fd.c
│ ├── Convert.c
│ ├── ConvertYCbCr.c
│ ├── Copy.c
│ ├── Crc32.c
│ ├── Crop.c
│ ├── Dib.c
│ ├── Draw.c
│ ├── Effects.c
│ ├── EpsEncode.c
│ ├── Except.c
│ ├── File.c
│ ├── Fill.c
│ ├── Filter.c
│ ├── FliDecode.c
│ ├── Geometry.c
│ ├── GetBBox.c
│ ├── GifDecode.c
│ ├── GifEncode.c
│ ├── Gif.h
│ ├── HexDecode.c
│ ├── Histo.c
│ ├── Imaging.h
│ ├── ImDib.h
│ ├── ImPlatform.h
│ ├── Jpeg2KDecode.c
│ ├── Jpeg2KEncode.c
│ ├── Jpeg2K.h
│ ├── JpegDecode.c
│ ├── JpegEncode.c
│ ├── Jpeg.h
│ ├── LzwDecode.c
│ ├── Lzw.h
│ ├── Matrix.c
│ ├── ModeFilter.c
│ ├── Negative.c
│ ├── Offset.c
│ ├── Pack.c
│ ├── PackDecode.c
│ ├── Palette.c
│ ├── Paste.c
│ ├── PcdDecode.c
│ ├── PcxDecode.c
│ ├── PcxEncode.c
│ ├── Point.c
│ ├── Quant.c
│ ├── QuantHash.c
│ ├── QuantHash.h
│ ├── QuantHeap.c
│ ├── QuantHeap.h
│ ├── QuantOctree.c
│ ├── QuantOctree.h
│ ├── QuantPngQuant.c
│ ├── QuantPngQuant.h
│ ├── QuantTypes.h
│ ├── RankFilter.c
│ ├── RawDecode.c
│ ├── RawEncode.c
│ ├── Raw.h
│ ├── Resample.c
│ ├── Storage.c
│ ├── SunRleDecode.c
│ ├── TgaRleDecode.c
│ ├── TiffDecode.c
│ ├── TiffDecode.h
│ ├── Unpack.c
│ ├── UnpackYCC.c
│ ├── UnsharpMask.c
│ ├── XbmDecode.c
│ ├── XbmEncode.c
│ ├── ZipDecode.c
│ ├── ZipEncode.c
│ └── Zip.h
├── LICENSE
├── Makefile
├── MANIFEST.in
├── map.c
├── mp_compile.py
├── outline.c
├── path.c
├── PIL
│ ├── BdfFontFile.py
│ ├── _binary.py
│ ├── BmpImagePlugin.py
│ ├── BufrStubImagePlugin.py
│ ├── ContainerIO.py
│ ├── CurImagePlugin.py
│ ├── DcxImagePlugin.py
│ ├── DdsImagePlugin.py
│ ├── EpsImagePlugin.py
│ ├── ExifTags.py
│ ├── features.py
│ ├── FitsStubImagePlugin.py
│ ├── FliImagePlugin.py
│ ├── FontFile.py
│ ├── FpxImagePlugin.py
│ ├── FtexImagePlugin.py
│ ├── GbrImagePlugin.py
│ ├── GdImageFile.py
│ ├── GifImagePlugin.py
│ ├── GimpGradientFile.py
│ ├── GimpPaletteFile.py
│ ├── GribStubImagePlugin.py
│ ├── Hdf5StubImagePlugin.py
│ ├── IcnsImagePlugin.py
│ ├── IcoImagePlugin.py
│ ├── ImageChops.py
│ ├── ImageCms.py
│ ├── ImageColor.py
│ ├── ImageDraw2.py
│ ├── ImageDraw.py
│ ├── ImageEnhance.py
│ ├── ImageFile.py
│ ├── ImageFilter.py
│ ├── ImageFont.py
│ ├── ImageGrab.py
│ ├── ImageMath.py
│ ├── ImageMode.py
│ ├── ImageMorph.py
│ ├── ImageOps.py
│ ├── ImagePalette.py
│ ├── ImagePath.py
│ ├── Image.py
│ ├── ImageQt.py
│ ├── ImageSequence.py
│ ├── ImageShow.py
│ ├── ImageStat.py
│ ├── ImageTk.py
│ ├── ImageTransform.py
│ ├── ImageWin.py
│ ├── ImImagePlugin.py
│ ├── ImtImagePlugin.py
│ ├── __init__.py
│ ├── IptcImagePlugin.py
│ ├── Jpeg2KImagePlugin.py
│ ├── JpegImagePlugin.py
│ ├── JpegPresets.py
│ ├── McIdasImagePlugin.py
│ ├── MicImagePlugin.py
│ ├── MpegImagePlugin.py
│ ├── MpoImagePlugin.py
│ ├── MspImagePlugin.py
│ ├── OleFileIO.py
│ ├── PaletteFile.py
│ ├── PalmImagePlugin.py
│ ├── PcdImagePlugin.py
│ ├── PcfFontFile.py
│ ├── PcxImagePlugin.py
│ ├── PdfImagePlugin.py
│ ├── PixarImagePlugin.py
│ ├── PngImagePlugin.py
│ ├── PpmImagePlugin.py
│ ├── PsdImagePlugin.py
│ ├── PSDraw.py
│ ├── PyAccess.py
│ ├── SgiImagePlugin.py
│ ├── SpiderImagePlugin.py
│ ├── SunImagePlugin.py
│ ├── TarIO.py
│ ├── TgaImagePlugin.py
│ ├── TiffImagePlugin.py
│ ├── TiffTags.py
│ ├── _tkinter_finder.py
│ ├── _util.py
│ ├── version.py
│ ├── WalImageFile.py
│ ├── WebPImagePlugin.py
│ ├── WmfImagePlugin.py
│ ├── XbmImagePlugin.py
│ ├── XpmImagePlugin.py
│ └── XVThumbImagePlugin.py
├── Pillow.egg-info
│ ├── dependency_links.txt
│ ├── PKG-INFO
│ ├── requires.txt
│ ├── SOURCES.txt
│ ├── top_level.txt
│ └── zip-safe
├── PKG-INFO
├── profile-installed.py
├── py3.h
├── README.rst
├── RELEASING.md
├── requirements.txt
├── Scripts
│ ├── createfontdatachunk.py
│ ├── enhancer.py
│ ├── explode.py
│ ├── gifmaker.py
│ ├── painter.py
│ ├── pilconvert.py
│ ├── pildriver.py
│ ├── pilfile.py
│ ├── pilfont.py
│ ├── pilprint.py
│ ├── player.py
│ ├── README.rst
│ ├── thresholder.py
│ └── viewer.py
├── selftest.py
├── setup.cfg
├── setup.py
├── test-installed.py
├── Tests
│ ├── 32bit_segfault_check.py
│ ├── bench_cffi_access.py
│ ├── bench_get.py
│ ├── check_fli_overflow.py
│ ├── check_icns_dos.py
│ ├── check_imaging_leaks.py
│ ├── check_j2k_dos.py
│ ├── check_j2k_leaks.py
│ ├── check_j2k_overflow.py
│ ├── check_jpeg_leaks.py
│ ├── check_large_memory_numpy.py
│ ├── check_large_memory.py
│ ├── check_libtiff_segfault.py
│ ├── check_png_dos.py
│ ├── check_webp_leaks.py
│ ├── fonts
│ │ ├── DejaVuSans-bitmap.ttf
│ │ ├── DejaVuSans.ttf
│ │ ├── FreeMono.ttf
│ │ ├── helvO18.pcf
│ │ ├── LICENSE.txt
│ │ └── NotoNastaliqUrdu-Regular.ttf
│ ├── helper.py
│ ├── icc
│ │ ├── LICENSE.txt
│ │ ├── sRGB_IEC61966-2-1_black_scaled.icc
│ │ └── sRGB_v4_ICC_preference.icc
│ ├── images
│ │ ├── 10ct_32bit_128.tiff
│ │ ├── 12bit.cropped.tif
│ │ ├── 12in16bit.tif
│ │ ├── 16_bit_binary.pgm
│ │ ├── 16_bit_binary_pgm.png
│ │ ├── 16bit.cropped.j2k
│ │ ├── 16bit.cropped.jp2
│ │ ├── 16bit.cropped.tif
│ │ ├── 16bit.deflate.tif
│ │ ├── 16bit.MM.cropped.tif
│ │ ├── 16bit.MM.deflate.tif
│ │ ├── 7x13.png
│ │ ├── bad_palette_entry.gpl
│ │ ├── bad_palette_file.gpl
│ │ ├── bc7-argb-8bpp_MipMaps-1.dds
│ │ ├── bc7-argb-8bpp_MipMaps-1.png
│ │ ├── binary_preview_map.eps
│ │ ├── bmp
│ │ │ ├── b
│ │ │ │ ├── badbitcount.bmp
│ │ │ │ ├── badbitssize.bmp
│ │ │ │ ├── baddens1.bmp
│ │ │ │ ├── baddens2.bmp
│ │ │ │ ├── badfilesize.bmp
│ │ │ │ ├── badheadersize.bmp
│ │ │ │ ├── badpalettesize.bmp
│ │ │ │ ├── badplanes.bmp
│ │ │ │ ├── badrle.bmp
│ │ │ │ ├── badwidth.bmp
│ │ │ │ ├── pal8badindex.bmp
│ │ │ │ ├── reallybig.bmp
│ │ │ │ ├── rletopdown.bmp
│ │ │ │ └── shortfile.bmp
│ │ │ ├── g
│ │ │ │ ├── pal1bg.bmp
│ │ │ │ ├── pal1.bmp
│ │ │ │ ├── pal1wb.bmp
│ │ │ │ ├── pal4.bmp
│ │ │ │ ├── pal4rle.bmp
│ │ │ │ ├── pal8-0.bmp
│ │ │ │ ├── pal8.bmp
│ │ │ │ ├── pal8nonsquare.bmp
│ │ │ │ ├── pal8os2.bmp
│ │ │ │ ├── pal8rle.bmp
│ │ │ │ ├── pal8topdown.bmp
│ │ │ │ ├── pal8v4.bmp
│ │ │ │ ├── pal8v5.bmp
│ │ │ │ ├── pal8w124.bmp
│ │ │ │ ├── pal8w125.bmp
│ │ │ │ ├── pal8w126.bmp
│ │ │ │ ├── rgb16-565.bmp
│ │ │ │ ├── rgb16-565pal.bmp
│ │ │ │ ├── rgb16.bmp
│ │ │ │ ├── rgb24.bmp
│ │ │ │ ├── rgb24pal.bmp
│ │ │ │ ├── rgb32bf.bmp
│ │ │ │ └── rgb32.bmp
│ │ │ ├── html
│ │ │ │ ├── bkgd.png
│ │ │ │ ├── bmpsuite.html
│ │ │ │ ├── fakealpha.png
│ │ │ │ ├── pal1bg.png
│ │ │ │ ├── pal1p1.png
│ │ │ │ ├── pal1.png
│ │ │ │ ├── pal2.png
│ │ │ │ ├── pal4.png
│ │ │ │ ├── pal4rletrns-0.png
│ │ │ │ ├── pal4rletrns-b.png
│ │ │ │ ├── pal4rletrns.png
│ │ │ │ ├── pal8nonsquare-e.png
│ │ │ │ ├── pal8nonsquare-v.png
│ │ │ │ ├── pal8.png
│ │ │ │ ├── pal8rletrns-0.png
│ │ │ │ ├── pal8rletrns-b.png
│ │ │ │ ├── pal8rletrns.png
│ │ │ │ ├── pal8w124.png
│ │ │ │ ├── pal8w125.png
│ │ │ │ ├── pal8w126.png
│ │ │ │ ├── rgb16-231.png
│ │ │ │ ├── rgb16-565.png
│ │ │ │ ├── rgb16.png
│ │ │ │ ├── rgb24.jpg
│ │ │ │ ├── rgb24.png
│ │ │ │ ├── rgba16-4444.png
│ │ │ │ └── rgba32.png
│ │ │ ├── q
│ │ │ │ ├── pal1p1.bmp
│ │ │ │ ├── pal2.bmp
│ │ │ │ ├── pal4rletrns.bmp
│ │ │ │ ├── pal8offs.bmp
│ │ │ │ ├── pal8os2sp.bmp
│ │ │ │ ├── pal8os2v2-16.bmp
│ │ │ │ ├── pal8os2v2.bmp
│ │ │ │ ├── pal8oversizepal.bmp
│ │ │ │ ├── pal8rletrns.bmp
│ │ │ │ ├── rgb16-231.bmp
│ │ │ │ ├── rgb24jpeg.bmp
│ │ │ │ ├── rgb24largepal.bmp
│ │ │ │ ├── rgb24lprof.bmp
│ │ │ │ ├── rgb24png.bmp
│ │ │ │ ├── rgb24prof.bmp
│ │ │ │ ├── rgb32-111110.bmp
│ │ │ │ ├── rgb32bf-xbgr.bmp
│ │ │ │ ├── rgb32fakealpha.bmp
│ │ │ │ ├── rgba16-4444.bmp
│ │ │ │ ├── rgba32abf.bmp
│ │ │ │ └── rgba32.bmp
│ │ │ └── README.txt
│ │ ├── broken_data_stream.png
│ │ ├── broken.png
│ │ ├── caption_6_33_22.png
│ │ ├── chi.gif
│ │ ├── clipboard.dib
│ │ ├── clipboard_target.png
│ │ ├── cmx3g8_wv_1998.260_0745_mcidas.ara
│ │ ├── cmx3g8_wv_1998.260_0745_mcidas.png
│ │ ├── color_snakes.png
│ │ ├── compression.tif
│ │ ├── copyleft.tiff
│ │ ├── corner.lut
│ │ ├── courB08.bdf
│ │ ├── courB08.pbm
│ │ ├── courB08.pil
│ │ ├── create_eps.gnuplot
│ │ ├── custom_gimp_palette.gpl
│ │ ├── deerstalker.cur
│ │ ├── default_font.png
│ │ ├── dilation4.lut
│ │ ├── dilation8.lut
│ │ ├── dispose_bgnd.gif
│ │ ├── dispose_none.gif
│ │ ├── dispose_prev.gif
│ │ ├── drawing.emf
│ │ ├── drawing_emf_ref.png
│ │ ├── drawing.wmf
│ │ ├── drawing_wmf_ref.png
│ │ ├── dummy.container
│ │ ├── dxt1-rgb-4bbp-noalpha_MipMaps-1.dds
│ │ ├── dxt1-rgb-4bbp-noalpha_MipMaps-1.png
│ │ ├── dxt3-argb-8bbp-explicitalpha_MipMaps-1.dds
│ │ ├── dxt3-argb-8bbp-explicitalpha_MipMaps-1.png
│ │ ├── dxt5-argb-8bbp-interpolatedalpha_MipMaps-1.dds
│ │ ├── dxt5-argb-8bbp-interpolatedalpha_MipMaps-1.png
│ │ ├── edge.lut
│ │ ├── effect_mandelbrot.png
│ │ ├── effect_spread.png
│ │ ├── erosion4.lut
│ │ ├── erosion8.lut
│ │ ├── exif-200dpcm.jpg
│ │ ├── exif-72dpi-int.jpg
│ │ ├── exif_gps.jpg
│ │ ├── exif_gps_typeerror.jpg
│ │ ├── exif_typeerror.jpg
│ │ ├── fli_overflow.fli
│ │ ├── flower2.jpg
│ │ ├── flower2.webp
│ │ ├── flower.jpg
│ │ ├── flower.webp
│ │ ├── frozenpond.mpo
│ │ ├── ftex_dxt1.ftc
│ │ ├── ftex_dxt1.png
│ │ ├── ftex_uncompressed.ftu
│ │ ├── ftex_uncompressed.png
│ │ ├── g4-fillorder-test.png
│ │ ├── g4-fillorder-test.tif
│ │ ├── g4-multi.tiff
│ │ ├── gbr.gbr
│ │ ├── gbr.png
│ │ ├── gfs.t06z.rassda.tm00.bufr_d
│ │ ├── gif_header_data.pkl
│ │ ├── gimp_gradient.ggr
│ │ ├── gimp_gradient_with_name.ggr
│ │ ├── hdf5.h5
│ │ ├── high_ascii_chars.png
│ │ ├── hopper_256x256.ico
│ │ ├── hopper_45.png
│ │ ├── hopper_bad_checksum.msp
│ │ ├── hopper_bad_exif.jpg
│ │ ├── hopper_bad.p7
│ │ ├── hopper.bmp
│ │ ├── hopper.bw
│ │ ├── hopper_bw_500.png
│ │ ├── hopper.dcx
│ │ ├── hopper.fits
│ │ ├── hopper.fli
│ │ ├── hopper_g4_500.tif
│ │ ├── hopper_g4.tif
│ │ ├── hopper.gif
│ │ ├── hopper_gray_4bpp.tif
│ │ ├── hopper_gray.jpg
│ │ ├── hopper.iccprofile_binary.tif
│ │ ├── hopper.iccprofile.tif
│ │ ├── hopper.ico
│ │ ├── hopper.im
│ │ ├── hopper.jpg
│ │ ├── hopper_jpg.tif
│ │ ├── hopper.Lab.tif
│ │ ├── hopper_lzw.tif
│ │ ├── hopper_merged.psd
│ │ ├── hopper.mic
│ │ ├── hopper.msp
│ │ ├── hopper.p7
│ │ ├── hopper.pcd
│ │ ├── hopper.png
│ │ ├── hopper.ppm
│ │ ├── hopper.psd
│ │ ├── hopper.pxr
│ │ ├── hopper.ras
│ │ ├── hopper.rgb
│ │ ├── hopper.sgi
│ │ ├── hopper.spider
│ │ ├── hopper.tar
│ │ ├── hopper.tif
│ │ ├── hopper_underscore.xbm
│ │ ├── hopper.webp
│ │ ├── hopper_webp_bits.ppm
│ │ ├── hopper_webp_write.ppm
│ │ ├── hopper.xbm
│ │ ├── hopper.xpm
│ │ ├── hopper-XYZ.png
│ │ ├── icc_profile_big.jpg
│ │ ├── icc_profile_none.png
│ │ ├── icc_profile.png
│ │ ├── illu10_no_preview.eps
│ │ ├── illu10_preview.eps
│ │ ├── illuCS6_no_preview.eps
│ │ ├── illuCS6_preview.eps
│ │ ├── imagedraw
│ │ │ ├── line_horizontal_slope1px_w2px.png
│ │ │ ├── line_horizontal_w101px.png
│ │ │ ├── line_horizontal_w2px_inverted.png
│ │ │ ├── line_horizontal_w2px_normal.png
│ │ │ ├── line_horizontal_w3px.png
│ │ │ ├── line_oblique_45_w3px_a.png
│ │ │ ├── line_oblique_45_w3px_b.png
│ │ │ ├── line_vertical_slope1px_w2px.png
│ │ │ ├── line_vertical_w101px.png
│ │ │ ├── line_vertical_w2px_inverted.png
│ │ │ ├── line_vertical_w2px_normal.png
│ │ │ ├── line_vertical_w3px.png
│ │ │ ├── square.png
│ │ │ └── triangle_right.png
│ │ ├── imagedraw_arc_end_le_start.png
│ │ ├── imagedraw_arc_no_loops.png
│ │ ├── imagedraw_arc.png
│ │ ├── imagedraw_big_rectangle.png
│ │ ├── imagedraw_bitmap.png
│ │ ├── imagedraw_chord_L.png
│ │ ├── imagedraw_chord_RGB.png
│ │ ├── imagedraw_ellipse_edge.png
│ │ ├── imagedraw_ellipse_L.png
│ │ ├── imagedraw_ellipse_RGB.png
│ │ ├── imagedraw_floodfill2.png
│ │ ├── imagedraw_floodfill.png
│ │ ├── imagedraw_line.png
│ │ ├── imagedraw_pieslice.png
│ │ ├── imagedraw_point.png
│ │ ├── imagedraw_polygon_kite_L.png
│ │ ├── imagedraw_polygon_kite_RGB.png
│ │ ├── imagedraw_polygon.png
│ │ ├── imagedraw_rectangle.png
│ │ ├── imagedraw_shape1.png
│ │ ├── imagedraw_shape2.png
│ │ ├── imagedraw_wide_line_dot.png
│ │ ├── invalid.spider
│ │ ├── iptc.jpg
│ │ ├── iss634.gif
│ │ ├── jpeg_ff00_header.jpg
│ │ ├── junk_jpeg_header.jpg
│ │ ├── l2rgb_read.bmp
│ │ ├── lab-green.tif
│ │ ├── lab-red.tif
│ │ ├── lab.tif
│ │ ├── libtiff_segfault.tif
│ │ ├── linear_gradient.png
│ │ ├── l_trns.png
│ │ ├── morph_a.png
│ │ ├── multiline_text_center.png
│ │ ├── multiline_text.png
│ │ ├── multiline_text_right.png
│ │ ├── multiline_text_spacing.png
│ │ ├── multipage-lastframe.tif
│ │ ├── multipage-mmap.tiff
│ │ ├── multipage.tiff
│ │ ├── negative_size.ppm
│ │ ├── no_cursors.cur
│ │ ├── no-dpi-in-exif.jpg
│ │ ├── non_zero_bb.eps
│ │ ├── non_zero_bb.png
│ │ ├── non_zero_bb_scale2.png
│ │ ├── photoshop-200dpi.jpg
│ │ ├── pil123p.png
│ │ ├── pil123rgba.png
│ │ ├── pil136.tiff
│ │ ├── pil168.tif
│ │ ├── pil184.pcx
│ │ ├── pillow2.icns
│ │ ├── pillow3.icns
│ │ ├── pillow.icns
│ │ ├── pillow.ico
│ │ ├── pil_sample_cmyk.eps
│ │ ├── pil_sample_cmyk.jpg
│ │ ├── pil_sample_rgb.jpg
│ │ ├── png_decompression_dos.png
│ │ ├── pngtest_bad.png.bin
│ │ ├── pport_g4.tif
│ │ ├── p_trns_single.png
│ │ ├── python.ico
│ │ ├── radial_gradient.png
│ │ ├── rdf.tif
│ │ ├── rectangle_surrounding_text.png
│ │ ├── rgb32rle.tga
│ │ ├── rgb.jpg
│ │ ├── rgb_trns.png
│ │ ├── rgb_trns_ycbc.j2k
│ │ ├── rgb_trns_ycbc.jp2
│ │ ├── sugarshack_bad_mpo_header.jpg
│ │ ├── sugarshack.mpo
│ │ ├── sunraster.im1
│ │ ├── sunraster.im1.png
│ │ ├── test_arabictext_features.png
│ │ ├── test-card-lossless.jp2
│ │ ├── test-card-lossy-tiled.jp2
│ │ ├── test-card.png
│ │ ├── test.colors.gif
│ │ ├── test_complex_unicode_text.png
│ │ ├── test_direction_ltr.png
│ │ ├── test_direction_rtl.png
│ │ ├── test.gpl
│ │ ├── test_kerning_features.png
│ │ ├── test_ligature_features.png
│ │ ├── test_Nastalifont_text.png
│ │ ├── test-ole-file.doc
│ │ ├── test_text.png
│ │ ├── test_y_offset.png
│ │ ├── tga_id_field.tga
│ │ ├── tiff_adobe_deflate.tif
│ │ ├── tiff_gray_2_4_bpp
│ │ │ ├── hopper2IR.tif
│ │ │ ├── hopper2I.tif
│ │ │ ├── hopper2R.tif
│ │ │ ├── hopper2.tif
│ │ │ ├── hopper4IR.tif
│ │ │ ├── hopper4I.tif
│ │ │ ├── hopper4R.tif
│ │ │ └── hopper4.tif
│ │ ├── total-pages-zero.tif
│ │ ├── transparent.png
│ │ ├── transparent.sgi
│ │ ├── transparent.webp
│ │ ├── tRNS_null_1x1.png
│ │ ├── truncated_image.png
│ │ ├── uint16_1_4660.tif
│ │ ├── unbound_variable.jp2
│ │ ├── WAlaska.wind.7days.grb
│ │ ├── zero_bb.eps
│ │ ├── zero_bb.png
│ │ └── zero_bb_scale2.png
│ ├── import_all.py
│ ├── make_hash.py
│ ├── README.rst
│ ├── test_000_sanity.py
│ ├── test_binary.py
│ ├── test_bmp_reference.py
│ ├── test_box_blur.py
│ ├── test_decompression_bomb.py
│ ├── test_features.py
│ ├── test_file_bmp.py
│ ├── test_file_bufrstub.py
│ ├── test_file_container.py
│ ├── test_file_cur.py
│ ├── test_file_dcx.py
│ ├── test_file_dds.py
│ ├── test_file_eps.py
│ ├── test_file_fitsstub.py
│ ├── test_file_fli.py
│ ├── test_file_fpx.py
│ ├── test_file_ftex.py
│ ├── test_file_gbr.py
│ ├── test_file_gif.py
│ ├── test_file_gimpgradient.py
│ ├── test_file_gimppalette.py
│ ├── test_file_gribstub.py
│ ├── test_file_hdf5stub.py
│ ├── test_file_icns.py
│ ├── test_file_ico.py
│ ├── test_file_im.py
│ ├── test_file_iptc.py
│ ├── test_file_jpeg2k.py
│ ├── test_file_jpeg.py
│ ├── test_file_libtiff.py
│ ├── test_file_libtiff_small.py
│ ├── test_file_mcidas.py
│ ├── test_file_mic.py
│ ├── test_file_mpo.py
│ ├── test_file_msp.py
│ ├── test_file_palm.py
│ ├── test_file_pcd.py
│ ├── test_file_pcx.py
│ ├── test_file_pdf.py
│ ├── test_file_pixar.py
│ ├── test_file_png.py
│ ├── test_file_ppm.py
│ ├── test_file_psd.py
│ ├── test_file_sgi.py
│ ├── test_file_spider.py
│ ├── test_file_sun.py
│ ├── test_file_tar.py
│ ├── test_file_tga.py
│ ├── test_file_tiff_metadata.py
│ ├── test_file_tiff.py
│ ├── test_file_webp_alpha.py
│ ├── test_file_webp_lossless.py
│ ├── test_file_webp_metadata.py
│ ├── test_file_webp.py
│ ├── test_file_wmf.py
│ ├── test_file_xbm.py
│ ├── test_file_xpm.py
│ ├── test_file_xvthumb.py
│ ├── test_font_bdf.py
│ ├── test_font_pcf.py
│ ├── test_format_hsv.py
│ ├── test_format_lab.py
│ ├── test_image_access.py
│ ├── test_image_array.py
│ ├── test_imagechops.py
│ ├── test_imagecms.py
│ ├── test_imagecolor.py
│ ├── test_image_convert.py
│ ├── test_image_copy.py
│ ├── test_image_crop.py
│ ├── test_image_draft.py
│ ├── test_imagedraw.py
│ ├── test_imageenhance.py
│ ├── test_imagefile.py
│ ├── test_image_filter.py
│ ├── test_imagefont_bitmap.py
│ ├── test_imagefontctl.py
│ ├── test_imagefont.py
│ ├── test_image_frombytes.py
│ ├── test_image_fromqimage.py
│ ├── test_image_fromqpixmap.py
│ ├── test_image_getbands.py
│ ├── test_image_getbbox.py
│ ├── test_image_getcolors.py
│ ├── test_image_getdata.py
│ ├── test_image_getextrema.py
│ ├── test_image_getim.py
│ ├── test_image_getpalette.py
│ ├── test_image_getprojection.py
│ ├── test_imagegrab.py
│ ├── test_image_histogram.py
│ ├── test_image_load.py
│ ├── test_imagemath.py
│ ├── test_image_mode.py
│ ├── test_imagemorph.py
│ ├── test_imageops.py
│ ├── test_imageops_usm.py
│ ├── test_imagepalette.py
│ ├── test_image_paste.py
│ ├── test_imagepath.py
│ ├── test_image_point.py
│ ├── test_image_putalpha.py
│ ├── test_image_putdata.py
│ ├── test_image_putpalette.py
│ ├── test_image.py
│ ├── test_imageqt.py
│ ├── test_image_quantize.py
│ ├── test_image_resample.py
│ ├── test_image_resize.py
│ ├── test_image_rotate.py
│ ├── test_imagesequence.py
│ ├── test_imageshow.py
│ ├── test_image_split.py
│ ├── test_imagestat.py
│ ├── test_image_thumbnail.py
│ ├── test_imagetk.py
│ ├── test_image_tobitmap.py
│ ├── test_image_tobytes.py
│ ├── test_image_toqimage.py
│ ├── test_image_toqpixmap.py
│ ├── test_image_transform.py
│ ├── test_image_transpose.py
│ ├── test_imagewin_pointers.py
│ ├── test_imagewin.py
│ ├── test_lib_image.py
│ ├── test_lib_pack.py
│ ├── test_locale.py
│ ├── test_map.py
│ ├── test_mode_i16.py
│ ├── test_numpy.py
│ ├── test_pickle.py
│ ├── test_psdraw.py
│ ├── test_pyroma.py
│ ├── test_scipy.py
│ ├── test_shell_injection.py
│ ├── test_tiff_ifdrational.py
│ ├── test_util.py
│ ├── threaded_save.py
│ └── versions.py
├── Tk
│ ├── tkImaging.c
│ └── _tkmini.h
├── _webp.c
└── winbuild
├── appveyor_install_pypy.cmd
├── build_dep.py
├── build.py
├── build.rst
├── config.py
├── fetch.py
├── fixproj.py
├── get_pythons.py
├── nmake.opt
├── README.md
├── test.py
├── untar.py
└── unzip.py
25 directories, 834 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论