2010-07-31 06:52:47 +04:00
|
|
|
#
|
|
|
|
# The Python Imaging Library
|
|
|
|
#
|
|
|
|
# load a GIMP brush file
|
|
|
|
#
|
|
|
|
# History:
|
|
|
|
# 96-03-14 fl Created
|
2016-01-08 18:18:48 +03:00
|
|
|
# 16-01-08 es Version 2
|
2010-07-31 06:52:47 +04:00
|
|
|
#
|
|
|
|
# Copyright (c) Secret Labs AB 1997.
|
|
|
|
# Copyright (c) Fredrik Lundh 1996.
|
2016-01-08 18:18:48 +03:00
|
|
|
# Copyright (c) Eric Soroos 2016.
|
2010-07-31 06:52:47 +04:00
|
|
|
#
|
|
|
|
# See the README file for information on usage and redistribution.
|
|
|
|
#
|
2016-01-08 18:18:48 +03:00
|
|
|
#
|
|
|
|
# See https://github.com/GNOME/gimp/blob/master/devel-docs/gbr.txt for
|
|
|
|
# format documentation.
|
|
|
|
#
|
|
|
|
# This code Interprets version 1 and 2 .gbr files.
|
|
|
|
# Version 1 files are obsolete, and should not be used for new
|
|
|
|
# brushes.
|
|
|
|
# Version 2 files are saved by GIMP v2.8 (at least)
|
|
|
|
# Version 3 files have a format specifier of 18 for 16bit floats in
|
|
|
|
# the color depth field. This is currently unsupported by Pillow.
|
2010-07-31 06:52:47 +04:00
|
|
|
|
2013-03-07 20:20:28 +04:00
|
|
|
from PIL import Image, ImageFile, _binary
|
2010-07-31 06:52:47 +04:00
|
|
|
|
py3k: The big push
There are two main issues fixed with this commit:
* bytes vs. str: All file, image, and palette data are now handled as
bytes. A new _binary module consolidates the hacks needed to do this
across Python versions. tostring/fromstring methods have been renamed to
tobytes/frombytes, but the Python 2.6/2.7 versions alias them to the old
names for compatibility. Users should move to tobytes/frombytes.
One other potentially-breaking change is that text data in image files
(such as tags, comments) are now explicitly handled with a specific
character encoding in mind. This works well with the Unicode str in
Python 3, but may trip up old code expecting a straight byte-for-byte
translation to a Python string. This also required a change to Gohlke's
tags tests (in Tests/test_file_png.py) to expect Unicode strings from
the code.
* True div vs. floor div: Many division operations used the "/" operator
to do floor division, which is now the "//" operator in Python 3. These
were fixed.
As of this commit, on the first pass, I have one failing test (improper
handling of a slice object in a C module, test_imagepath.py) in Python 3,
and three that that I haven't tried running yet (test_imagegl,
test_imagegrab, and test_imageqt). I also haven't tested anything on
Windows. All but the three skipped tests run flawlessly against Pythons
2.6 and 2.7.
2012-10-21 01:01:53 +04:00
|
|
|
i32 = _binary.i32be
|
2010-07-31 06:52:47 +04:00
|
|
|
|
2014-08-26 17:47:10 +04:00
|
|
|
|
2010-07-31 06:52:47 +04:00
|
|
|
def _accept(prefix):
|
2016-02-05 01:57:13 +03:00
|
|
|
return len(prefix) >= 8 and i32(prefix[:4]) >= 20 and i32(prefix[4:8]) in (1, 2)
|
2010-07-31 06:52:47 +04:00
|
|
|
|
2014-08-26 17:47:10 +04:00
|
|
|
|
2010-07-31 06:52:47 +04:00
|
|
|
##
|
|
|
|
# Image plugin for the GIMP brush format.
|
|
|
|
|
|
|
|
class GbrImageFile(ImageFile.ImageFile):
|
|
|
|
|
|
|
|
format = "GBR"
|
|
|
|
format_description = "GIMP brush file"
|
|
|
|
|
|
|
|
def _open(self):
|
|
|
|
header_size = i32(self.fp.read(4))
|
|
|
|
version = i32(self.fp.read(4))
|
2016-01-08 18:18:48 +03:00
|
|
|
if header_size < 20:
|
2012-10-11 07:52:53 +04:00
|
|
|
raise SyntaxError("not a GIMP brush")
|
2016-02-05 01:57:13 +03:00
|
|
|
if version not in (1, 2):
|
|
|
|
raise SyntaxError("Unsupported GIMP brush version: %s" % version)
|
2010-07-31 06:52:47 +04:00
|
|
|
|
|
|
|
width = i32(self.fp.read(4))
|
|
|
|
height = i32(self.fp.read(4))
|
2015-04-24 11:24:52 +03:00
|
|
|
color_depth = i32(self.fp.read(4))
|
2016-02-05 01:57:13 +03:00
|
|
|
if width <= 0 or height <= 0:
|
2012-10-11 07:52:53 +04:00
|
|
|
raise SyntaxError("not a GIMP brush")
|
2016-02-05 01:57:13 +03:00
|
|
|
if color_depth not in (1, 4):
|
2016-04-13 10:33:33 +03:00
|
|
|
raise SyntaxError("Unsupported GIMP brush color depth: %s" % color_depth)
|
2016-02-05 01:57:13 +03:00
|
|
|
|
2016-01-08 18:18:48 +03:00
|
|
|
if version == 1:
|
|
|
|
comment_length = header_size-20
|
|
|
|
else:
|
|
|
|
comment_length = header_size-28
|
|
|
|
magic_number = self.fp.read(4)
|
|
|
|
if magic_number != b'GIMP':
|
|
|
|
raise SyntaxError("not a GIMP brush, bad magic number")
|
|
|
|
self.info['spacing'] = i32(self.fp.read(4))
|
|
|
|
|
|
|
|
comment = self.fp.read(comment_length)[:-1]
|
|
|
|
|
|
|
|
if color_depth == 1:
|
|
|
|
self.mode = "L"
|
|
|
|
else:
|
|
|
|
self.mode = 'RGBA'
|
2016-02-05 01:57:13 +03:00
|
|
|
|
2010-07-31 06:52:47 +04:00
|
|
|
self.size = width, height
|
|
|
|
|
|
|
|
self.info["comment"] = comment
|
|
|
|
|
2016-01-08 18:18:48 +03:00
|
|
|
# Image might not be small
|
|
|
|
Image._decompression_bomb_check(self.size)
|
2010-07-31 06:52:47 +04:00
|
|
|
|
2016-02-05 01:57:13 +03:00
|
|
|
# Data is an uncompressed block of w * h * bytes/pixel
|
2016-01-08 18:18:48 +03:00
|
|
|
self._data_size = width * height * color_depth
|
2010-07-31 06:52:47 +04:00
|
|
|
|
2016-01-08 18:18:48 +03:00
|
|
|
def load(self):
|
2010-07-31 06:52:47 +04:00
|
|
|
self.im = Image.core.new(self.mode, self.size)
|
2016-01-08 18:18:48 +03:00
|
|
|
self.frombytes(self.fp.read(self._data_size))
|
2010-07-31 06:52:47 +04:00
|
|
|
|
|
|
|
#
|
|
|
|
# registry
|
|
|
|
|
2015-07-04 16:29:58 +03:00
|
|
|
Image.register_open(GbrImageFile.format, GbrImageFile, _accept)
|
|
|
|
Image.register_extension(GbrImageFile.format, ".gbr")
|