Hugo
9fa3fb98f3
Update CHANGES.rst [CI skip]
2016-04-06 19:59:40 +03:00
Hugo
a7c678b1af
Merge pull request #1813 from wiredfool/DIB_1293
...
Fix for DIB/BMP images
2016-04-06 19:58:25 +03:00
wiredfool
0e3caec317
Added Transparency mask unpacker for BMP files
2016-04-06 07:40:49 -07:00
wiredfool
e84e02997c
Fixes DIB image format
...
The DIB image format uses the 40 byte BMP header, followed by 3 masks
for RGB channels. We were reading 4 masks, consuming the first pixel
of the image.
Mostly fixes issue #1293 . Remaining issue: alpha channel is actually a
transparency mask.
2016-04-06 07:38:41 -07:00
Hugo
3242b5cbaa
Merge pull request #1812 from techtonik/patch-1
...
README.rst fix contribution link
2016-04-06 15:40:07 +03:00
anatoly techtonik
8754f65a42
README.rst fix contribution link
2016-04-06 14:36:12 +03:00
Hugo
28ce695dd4
Merge pull request #1807 from python-pillow/tabulate-badges
...
Tabulate badges
2016-04-06 10:14:23 +03:00
Hugo
8c9e64de6d
Update CHANGES.rst [CI skip]
2016-04-05 16:11:28 +03:00
Hugo
99c61adde2
Merge pull request #1809 from radarhere/pxr
...
Added PixarImagePlugin file extension
2016-04-05 16:10:45 +03:00
Andrew Murray
1888d60504
Added PixarImagePlugin file extension
2016-04-05 23:01:39 +10:00
Andrew Murray
3478464ce8
Fixed typo
2016-04-05 20:42:24 +10:00
Andrew Murray
7d64ab3b9b
Fixed typo [ci skip]
2016-04-05 19:32:24 +10:00
Hugo
619d5effa6
Tabulate badges
...
Inspired by https://github.com/pytest-dev/pytest-cov/blob/master/README.rst
[CI skip]
2016-04-04 18:25:31 +03:00
Hugo
2fdb386882
Update CHANGES.rst [CI skip]
2016-04-04 16:39:35 +03:00
Hugo
cee9a1da15
Merge pull request #1805 from wiredfool/verify-struct-error
...
Catch struct.errors when verifying png files
2016-04-04 16:38:29 +03:00
wiredfool
90378c8298
Fixing compatibility with the truncated images tests
2016-04-04 05:40:37 -07:00
wiredfool
bb91abe147
Merge pull request #1804 from hugovk/tiff_jpegtables
...
Test saving TIFF with JPEGTables tag
2016-04-04 05:06:53 -07:00
wiredfool
77da73c90f
Catch struct.errors when verifying png files, convert to SyntaxErrors, fixes #1755
2016-04-04 03:08:22 -07:00
wiredfool
6899adc346
Updated Changes.rst [ci skip]
2016-04-04 10:07:48 +01:00
wiredfool
ca5e22b59a
Merge pull request #1794 from radarhere/spiderimageplugin
...
SpiderImagePlugin: raise an error when seeking in a non-stack file
2016-04-04 02:07:41 -07:00
Andrew Murray
dabb68a61e
Added tests
2016-04-04 18:48:21 +10:00
hugovk
ba817af569
Merge
2016-04-03 23:08:49 +03:00
wiredfool
8e5cf79a79
Update CHANGES.rst [ci skip]
2016-04-03 20:22:39 +01:00
wiredfool
b0e8e2d0a8
Update CHANGES.rst [ci skip]
2016-04-03 20:08:40 +01:00
wiredfool
14f3b45f46
Merge pull request #1789 from zwhfly/tiff
...
Add Support for 2/4 bpp Tiff Grayscale Images
2016-04-03 12:07:48 -07:00
wiredfool
6f9fb2eefd
Update CHANGES.rst [ci skip]
2016-04-03 19:20:36 +01:00
wiredfool
0e35313065
Merge pull request #1788 from radarhere/root
...
Removed unused variable from selftest
2016-04-03 11:12:19 -07:00
Hugo
4637bf4271
Update CHANGES.rst [CI skip]
2016-04-03 19:39:24 +03:00
Hugo
66e937875c
Merge pull request #1799 from radarhere/warning
...
Added warning for deprecated as_dict method
2016-04-03 19:38:33 +03:00
Andrew Murray
26bf1937c7
Added warning for deprecated as_dict method
2016-04-03 23:41:28 +10:00
Hugo
a1fbccd0c0
Merge pull request #1798 from radarhere/contributing
...
Added AppVeyor to CONTRIBUTING
2016-04-03 16:14:32 +03:00
Andrew Murray
34c1a90736
Added AppVeyor to CONTRIBUTING [ci skip]
2016-04-03 21:57:40 +10:00
Hugo
a490d8890f
Update CHANGES.rst [CI skip]
2016-04-03 12:56:07 +03:00
Hugo
c099e0168e
Merge pull request #1784 from radarhere/pow
...
Removed powf support for older Python versions
2016-04-03 12:55:33 +03:00
Hugo
bb7b89eea0
Merge pull request #1795 from radarhere/installation
...
Updated El Capitan tested Pillow version
2016-04-03 12:39:52 +03:00
Hugo
4fb4cbc0d3
Update CHANGES.rst [CI skip]
2016-04-03 11:37:20 +03:00
Hugo
77b5a531c6
Merge pull request #1625 from radarhere/health
...
Health fixes
2016-04-03 10:58:35 +03:00
Hugo
c4233fd668
Merge pull request #1796 from radarhere/pildriver
...
Minor pildriver code rearrangement
2016-04-03 10:31:43 +03:00
Andrew Murray
503d8e925a
Minor code rearrangement
2016-04-03 15:08:28 +10:00
Andrew Murray
79d0e9ad59
Updated El Capitan tested Pillow version [ci skip]
2016-04-03 12:01:02 +10:00
Alex Clark
4391816cff
Merge pull request #1793 from radarhere/license
...
Added Pillow to LICENSE
2016-04-02 09:18:07 -04:00
Jonathan Michalon
d07ab52c66
SpiderImagePlugin: raise an error when seeking in a non-stack file
...
Using ImageSequence.Iterator on a non-stack SPIDER image leads to infinite loop.
EOFError (which stops the iteration) is never raised because when the image isn't a stack,
seek() returns gently without error.
2016-04-02 19:12:21 +11:00
Andrew Murray
4db2972778
Added Pillow to LICENSE [ci skip]
2016-04-02 10:41:10 +11:00
wiredfool
fd7fa4e61d
3.3.0.dev0 versioning
2016-04-01 07:39:35 -07:00
wiredfool
c01f51dfff
3.2.0 release notes formatting
2016-04-01 07:04:30 -07:00
wiredfool
344cb709ed
3.2.0 Release Version Bump
2016-04-01 05:17:23 -07:00
wiredfool
98474e4fa9
added 3.2.0 release notes to index
2016-04-01 05:17:23 -07:00
wiredfool
642a331dd1
Release Notes
2016-04-01 05:11:54 -07:00
wiredfool
a1f244343d
Fixed j2k integer overflow error on encode - CVE-2016-3076
2016-04-01 05:11:54 -07:00
Alex Clark
de7481d5b7
Merge pull request #1776 from python-pillow/aclark-build-cleanup
...
Clean up reqs
2016-04-01 08:01:29 -04:00