Commit Graph

8322 Commits

Author SHA1 Message Date
Andrew Murray
be80b083e5 Automatically populate _n_frames if seeking to the last frame 2019-03-28 08:13:47 +11:00
Andrew Murray
d84fd20f0c Simplified is_animated 2019-03-28 08:13:47 +11:00
Hugo
0306b80ef7
Update CHANGES.rst 2019-03-27 18:03:40 +02:00
Hugo
adbe97594e
Merge pull request #3719 from radarhere/p_rgb_rgba
Allow RGB and RGBA values for new P images
2019-03-27 18:03:23 +02:00
Hugo
82848905e6
Merge pull request #3713 from radarhere/tiff_seek
Fixed TIFF bug when seeking backwards and then forwards
2019-03-27 17:58:34 +02:00
Hugo
22d7b0495a
Merge pull request #3498 from Glandos/patch-1
Cache EXIF information
2019-03-27 17:53:54 +02:00
Hugo
4ae1020e6e
Merge pull request #3729 from radarhere/spider
Improved docstring
2019-03-27 11:57:20 +02:00
Andrew Murray
b409f38be3 Updated CHANGES.rst [ci skip] 2019-03-27 09:47:42 +11:00
Andrew Murray
28002cae39
Merge pull request #3744 from radarhere/png_transparency
Added transparency for all PNG greyscale modes
2019-03-27 09:39:36 +11:00
Andrew Murray
33522a8295
Merge pull request #3751 from hugovk/update-appveyor-pypy
AppVeyor: Upgrade to PyPy 7.1.0
2019-03-27 08:30:47 +11:00
Andrew Murray
4a5666f1f4 Added transparency for all PNG greyscale modes 2019-03-27 07:41:33 +11:00
Hugo
d7776c66e2 AppVeyor: upgrade to PyPy 7.1.0 2019-03-26 17:58:30 +02:00
Hugo
e6db8dee0c
Update CHANGES.rst 2019-03-26 17:56:43 +02:00
Hugo
36db534c48
Merge pull request #3749 from radarhere/python38
Fix deprecation warnings in Python 3.8
2019-03-26 15:45:36 +00:00
Andrew Murray
97c2848963 Fixed deprecation warnings 2019-03-26 13:50:57 +11:00
Alex Clark
6d9ea7774e
Merge pull request #3746 from python-pillow/update-readme
Update readme
2019-03-25 07:35:30 -04:00
Alex Clark
a6ebbb07f3 Linking 2019-03-24 18:15:10 -04:00
Alex Clark
eb0258ecec Wording/linking 2019-03-24 18:10:44 -04:00
Alex Clark
a7a65db2a3 Copy setuptools' security vulnerability text
Thanks!

