Skip to content

Commit

Permalink
Merge pull request #3893 from radarhere/bmp_definitions
Browse files Browse the repository at this point in the history
Simplified definition of BMP values
  • Loading branch information
hugovk committed Jun 19, 2019
2 parents b271485 + ca3e210 commit 6749617
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/PIL/BmpImagePlugin.py
Expand Up @@ -66,7 +66,8 @@ class BmpImageFile(ImageFile.ImageFile):

# -------------------------------------------------- BMP Compression values
COMPRESSIONS = {"RAW": 0, "RLE8": 1, "RLE4": 2, "BITFIELDS": 3, "JPEG": 4, "PNG": 5}
RAW, RLE8, RLE4, BITFIELDS, JPEG, PNG = 0, 1, 2, 3, 4, 5
for k, v in COMPRESSIONS.items():
vars()[k] = v

def _bitmap(self, header=0, offset=0):
""" Read relevant info about the BMP """
Expand Down

0 comments on commit 6749617

Please sign in to comment.