@@ -5,6 +5,15 @@ Changelog (Pillow)
557.2.0 (unreleased)
66------------------
77
8+ - Fix repeatedly loading .gbr #4620
9+ [ElinksFr, radarhere]
10+
11+ - JPEG: Truncate icclist instead of setting to None #4613
12+ [homm]
13+
14+ - Fixes default offset for Exif #4594
15+ [rodrigob, radarhere]
16+
817- Fixed bug when unpickling TIFF images #4565
918 [radarhere]
1019
@@ -5310,23 +5319,23 @@ Pre-fork
53105319 + Added keyword options to the "save" method. The following options
53115320 are currently supported:
53125321
5313- format option description
5322+ Format Option Description
53145323 --------------------------------------------------------
5315- JPEG optimize minimize output file at the
5316- expense of compression speed.
5324+ JPEG optimize Minimize output file at the
5325+ expense of compression speed.
53175326
5318- JPEG progressive enable progressive output. the
5319- option value is ignored.
5327+ JPEG progressive Enable progressive output.
5328+ The option value is ignored.
53205329
5321- JPEG quality set compression quality (1-100).
5322- the default value is 75.
5330+ JPEG quality Set compression quality (1-100).
5331+ The default value is 75.
53235332
5324- JPEG smooth smooth dithered images. value
5325- is strength (1-100). default is
5326- off (0).
5333+ JPEG smooth Smooth dithered images.
5334+ Value is strength (1-100).
5335+ Default is off (0).
53275336
5328- PNG optimize minimize output file at the
5329- expense of compression speed.
5337+ PNG optimize Minimize output file at the
5338+ expense of compression speed.
53305339
53315340 Expect more options in future releases. Also note that
53325341 file writers silently ignore unknown options.
@@ -5347,31 +5356,31 @@ Pre-fork
53475356 + Various improvements to the sample scripts:
53485357
53495358 "pilconvert" Carries out some extra tricks in order to make
5350- the resulting file as small as possible.
5359+ the resulting file as small as possible.
53515360
5352- "explode" (NEW) Split an image sequence into individual frames.
5361+ "explode" (NEW) Split an image sequence into individual frames.
53535362
5354- "gifmaker" (NEW) Convert a sequence file into a GIF animation.
5355- Note that the GIF encoder create "uncompressed" GIF
5356- files, so animations created by this script are
5357- rather large (typically 2-5 times the compressed
5358- sizes).
5363+ "gifmaker" (NEW) Convert a sequence file into a GIF animation.
5364+ Note that the GIF encoder create "uncompressed" GIF
5365+ files, so animations created by this script are
5366+ rather large (typically 2-5 times the compressed
5367+ sizes).
53595368
5360- "image2py" (NEW) Convert a single image to a python module. See
5361- comments in this script for details.
5369+ "image2py" (NEW) Convert a single image to a python module. See
5370+ comments in this script for details.
53625371
5363- "player" If multiple images are given on the command line,
5364- they are interpreted as frames in a sequence. The
5365- script assumes that they all have the same size.
5366- Also note that this script now can play FLI/FLC
5367- and GIF animations.
5372+ "player" If multiple images are given on the command line,
5373+ they are interpreted as frames in a sequence. The
5374+ script assumes that they all have the same size.
5375+ Also note that this script now can play FLI/FLC
5376+ and GIF animations.
53685377
53695378 This player can also execute embedded Python
53705379 animation applets (ARG format only).
53715380
5372- "viewer" Transparent images ("P" with transparency property,
5373- and "RGBA") are superimposed on the standard Tk back-
5374- ground.
5381+ "viewer" Transparent images ("P" with transparency property,
5382+ and "RGBA") are superimposed on the standard Tk back-
5383+ ground.
53755384
53765385 + Fixed colour argument to "new". For multilayer images, pass a
53775386 tuple: (Red, Green, Blue), (Red, Green, Blue, Alpha), or (Cyan,
0 commit comments