https://github.com/pypa/setuptools/blob/master/README.rst
2019-03-24 18:02:55 -04:00
Alex Clark
c012c67877 Move badge links to the bottom 2019-03-24 18:00:12 -04:00
Andrew Murray
9cc7e8ce95 Improved docstring 2019-03-24 22:07:19 +11:00
Hugo
30841fe808
Merge pull request #3737 from jdufresne/quotes
Add backticks around Python classes and modules in open_files.rst
2019-03-23 08:31:15 +00:00
Andrew Murray
9965afa82b Updated CHANGES.rst [ci skip] 2019-03-23 17:36:11 +11:00
Hugo
16f8ab5b38
Merge pull request #3742 from radarhere/releasenotes
MIME type and TIFF compression codec release notes
2019-03-23 06:21:55 +00:00
Hugo
fccf229a7c
Merge pull request #3741 from radarhere/transpose
Added support for I;16 modes for remaining transpose operations
2019-03-23 06:19:00 +00:00
Andrew Murray
3b3e590f6c Added release notes for #3555 [ci skip] 2019-03-23 14:51:24 +11:00
Andrew Murray
61dae3041c Added release notes for #3525, #3688 and #3520 [ci skip] 2019-03-23 14:48:17 +11:00
Andrew Murray
8ba76f9a10 Added support for I;16 modes for remaining transpose operations 2019-03-23 14:13:39 +11:00
Andrew Murray
577a12e5e0 Update CHANGES.rst [ci skip] 2019-03-23 10:51:58 +11:00
Andrew Murray
31ac5a96d1
Merge pull request #3716 from radarhere/gif_rewind
Fixed GIF bug when rewinding to a non-zero frame
2019-03-23 10:46:41 +11:00
Andrew Murray
afbb503bef
Merge pull request #3736 from jdufresne/handles_eof
Remove additional references to removed handles_eof
2019-03-23 10:44:42 +11:00
Jon Dufresne
d31bee5e35 Add backticks around Python classes and modules in open_files.rst 2019-03-22 06:12:08 -07:00
Jon Dufresne
deb8a7aadd Remove additional references to removed handles_eof
handles_eof was removed in 90760a5f30.
2019-03-22 05:58:22 -07:00
Hugo
42a6e2de02
Merge pull request #3734 from radarhere/freetype
Updated freetype to 2.10.0
2019-03-22 13:17:06 +02:00
Andrew Murray
15f8ef02c9 Updated freetype to 2.10.0 2019-03-22 21:14:39 +11:00
Hugo
63141a9c0c
Update CHANGES.rst 2019-03-18 20:37:56 +02:00
Hugo
b8ea8814f0
Merge pull request #3683 from radarhere/exclusive
Only close original fp in __del__ and __exit__ if original fp is exclusive
2019-03-18 20:37:21 +02:00
Andrew Murray
9bdab56689 Replaced hasattr conditions with getattr and default 2019-03-18 09:15:37 +11:00
Hugo
c8fa5be099
Update CHANGES.rst 2019-03-17 20:50:33 +02:00
Hugo
b261773fb8
Merge pull request #3725 from jdufresne/bytes-warning
Fix BytesWarning in Tests/test_numpy.py
2019-03-17 20:46:21 +02:00
Jon Dufresne
6d46ae2e8f Fix BytesWarning in Tests/test_numpy.py
When running Python with the `-b` command line argument, fixes warnings:

    Tests/test_numpy.py::TestNumpy::test_1bit
      Pillow/Tests/test_numpy.py:118: BytesWarning: Comparison between bytes and string
        arr_bool = numpy.array([[1, 0, 0, 1, 0], [0, 1, 0, 0, 0]], 'bool')

    Tests/test_numpy.py::TestNumpy::test_point_lut
      Pillow/Tests/test_numpy.py:170: BytesWarning: Comparison between bytes and string
        lut = numpy.array(data, dtype='uint8')

    Tests/test_numpy.py::TestNumpy::test_to_array
      Pillow/Tests/test_numpy.py:146: BytesWarning: Comparison between bytes and string
        self.assertEqual(np_img.dtype, numpy.dtype(dtype))
2019-03-17 10:08:33 -07:00
Hugo
d1f865e02a
Merge pull request #3722 from radarhere/seek_docs
Corrected seek documentation
2019-03-16 15:55:29 +02:00
Andrew Murray
fa8ecffff2 Corrected seek documentation 2019-03-17 00:00:10 +11:00
Andrew Murray
406d1d4b9a
Merge pull request #3551 from hugovk/rm-quanthash-destroy-funcs
Remove unused C hashtable functions
2019-03-16 21:48:49 +11:00
Hugo
87ddd07359
Merge pull request #3717 from radarhere/ico_condition
Removed condition that was always true
2019-03-16 12:04:11 +02:00
Andrew Murray
7dfbdc01f4 Fixed bug when rewinding to a non-zero frame 2019-03-16 20:02:24 +11:00
Andrew Murray
6790c2e375 Allow RGB and RGBA values for new P images 2019-03-15 17:35:05 +11:00
Hugo
21ff4114bd
Update CHANGES.rst 2019-03-15 08:22:43 +02:00
Hugo
de75132a14
Merge pull request #3520 from pirate486743186/mime-types
Add missing MIME types and extensions
2019-03-15 08:21:44 +02:00
Andrew Murray
3749a55234 Removed condition that was always true 2019-03-15 10:46:34 +11:00