mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-13 18:56:17 +03:00
Merge from master
This commit is contained in:
commit
c9955628e2
|
@ -10,7 +10,10 @@ python:
|
||||||
- 3.2
|
- 3.2
|
||||||
- 3.3
|
- 3.3
|
||||||
|
|
||||||
install: "sudo apt-get -qq install libfreetype6-dev liblcms2-dev libwebp-dev python-qt4 ghostscript"
|
install:
|
||||||
|
- "sudo apt-get -qq install libfreetype6-dev liblcms2-dev libwebp-dev python-qt4 ghostscript libffi-dev"
|
||||||
|
- "pip install cffi"
|
||||||
|
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- python setup.py clean
|
- python setup.py clean
|
||||||
|
|
14
CHANGES.rst
14
CHANGES.rst
|
@ -1,7 +1,7 @@
|
||||||
Changelog (Pillow)
|
Changelog (Pillow)
|
||||||
==================
|
==================
|
||||||
|
|
||||||
2.4.0 (2014-04-01)
|
2.4.0 (2014-04-01 est.)
|
||||||
------------------
|
------------------
|
||||||
|
|
||||||
- Fixed DOS with invalid palette size or invalid image size in BMP file
|
- Fixed DOS with invalid palette size or invalid image size in BMP file
|
||||||
|
@ -10,6 +10,18 @@ Changelog (Pillow)
|
||||||
- Added support for BMP version 4 and 5
|
- Added support for BMP version 4 and 5
|
||||||
[eddwardo, wiredfool]
|
[eddwardo, wiredfool]
|
||||||
|
|
||||||
|
- Fix segfault in getfont when passed a memory resident font
|
||||||
|
[wiredfool]
|
||||||
|
|
||||||
|
- Fix crash on Saving a PNG when icc-profile is None
|
||||||
|
[brutasse]
|
||||||
|
|
||||||
|
- Cffi+Python implementation of the PixelAccess object
|
||||||
|
[wiredfool]
|
||||||
|
|
||||||
|
- PixelAccess returns unsigned ints for I16 mode
|
||||||
|
[wiredfool]
|
||||||
|
|
||||||
- Minor patch on booleans + Travis
|
- Minor patch on booleans + Travis
|
||||||
[sciunto]
|
[sciunto]
|
||||||
|
|
||||||
|
|
25
PIL/Image.py
25
PIL/Image.py
|
@ -100,6 +100,13 @@ import os, sys
|
||||||
import collections
|
import collections
|
||||||
import numbers
|
import numbers
|
||||||
|
|
||||||
|
# works everywhere, win for pypy, not cpython
|
||||||
|
USE_CFFI_ACCESS = hasattr(sys, 'pypy_version_info')
|
||||||
|
try:
|
||||||
|
import cffi
|
||||||
|
HAS_CFFI=True
|
||||||
|
except:
|
||||||
|
HAS_CFFI=False
|
||||||
|
|
||||||
def isImageType(t):
|
def isImageType(t):
|
||||||
"""
|
"""
|
||||||
|
@ -468,6 +475,7 @@ class Image:
|
||||||
self.info = {}
|
self.info = {}
|
||||||
self.category = NORMAL
|
self.category = NORMAL
|
||||||
self.readonly = 0
|
self.readonly = 0
|
||||||
|
self.pyaccess = None
|
||||||
|
|
||||||
def _new(self, im):
|
def _new(self, im):
|
||||||
new = Image()
|
new = Image()
|
||||||
|
@ -492,6 +500,7 @@ class Image:
|
||||||
def _copy(self):
|
def _copy(self):
|
||||||
self.load()
|
self.load()
|
||||||
self.im = self.im.copy()
|
self.im = self.im.copy()
|
||||||
|
self.pyaccess = None
|
||||||
self.readonly = 0
|
self.readonly = 0
|
||||||
|
|
||||||
def _dump(self, file=None, format=None):
|
def _dump(self, file=None, format=None):
|
||||||
|
@ -645,6 +654,13 @@ class Image:
|
||||||
self.palette.mode = "RGBA"
|
self.palette.mode = "RGBA"
|
||||||
|
|
||||||
if self.im:
|
if self.im:
|
||||||
|
if HAS_CFFI and USE_CFFI_ACCESS:
|
||||||
|
if self.pyaccess:
|
||||||
|
return self.pyaccess
|
||||||
|
from PIL import PyAccess
|
||||||
|
self.pyaccess = PyAccess.new(self, self.readonly)
|
||||||
|
if self.pyaccess:
|
||||||
|
return self.pyaccess
|
||||||
return self.im.pixel_access(self.readonly)
|
return self.im.pixel_access(self.readonly)
|
||||||
|
|
||||||
def verify(self):
|
def verify(self):
|
||||||
|
@ -976,6 +992,8 @@ class Image:
|
||||||
"""
|
"""
|
||||||
|
|
||||||
self.load()
|
self.load()
|
||||||
|
if self.pyaccess:
|
||||||
|
return self.pyaccess.getpixel(xy)
|
||||||
return self.im.getpixel(xy)
|
return self.im.getpixel(xy)
|
||||||
|
|
||||||
def getprojection(self):
|
def getprojection(self):
|
||||||
|
@ -1186,12 +1204,14 @@ class Image:
|
||||||
mode = getmodebase(self.mode) + "A"
|
mode = getmodebase(self.mode) + "A"
|
||||||
try:
|
try:
|
||||||
self.im.setmode(mode)
|
self.im.setmode(mode)
|
||||||
|
self.pyaccess = None
|
||||||
except (AttributeError, ValueError):
|
except (AttributeError, ValueError):
|
||||||
# do things the hard way
|
# do things the hard way
|
||||||
im = self.im.convert(mode)
|
im = self.im.convert(mode)
|
||||||
if im.mode not in ("LA", "RGBA"):
|
if im.mode not in ("LA", "RGBA"):
|
||||||
raise ValueError # sanity check
|
raise ValueError # sanity check
|
||||||
self.im = im
|
self.im = im
|
||||||
|
self.pyaccess = None
|
||||||
self.mode = self.im.mode
|
self.mode = self.im.mode
|
||||||
except (KeyError, ValueError):
|
except (KeyError, ValueError):
|
||||||
raise ValueError("illegal image mode")
|
raise ValueError("illegal image mode")
|
||||||
|
@ -1292,7 +1312,11 @@ class Image:
|
||||||
self.load()
|
self.load()
|
||||||
if self.readonly:
|
if self.readonly:
|
||||||
self._copy()
|
self._copy()
|
||||||
|
self.pyaccess = None
|
||||||
|
self.load()
|
||||||
|
|
||||||
|
if self.pyaccess:
|
||||||
|
return self.pyaccess.putpixel(xy,value)
|
||||||
return self.im.putpixel(xy, value)
|
return self.im.putpixel(xy, value)
|
||||||
|
|
||||||
def resize(self, size, resample=NEAREST):
|
def resize(self, size, resample=NEAREST):
|
||||||
|
@ -1593,6 +1617,7 @@ class Image:
|
||||||
self.size = size
|
self.size = size
|
||||||
|
|
||||||
self.readonly = 0
|
self.readonly = 0
|
||||||
|
self.pyaccess = None
|
||||||
|
|
||||||
# FIXME: the different tranform methods need further explanation
|
# FIXME: the different tranform methods need further explanation
|
||||||
# instead of bloating the method docs, add a separate chapter.
|
# instead of bloating the method docs, add a separate chapter.
|
||||||
|
|
|
@ -605,19 +605,14 @@ def _save(im, fp, filename, chunk=putchunk, check=0):
|
||||||
chunk(fp, cid, data)
|
chunk(fp, cid, data)
|
||||||
|
|
||||||
# ICC profile writing support -- 2008-06-06 Florian Hoech
|
# ICC profile writing support -- 2008-06-06 Florian Hoech
|
||||||
if "icc_profile" in im.info:
|
if im.info.get("icc_profile"):
|
||||||
# ICC profile
|
# ICC profile
|
||||||
# according to PNG spec, the iCCP chunk contains:
|
# according to PNG spec, the iCCP chunk contains:
|
||||||
# Profile name 1-79 bytes (character string)
|
# Profile name 1-79 bytes (character string)
|
||||||
# Null separator 1 byte (null character)
|
# Null separator 1 byte (null character)
|
||||||
# Compression method 1 byte (0)
|
# Compression method 1 byte (0)
|
||||||
# Compressed profile n bytes (zlib with deflate compression)
|
# Compressed profile n bytes (zlib with deflate compression)
|
||||||
try:
|
name = b"ICC Profile"
|
||||||
import ICCProfile
|
|
||||||
p = ICCProfile.ICCProfile(im.info["icc_profile"])
|
|
||||||
name = p.tags.desc.get("ASCII", p.tags.desc.get("Unicode", p.tags.desc.get("Macintosh", p.tags.desc.get("en", {}).get("US", "ICC Profile")))).encode("latin1", "replace")[:79]
|
|
||||||
except ImportError:
|
|
||||||
name = b"ICC Profile"
|
|
||||||
data = name + b"\0\0" + zlib.compress(im.info["icc_profile"])
|
data = name + b"\0\0" + zlib.compress(im.info["icc_profile"])
|
||||||
chunk(fp, b"iCCP", data)
|
chunk(fp, b"iCCP", data)
|
||||||
|
|
||||||
|
|
297
PIL/PyAccess.py
Normal file
297
PIL/PyAccess.py
Normal file
|
@ -0,0 +1,297 @@
|
||||||
|
#
|
||||||
|
# The Python Imaging Library
|
||||||
|
# Pillow fork
|
||||||
|
#
|
||||||
|
# Python implementation of the PixelAccess Object
|
||||||
|
#
|
||||||
|
# Copyright (c) 1997-2009 by Secret Labs AB. All rights reserved.
|
||||||
|
# Copyright (c) 1995-2009 by Fredrik Lundh.
|
||||||
|
# Copyright (c) 2013 Eric Soroos
|
||||||
|
#
|
||||||
|
# See the README file for information on usage and redistribution
|
||||||
|
#
|
||||||
|
|
||||||
|
# Notes:
|
||||||
|
#
|
||||||
|
# * Implements the pixel access object following Access.
|
||||||
|
# * Does not implement the line functions, as they don't appear to be used
|
||||||
|
# * Taking only the tuple form, which is used from python.
|
||||||
|
# * Fill.c uses the integer form, but it's still going to use the old Access.c implementation.
|
||||||
|
#
|
||||||
|
|
||||||
|
from __future__ import print_function
|
||||||
|
|
||||||
|
from cffi import FFI
|
||||||
|
import sys
|
||||||
|
|
||||||
|
DEBUG = 0
|
||||||
|
|
||||||
|
defs = """
|
||||||
|
struct Pixel_RGBA {
|
||||||
|
unsigned char r,g,b,a;
|
||||||
|
};
|
||||||
|
struct Pixel_I16 {
|
||||||
|
unsigned char l,r;
|
||||||
|
};
|
||||||
|
"""
|
||||||
|
ffi = FFI()
|
||||||
|
ffi.cdef(defs)
|
||||||
|
|
||||||
|
|
||||||
|
class PyAccess(object):
|
||||||
|
|
||||||
|
def __init__(self, img, readonly = False):
|
||||||
|
vals = dict(img.im.unsafe_ptrs)
|
||||||
|
self.readonly = readonly
|
||||||
|
self.image8 = ffi.cast('unsigned char **', vals['image8'])
|
||||||
|
self.image32 = ffi.cast('int **', vals['image32'])
|
||||||
|
self.image = ffi.cast('unsigned char **', vals['image'])
|
||||||
|
self.xsize = vals['xsize']
|
||||||
|
self.ysize = vals['ysize']
|
||||||
|
|
||||||
|
if DEBUG:
|
||||||
|
print (vals)
|
||||||
|
self._post_init()
|
||||||
|
|
||||||
|
def _post_init(): pass
|
||||||
|
|
||||||
|
def __setitem__(self, xy, color):
|
||||||
|
"""
|
||||||
|
Modifies the pixel at x,y. The color is given as a single
|
||||||
|
numerical value for single band images, and a tuple for
|
||||||
|
multi-band images
|
||||||
|
|
||||||
|
:param xy: The pixel coordinate, given as (x, y).
|
||||||
|
:param value: The pixel value.
|
||||||
|
"""
|
||||||
|
if self.readonly: raise ValueError('Attempt to putpixel a read only image')
|
||||||
|
(x,y) = self.check_xy(xy)
|
||||||
|
return self.set_pixel(x,y,color)
|
||||||
|
|
||||||
|
def __getitem__(self, xy):
|
||||||
|
"""
|
||||||
|
Returns the pixel at x,y. The pixel is returned as a single
|
||||||
|
value for single band images or a tuple for multiple band
|
||||||
|
images
|
||||||
|
|
||||||
|
:param xy: The pixel coordinate, given as (x, y).
|
||||||
|
"""
|
||||||
|
|
||||||
|
(x,y) = self.check_xy(xy)
|
||||||
|
return self.get_pixel(x,y)
|
||||||
|
|
||||||
|
putpixel = __setitem__
|
||||||
|
getpixel = __getitem__
|
||||||
|
|
||||||
|
def check_xy(self, xy):
|
||||||
|
(x,y) = xy
|
||||||
|
if not (0 <= x < self.xsize and 0 <= y < self.ysize):
|
||||||
|
raise ValueError('pixel location out of range')
|
||||||
|
return xy
|
||||||
|
|
||||||
|
class _PyAccess32_2(PyAccess):
|
||||||
|
""" PA, LA, stored in first and last bytes of a 32 bit word """
|
||||||
|
def _post_init(self, *args, **kwargs):
|
||||||
|
self.pixels = ffi.cast("struct Pixel_RGBA **", self.image32)
|
||||||
|
|
||||||
|
def get_pixel(self, x,y):
|
||||||
|
pixel = self.pixels[y][x]
|
||||||
|
return (pixel.r, pixel.a)
|
||||||
|
|
||||||
|
def set_pixel(self, x,y, color):
|
||||||
|
pixel = self.pixels[y][x]
|
||||||
|
# tuple
|
||||||
|
pixel.r = min(color[0],255)
|
||||||
|
pixel.a = min(color[1],255)
|
||||||
|
|
||||||
|
class _PyAccess32_3(PyAccess):
|
||||||
|
""" RGB and friends, stored in the first three bytes of a 32 bit word """
|
||||||
|
|
||||||
|
def _post_init(self, *args, **kwargs):
|
||||||
|
self.pixels = ffi.cast("struct Pixel_RGBA **", self.image32)
|
||||||
|
|
||||||
|
def get_pixel(self, x,y):
|
||||||
|
pixel = self.pixels[y][x]
|
||||||
|
return (pixel.r, pixel.g, pixel.b)
|
||||||
|
|
||||||
|
def set_pixel(self, x,y, color):
|
||||||
|
pixel = self.pixels[y][x]
|
||||||
|
# tuple
|
||||||
|
pixel.r = min(color[0],255)
|
||||||
|
pixel.g = min(color[1],255)
|
||||||
|
pixel.b = min(color[2],255)
|
||||||
|
|
||||||
|
class _PyAccess32_4(PyAccess):
|
||||||
|
""" RGBA etc, all 4 bytes of a 32 bit word """
|
||||||
|
def _post_init(self, *args, **kwargs):
|
||||||
|
self.pixels = ffi.cast("struct Pixel_RGBA **", self.image32)
|
||||||
|
|
||||||
|
def get_pixel(self, x,y):
|
||||||
|
pixel = self.pixels[y][x]
|
||||||
|
return (pixel.r, pixel.g, pixel.b, pixel.a)
|
||||||
|
|
||||||
|
def set_pixel(self, x,y, color):
|
||||||
|
pixel = self.pixels[y][x]
|
||||||
|
# tuple
|
||||||
|
pixel.r = min(color[0],255)
|
||||||
|
pixel.g = min(color[1],255)
|
||||||
|
pixel.b = min(color[2],255)
|
||||||
|
pixel.a = min(color[3],255)
|
||||||
|
|
||||||
|
|
||||||
|
class _PyAccess8(PyAccess):
|
||||||
|
""" 1, L, P, 8 bit images stored as uint8 """
|
||||||
|
def _post_init(self, *args, **kwargs):
|
||||||
|
self.pixels = self.image8
|
||||||
|
|
||||||
|
def get_pixel(self, x,y):
|
||||||
|
return self.pixels[y][x]
|
||||||
|
|
||||||
|
def set_pixel(self, x,y, color):
|
||||||
|
try:
|
||||||
|
# integer
|
||||||
|
self.pixels[y][x] = min(color,255)
|
||||||
|
except:
|
||||||
|
# tuple
|
||||||
|
self.pixels[y][x] = min(color[0],255)
|
||||||
|
|
||||||
|
class _PyAccessI16_N(PyAccess):
|
||||||
|
""" I;16 access, native bitendian without conversion """
|
||||||
|
def _post_init(self, *args, **kwargs):
|
||||||
|
self.pixels = ffi.cast('unsigned short **', self.image)
|
||||||
|
|
||||||
|
def get_pixel(self, x,y):
|
||||||
|
return self.pixels[y][x]
|
||||||
|
|
||||||
|
def set_pixel(self, x,y, color):
|
||||||
|
try:
|
||||||
|
# integer
|
||||||
|
self.pixels[y][x] = min(color, 65535)
|
||||||
|
except:
|
||||||
|
# tuple
|
||||||
|
self.pixels[y][x] = min(color[0], 65535)
|
||||||
|
|
||||||
|
class _PyAccessI16_L(PyAccess):
|
||||||
|
""" I;16L access, with conversion """
|
||||||
|
def _post_init(self, *args, **kwargs):
|
||||||
|
self.pixels = ffi.cast('struct Pixel_I16 **', self.image)
|
||||||
|
|
||||||
|
def get_pixel(self, x,y):
|
||||||
|
pixel = self.pixels[y][x]
|
||||||
|
return pixel.l + pixel.r * 256
|
||||||
|
|
||||||
|
def set_pixel(self, x,y, color):
|
||||||
|
pixel = self.pixels[y][x]
|
||||||
|
try:
|
||||||
|
color = min(color, 65535)
|
||||||
|
except:
|
||||||
|
color = min(color[0], 65535)
|
||||||
|
|
||||||
|
pixel.l = color & 0xFF
|
||||||
|
pixel.r = color >> 8
|
||||||
|
|
||||||
|
class _PyAccessI16_B(PyAccess):
|
||||||
|
""" I;16B access, with conversion """
|
||||||
|
def _post_init(self, *args, **kwargs):
|
||||||
|
self.pixels = ffi.cast('struct Pixel_I16 **', self.image)
|
||||||
|
|
||||||
|
def get_pixel(self, x,y):
|
||||||
|
pixel = self.pixels[y][x]
|
||||||
|
return pixel.l *256 + pixel.r
|
||||||
|
|
||||||
|
def set_pixel(self, x,y, color):
|
||||||
|
pixel = self.pixels[y][x]
|
||||||
|
try:
|
||||||
|
color = min(color, 65535)
|
||||||
|
except:
|
||||||
|
color = min(color[0], 65535)
|
||||||
|
|
||||||
|
pixel.l = color >> 8
|
||||||
|
pixel.r = color & 0xFF
|
||||||
|
|
||||||
|
class _PyAccessI32_N(PyAccess):
|
||||||
|
""" Signed Int32 access, native endian """
|
||||||
|
def _post_init(self, *args, **kwargs):
|
||||||
|
self.pixels = self.image32
|
||||||
|
|
||||||
|
def get_pixel(self, x,y):
|
||||||
|
return self.pixels[y][x]
|
||||||
|
|
||||||
|
def set_pixel(self, x,y, color):
|
||||||
|
self.pixels[y][x] = color
|
||||||
|
|
||||||
|
class _PyAccessI32_Swap(PyAccess):
|
||||||
|
""" I;32L/B access, with byteswapping conversion """
|
||||||
|
def _post_init(self, *args, **kwargs):
|
||||||
|
self.pixels = self.image32
|
||||||
|
|
||||||
|
def reverse(self, i):
|
||||||
|
orig = ffi.new('int *', i)
|
||||||
|
chars = ffi.cast('unsigned char *', orig)
|
||||||
|
chars[0],chars[1],chars[2],chars[3] = chars[3], chars[2],chars[1],chars[0]
|
||||||
|
return ffi.cast('int *', chars)[0]
|
||||||
|
|
||||||
|
def get_pixel(self, x,y):
|
||||||
|
return self.reverse(self.pixels[y][x])
|
||||||
|
|
||||||
|
def set_pixel(self, x,y, color):
|
||||||
|
self.pixels[y][x] = self.reverse(color)
|
||||||
|
|
||||||
|
class _PyAccessF(PyAccess):
|
||||||
|
""" 32 bit float access """
|
||||||
|
def _post_init(self, *args, **kwargs):
|
||||||
|
self.pixels = ffi.cast('float **', self.image32)
|
||||||
|
|
||||||
|
def get_pixel(self, x,y):
|
||||||
|
return self.pixels[y][x]
|
||||||
|
|
||||||
|
def set_pixel(self, x,y, color):
|
||||||
|
try:
|
||||||
|
# not a tuple
|
||||||
|
self.pixels[y][x] = color
|
||||||
|
except:
|
||||||
|
# tuple
|
||||||
|
self.pixels[y][x] = color[0]
|
||||||
|
|
||||||
|
|
||||||
|
mode_map = {'1': _PyAccess8,
|
||||||
|
'L': _PyAccess8,
|
||||||
|
'P': _PyAccess8,
|
||||||
|
'LA': _PyAccess32_2,
|
||||||
|
'PA': _PyAccess32_2,
|
||||||
|
'RGB': _PyAccess32_3,
|
||||||
|
'LAB': _PyAccess32_3,
|
||||||
|
'YCbCr': _PyAccess32_3,
|
||||||
|
'RGBA': _PyAccess32_4,
|
||||||
|
'RGBa': _PyAccess32_4,
|
||||||
|
'RGBX': _PyAccess32_4,
|
||||||
|
'CMYK': _PyAccess32_4,
|
||||||
|
'F': _PyAccessF,
|
||||||
|
'I': _PyAccessI32_N,
|
||||||
|
}
|
||||||
|
|
||||||
|
if sys.byteorder == 'little':
|
||||||
|
mode_map['I;16'] = _PyAccessI16_N
|
||||||
|
mode_map['I;16L'] = _PyAccessI16_N
|
||||||
|
mode_map['I;16B'] = _PyAccessI16_B
|
||||||
|
|
||||||
|
mode_map['I;32L'] = _PyAccessI32_N
|
||||||
|
mode_map['I;32B'] = _PyAccessI32_Swap
|
||||||
|
else:
|
||||||
|
mode_map['I;16'] = _PyAccessI16_L
|
||||||
|
mode_map['I;16L'] = _PyAccessI16_L
|
||||||
|
mode_map['I;16B'] = _PyAccessI16_N
|
||||||
|
|
||||||
|
mode_map['I;32L'] = _PyAccessI32_Swap
|
||||||
|
mode_map['I;32B'] = _PyAccessI32_N
|
||||||
|
|
||||||
|
def new(img, readonly=False):
|
||||||
|
|
||||||
|
access_type = mode_map.get(img.mode, None)
|
||||||
|
if not access_type:
|
||||||
|
if DEBUG: print ("PyAccess Not Implemented: %s" % img.mode)
|
||||||
|
return None
|
||||||
|
if DEBUG: print ("New PyAccess: %s" % img.mode)
|
||||||
|
return access_type(img, readonly)
|
||||||
|
|
||||||
|
|
51
Tests/bench_cffi_access.py
Normal file
51
Tests/bench_cffi_access.py
Normal file
|
@ -0,0 +1,51 @@
|
||||||
|
from tester import *
|
||||||
|
|
||||||
|
# not running this test by default. No DOS against travis.
|
||||||
|
|
||||||
|
from PIL import PyAccess
|
||||||
|
from PIL import Image
|
||||||
|
|
||||||
|
import time
|
||||||
|
|
||||||
|
def iterate_get(size, access):
|
||||||
|
(w,h) = size
|
||||||
|
for x in range(w):
|
||||||
|
for y in range(h):
|
||||||
|
access[(x,y)]
|
||||||
|
|
||||||
|
def iterate_set(size, access):
|
||||||
|
(w,h) = size
|
||||||
|
for x in range(w):
|
||||||
|
for y in range(h):
|
||||||
|
access[(x,y)] = (x %256,y%256,0)
|
||||||
|
|
||||||
|
def timer(func, label, *args):
|
||||||
|
iterations = 5000
|
||||||
|
starttime = time.time()
|
||||||
|
for x in range(iterations):
|
||||||
|
func(*args)
|
||||||
|
if time.time()-starttime > 10:
|
||||||
|
print ("%s: breaking at %s iterations, %.6f per iteration"%(label, x+1, (time.time()-starttime)/(x+1.0)))
|
||||||
|
break
|
||||||
|
if x == iterations-1:
|
||||||
|
endtime = time.time()
|
||||||
|
print ("%s: %.4f s %.6f per iteration" %(label, endtime-starttime, (endtime-starttime)/(x+1.0)))
|
||||||
|
|
||||||
|
def test_direct():
|
||||||
|
im = lena()
|
||||||
|
im.load()
|
||||||
|
#im = Image.new( "RGB", (2000,2000), (1,3,2))
|
||||||
|
caccess = im.im.pixel_access(False)
|
||||||
|
access = PyAccess.new(im, False)
|
||||||
|
|
||||||
|
assert_equal(caccess[(0,0)], access[(0,0)])
|
||||||
|
|
||||||
|
print ("Size: %sx%s" % im.size)
|
||||||
|
timer(iterate_get, 'PyAccess - get', im.size, access)
|
||||||
|
timer(iterate_set, 'PyAccess - set', im.size, access)
|
||||||
|
timer(iterate_get, 'C-api - get', im.size, caccess)
|
||||||
|
timer(iterate_set, 'C-api - set', im.size, caccess)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
BIN
Tests/images/icc_profile_none.png
Normal file
BIN
Tests/images/icc_profile_none.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.0 KiB |
100
Tests/test_cffi.py
Normal file
100
Tests/test_cffi.py
Normal file
|
@ -0,0 +1,100 @@
|
||||||
|
from tester import *
|
||||||
|
|
||||||
|
from PIL import Image, PyAccess
|
||||||
|
|
||||||
|
import test_image_putpixel as put
|
||||||
|
import test_image_getpixel as get
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
try:
|
||||||
|
import cffi
|
||||||
|
except:
|
||||||
|
skip()
|
||||||
|
|
||||||
|
Image.USE_CFFI_ACCESS = True
|
||||||
|
|
||||||
|
def test_put():
|
||||||
|
put.test_sanity()
|
||||||
|
|
||||||
|
def test_get():
|
||||||
|
get.test_basic()
|
||||||
|
get.test_signedness()
|
||||||
|
|
||||||
|
def _test_get_access(im):
|
||||||
|
""" Do we get the same thing as the old pixel access """
|
||||||
|
|
||||||
|
""" Using private interfaces, forcing a capi access and a pyaccess for the same image """
|
||||||
|
caccess = im.im.pixel_access(False)
|
||||||
|
access = PyAccess.new(im, False)
|
||||||
|
|
||||||
|
w,h = im.size
|
||||||
|
for x in range(0,w,10):
|
||||||
|
for y in range(0,h,10):
|
||||||
|
assert_equal(access[(x,y)], caccess[(x,y)])
|
||||||
|
|
||||||
|
def test_get_vs_c():
|
||||||
|
_test_get_access(lena('RGB'))
|
||||||
|
_test_get_access(lena('RGBA'))
|
||||||
|
_test_get_access(lena('L'))
|
||||||
|
_test_get_access(lena('LA'))
|
||||||
|
_test_get_access(lena('1'))
|
||||||
|
_test_get_access(lena('P'))
|
||||||
|
#_test_get_access(lena('PA')) # PA -- how do I make a PA image???
|
||||||
|
_test_get_access(lena('F'))
|
||||||
|
|
||||||
|
im = Image.new('I;16', (10,10), 40000)
|
||||||
|
_test_get_access(im)
|
||||||
|
im = Image.new('I;16L', (10,10), 40000)
|
||||||
|
_test_get_access(im)
|
||||||
|
im = Image.new('I;16B', (10,10), 40000)
|
||||||
|
_test_get_access(im)
|
||||||
|
|
||||||
|
im = Image.new('I', (10,10), 40000)
|
||||||
|
_test_get_access(im)
|
||||||
|
# These don't actually appear to be modes that I can actually make,
|
||||||
|
# as unpack sets them directly into the I mode.
|
||||||
|
#im = Image.new('I;32L', (10,10), -2**10)
|
||||||
|
#_test_get_access(im)
|
||||||
|
#im = Image.new('I;32B', (10,10), 2**10)
|
||||||
|
#_test_get_access(im)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
def _test_set_access(im, color):
|
||||||
|
""" Are we writing the correct bits into the image? """
|
||||||
|
|
||||||
|
""" Using private interfaces, forcing a capi access and a pyaccess for the same image """
|
||||||
|
caccess = im.im.pixel_access(False)
|
||||||
|
access = PyAccess.new(im, False)
|
||||||
|
|
||||||
|
w,h = im.size
|
||||||
|
for x in range(0,w,10):
|
||||||
|
for y in range(0,h,10):
|
||||||
|
access[(x,y)] = color
|
||||||
|
assert_equal(color, caccess[(x,y)])
|
||||||
|
|
||||||
|
def test_set_vs_c():
|
||||||
|
_test_set_access(lena('RGB'), (255, 128,0) )
|
||||||
|
_test_set_access(lena('RGBA'), (255, 192, 128, 0))
|
||||||
|
_test_set_access(lena('L'), 128)
|
||||||
|
_test_set_access(lena('LA'), (128,128))
|
||||||
|
_test_set_access(lena('1'), 255)
|
||||||
|
_test_set_access(lena('P') , 128)
|
||||||
|
##_test_set_access(i, (128,128)) #PA -- undone how to make
|
||||||
|
_test_set_access(lena('F'), 1024.0)
|
||||||
|
|
||||||
|
im = Image.new('I;16', (10,10), 40000)
|
||||||
|
_test_set_access(im, 45000)
|
||||||
|
im = Image.new('I;16L', (10,10), 40000)
|
||||||
|
_test_set_access(im, 45000)
|
||||||
|
im = Image.new('I;16B', (10,10), 40000)
|
||||||
|
_test_set_access(im, 45000)
|
||||||
|
|
||||||
|
|
||||||
|
im = Image.new('I', (10,10), 40000)
|
||||||
|
_test_set_access(im, 45000)
|
||||||
|
# im = Image.new('I;32L', (10,10), -(2**10))
|
||||||
|
# _test_set_access(im, -(2**13)+1)
|
||||||
|
#im = Image.new('I;32B', (10,10), 2**10)
|
||||||
|
#_test_set_access(im, 2**13-1)
|
|
@ -250,3 +250,24 @@ def test_trns_rgb():
|
||||||
|
|
||||||
im = roundtrip(im, transparency=(0, 1, 2))
|
im = roundtrip(im, transparency=(0, 1, 2))
|
||||||
assert_equal(im.info["transparency"], (0, 1, 2))
|
assert_equal(im.info["transparency"], (0, 1, 2))
|
||||||
|
|
||||||
|
def test_save_icc_profile_none():
|
||||||
|
# check saving files with an ICC profile set to None (omit profile)
|
||||||
|
in_file = "Tests/images/icc_profile_none.png"
|
||||||
|
im = Image.open(in_file)
|
||||||
|
assert_equal(im.info['icc_profile'], None)
|
||||||
|
|
||||||
|
im = roundtrip(im)
|
||||||
|
assert_false('icc_profile' in im.info)
|
||||||
|
|
||||||
|
def test_roundtrip_icc_profile():
|
||||||
|
# check that we can roundtrip the icc profile
|
||||||
|
im = lena('RGB')
|
||||||
|
|
||||||
|
jpeg_image = Image.open('Tests/images/flower2.jpg')
|
||||||
|
expected_icc = jpeg_image.info['icc_profile']
|
||||||
|
|
||||||
|
im.info['icc_profile'] = expected_icc
|
||||||
|
im = roundtrip(im)
|
||||||
|
assert_equal(im.info['icc_profile'], expected_icc)
|
||||||
|
|
||||||
|
|
|
@ -2,6 +2,8 @@ from tester import *
|
||||||
|
|
||||||
from PIL import Image
|
from PIL import Image
|
||||||
|
|
||||||
|
Image.USE_CFFI_ACCESS=False
|
||||||
|
|
||||||
def color(mode):
|
def color(mode):
|
||||||
bands = Image.getmodebands(mode)
|
bands = Image.getmodebands(mode)
|
||||||
if bands == 1:
|
if bands == 1:
|
||||||
|
@ -9,49 +11,39 @@ def color(mode):
|
||||||
else:
|
else:
|
||||||
return tuple(range(1, bands+1))
|
return tuple(range(1, bands+1))
|
||||||
|
|
||||||
def test_pixel():
|
|
||||||
|
|
||||||
def pixel(mode):
|
|
||||||
|
def check(mode, c=None):
|
||||||
|
if not c:
|
||||||
c = color(mode)
|
c = color(mode)
|
||||||
im = Image.new(mode, (1, 1), None)
|
|
||||||
im.putpixel((0, 0), c)
|
|
||||||
return im.getpixel((0, 0))
|
|
||||||
|
|
||||||
assert_equal(pixel("1"), 1)
|
#check putpixel
|
||||||
assert_equal(pixel("L"), 1)
|
im = Image.new(mode, (1, 1), None)
|
||||||
assert_equal(pixel("LA"), (1, 2))
|
im.putpixel((0, 0), c)
|
||||||
assert_equal(pixel("I"), 1)
|
assert_equal(im.getpixel((0, 0)), c,
|
||||||
assert_equal(pixel("I;16"), 1)
|
"put/getpixel roundtrip failed for mode %s, color %s" %
|
||||||
assert_equal(pixel("I;16B"), 1)
|
(mode, c))
|
||||||
assert_equal(pixel("F"), 1.0)
|
|
||||||
assert_equal(pixel("P"), 1)
|
|
||||||
assert_equal(pixel("PA"), (1, 2))
|
|
||||||
assert_equal(pixel("RGB"), (1, 2, 3))
|
|
||||||
assert_equal(pixel("RGBA"), (1, 2, 3, 4))
|
|
||||||
assert_equal(pixel("RGBX"), (1, 2, 3, 4))
|
|
||||||
assert_equal(pixel("CMYK"), (1, 2, 3, 4))
|
|
||||||
assert_equal(pixel("YCbCr"), (1, 2, 3))
|
|
||||||
|
|
||||||
def test_image():
|
# check inital color
|
||||||
|
im = Image.new(mode, (1, 1), c)
|
||||||
|
assert_equal(im.getpixel((0, 0)), c,
|
||||||
|
"initial color failed for mode %s, color %s " %
|
||||||
|
(mode, color))
|
||||||
|
|
||||||
def pixel(mode):
|
def test_basic():
|
||||||
im = Image.new(mode, (1, 1), color(mode))
|
for mode in ("1", "L", "LA", "I", "I;16", "I;16B", "F",
|
||||||
return im.getpixel((0, 0))
|
"P", "PA", "RGB", "RGBA", "RGBX", "CMYK","YCbCr"):
|
||||||
|
check(mode)
|
||||||
|
|
||||||
|
def test_signedness():
|
||||||
|
# see https://github.com/python-imaging/Pillow/issues/452
|
||||||
|
# pixelaccess is using signed int* instead of uint*
|
||||||
|
for mode in ("I;16", "I;16B"):
|
||||||
|
check(mode, 2**15-1)
|
||||||
|
check(mode, 2**15)
|
||||||
|
check(mode, 2**15+1)
|
||||||
|
check(mode, 2**16-1)
|
||||||
|
|
||||||
assert_equal(pixel("1"), 1)
|
|
||||||
assert_equal(pixel("L"), 1)
|
|
||||||
assert_equal(pixel("LA"), (1, 2))
|
|
||||||
assert_equal(pixel("I"), 1)
|
|
||||||
assert_equal(pixel("I;16"), 1)
|
|
||||||
assert_equal(pixel("I;16B"), 1)
|
|
||||||
assert_equal(pixel("F"), 1.0)
|
|
||||||
assert_equal(pixel("P"), 1)
|
|
||||||
assert_equal(pixel("PA"), (1, 2))
|
|
||||||
assert_equal(pixel("RGB"), (1, 2, 3))
|
|
||||||
assert_equal(pixel("RGBA"), (1, 2, 3, 4))
|
|
||||||
assert_equal(pixel("RGBX"), (1, 2, 3, 4))
|
|
||||||
assert_equal(pixel("CMYK"), (1, 2, 3, 4))
|
|
||||||
assert_equal(pixel("YCbCr"), (1, 2, 3))
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -2,6 +2,8 @@ from tester import *
|
||||||
|
|
||||||
from PIL import Image
|
from PIL import Image
|
||||||
|
|
||||||
|
Image.USE_CFFI_ACCESS=False
|
||||||
|
|
||||||
def test_sanity():
|
def test_sanity():
|
||||||
|
|
||||||
im1 = lena()
|
im1 = lena()
|
||||||
|
|
25
_imaging.c
25
_imaging.c
|
@ -463,7 +463,7 @@ getpixel(Imaging im, ImagingAccess access, int x, int y)
|
||||||
{
|
{
|
||||||
union {
|
union {
|
||||||
UINT8 b[4];
|
UINT8 b[4];
|
||||||
INT16 h;
|
UINT16 h;
|
||||||
INT32 i;
|
INT32 i;
|
||||||
FLOAT32 f;
|
FLOAT32 f;
|
||||||
} pixel;
|
} pixel;
|
||||||
|
@ -3072,12 +3072,35 @@ _getattr_ptr(ImagingObject* self, void* closure)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static PyObject*
|
||||||
|
_getattr_unsafe_ptrs(ImagingObject* self, void* closure)
|
||||||
|
{
|
||||||
|
return Py_BuildValue("(ss)(si)(si)(si)(si)(si)(sn)(sn)(sn)(sn)(sn)(si)(si)(sn)",
|
||||||
|
"mode", self->image->mode,
|
||||||
|
"type", self->image->type,
|
||||||
|
"depth", self->image->depth,
|
||||||
|
"bands", self->image->bands,
|
||||||
|
"xsize", self->image->xsize,
|
||||||
|
"ysize", self->image->ysize,
|
||||||
|
"palette", self->image->palette,
|
||||||
|
"image8", self->image->image8,
|
||||||
|
"image32", self->image->image32,
|
||||||
|
"image", self->image->image,
|
||||||
|
"block", self->image->block,
|
||||||
|
"pixelsize", self->image->pixelsize,
|
||||||
|
"linesize", self->image->linesize,
|
||||||
|
"destroy", self->image->destroy
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
static struct PyGetSetDef getsetters[] = {
|
static struct PyGetSetDef getsetters[] = {
|
||||||
{ "mode", (getter) _getattr_mode },
|
{ "mode", (getter) _getattr_mode },
|
||||||
{ "size", (getter) _getattr_size },
|
{ "size", (getter) _getattr_size },
|
||||||
{ "bands", (getter) _getattr_bands },
|
{ "bands", (getter) _getattr_bands },
|
||||||
{ "id", (getter) _getattr_id },
|
{ "id", (getter) _getattr_id },
|
||||||
{ "ptr", (getter) _getattr_ptr },
|
{ "ptr", (getter) _getattr_ptr },
|
||||||
|
{ "unsafe_ptrs", (getter) _getattr_unsafe_ptrs },
|
||||||
{ NULL }
|
{ NULL }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
26
_imagingft.c
26
_imagingft.c
|
@ -73,6 +73,7 @@ static FT_Library library;
|
||||||
typedef struct {
|
typedef struct {
|
||||||
PyObject_HEAD
|
PyObject_HEAD
|
||||||
FT_Face face;
|
FT_Face face;
|
||||||
|
unsigned char *font_bytes;
|
||||||
} FontObject;
|
} FontObject;
|
||||||
|
|
||||||
static PyTypeObject Font_Type;
|
static PyTypeObject Font_Type;
|
||||||
|
@ -101,7 +102,7 @@ getfont(PyObject* self_, PyObject* args, PyObject* kw)
|
||||||
/* create a font object from a file name and a size (in pixels) */
|
/* create a font object from a file name and a size (in pixels) */
|
||||||
|
|
||||||
FontObject* self;
|
FontObject* self;
|
||||||
int error;
|
int error = 0;
|
||||||
|
|
||||||
char* filename = NULL;
|
char* filename = NULL;
|
||||||
int size;
|
int size;
|
||||||
|
@ -120,11 +121,13 @@ getfont(PyObject* self_, PyObject* args, PyObject* kw)
|
||||||
);
|
);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!PyArg_ParseTupleAndKeywords(args, kw, "eti|iss#", kwlist,
|
if (!PyArg_ParseTupleAndKeywords(args, kw, "eti|iss#", kwlist,
|
||||||
Py_FileSystemDefaultEncoding, &filename,
|
Py_FileSystemDefaultEncoding, &filename,
|
||||||
&size, &index, &encoding, &font_bytes,
|
&size, &index, &encoding, &font_bytes,
|
||||||
&font_bytes_size))
|
&font_bytes_size)) {
|
||||||
return NULL;
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
self = PyObject_New(FontObject, &Font_Type);
|
self = PyObject_New(FontObject, &Font_Type);
|
||||||
if (!self) {
|
if (!self) {
|
||||||
|
@ -134,9 +137,20 @@ getfont(PyObject* self_, PyObject* args, PyObject* kw)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (filename && font_bytes_size <= 0) {
|
if (filename && font_bytes_size <= 0) {
|
||||||
|
self->font_bytes = NULL;
|
||||||
error = FT_New_Face(library, filename, index, &self->face);
|
error = FT_New_Face(library, filename, index, &self->face);
|
||||||
} else {
|
} else {
|
||||||
error = FT_New_Memory_Face(library, (FT_Byte*)font_bytes, font_bytes_size, index, &self->face);
|
/* need to have allocated storage for font_bytes for the life of the object.*/
|
||||||
|
/* Don't free this before FT_Done_Face */
|
||||||
|
self->font_bytes = PyMem_Malloc(font_bytes_size);
|
||||||
|
if (!self->font_bytes) {
|
||||||
|
error = 65; // Out of Memory in Freetype.
|
||||||
|
}
|
||||||
|
if (!error) {
|
||||||
|
memcpy(self->font_bytes, font_bytes, (size_t)font_bytes_size);
|
||||||
|
error = FT_New_Memory_Face(library, (FT_Byte*)self->font_bytes,
|
||||||
|
font_bytes_size, index, &self->face);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!error)
|
if (!error)
|
||||||
|
@ -152,6 +166,9 @@ getfont(PyObject* self_, PyObject* args, PyObject* kw)
|
||||||
PyMem_Free(filename);
|
PyMem_Free(filename);
|
||||||
|
|
||||||
if (error) {
|
if (error) {
|
||||||
|
if (self->font_bytes) {
|
||||||
|
PyMem_Free(self->font_bytes);
|
||||||
|
}
|
||||||
PyObject_Del(self);
|
PyObject_Del(self);
|
||||||
return geterror(error);
|
return geterror(error);
|
||||||
}
|
}
|
||||||
|
@ -435,6 +452,9 @@ static void
|
||||||
font_dealloc(FontObject* self)
|
font_dealloc(FontObject* self)
|
||||||
{
|
{
|
||||||
FT_Done_Face(self->face);
|
FT_Done_Face(self->face);
|
||||||
|
if (self->font_bytes) {
|
||||||
|
PyMem_Free(self->font_bytes);
|
||||||
|
}
|
||||||
PyObject_Del(self);
|
PyObject_Del(self);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -188,19 +188,25 @@ current versions of Linux, OS X, and Windows.
|
||||||
+----------------------------------+-------------+------------------------------+------------------------------+-----------------------+
|
+----------------------------------+-------------+------------------------------+------------------------------+-----------------------+
|
||||||
|**Operating system** |**Supported**|**Tested Python versions** |**Tested Pillow versions** |**Tested processors** |
|
|**Operating system** |**Supported**|**Tested Python versions** |**Tested Pillow versions** |**Tested processors** |
|
||||||
+----------------------------------+-------------+------------------------------+------------------------------+-----------------------+
|
+----------------------------------+-------------+------------------------------+------------------------------+-----------------------+
|
||||||
| CentOS 6.3 |Yes | 2.7,3.3 | |x86 |
|
|
||||||
+----------------------------------+-------------+------------------------------+------------------------------+-----------------------+
|
|
||||||
| Mac OS X 10.8 Mountain Lion |Yes | 2.6,2.7,3.2,3.3 | |x86-64 |
|
| Mac OS X 10.8 Mountain Lion |Yes | 2.6,2.7,3.2,3.3 | |x86-64 |
|
||||||
+----------------------------------+-------------+------------------------------+------------------------------+-----------------------+
|
+----------------------------------+-------------+------------------------------+------------------------------+-----------------------+
|
||||||
| Mac OS X 10.7 Lion |Yes | 2.6,2.7,3.2,3.3 | 2.2.0 |x86-64 |
|
| Mac OS X 10.7 Lion |Yes | 2.6,2.7,3.2,3.3 | 2.2.0 |x86-64 |
|
||||||
+----------------------------------+-------------+------------------------------+------------------------------+-----------------------+
|
+----------------------------------+-------------+------------------------------+------------------------------+-----------------------+
|
||||||
| Redhat Linux 6 |Yes | 2.6 | |x86 |
|
| Redhat Linux 6 |Yes | 2.6 | |x86 |
|
||||||
+----------------------------------+-------------+------------------------------+------------------------------+-----------------------+
|
+----------------------------------+-------------+------------------------------+------------------------------+-----------------------+
|
||||||
| Ubuntu Linux 10.04 LTS |Yes | 2.6 | 2.2.0 |x86,x86-64 |
|
| CentOS 6.3 |Yes | 2.7,3.3 | |x86 |
|
||||||
+----------------------------------+-------------+------------------------------+------------------------------+-----------------------+
|
+----------------------------------+-------------+------------------------------+------------------------------+-----------------------+
|
||||||
| Ubuntu Linux 12.04 LTS |Yes | 2.6,2.7,3.2,3.3,PyPy2.1 | 2.2.0 |x86,x86-64 |
|
| Fedora 20 |Yes | 2.7,3.3 | 2.3.0 |x86-64 |
|
||||||
+----------------------------------+-------------+------------------------------+------------------------------+-----------------------+
|
+----------------------------------+-------------+------------------------------+------------------------------+-----------------------+
|
||||||
| Raspian Wheezy |Yes | 2.7,3.2 | 2.2.0 |arm |
|
| Ubuntu Linux 10.04 LTS |Yes | 2.6 | 2.3.0 |x86,x86-64 |
|
||||||
|
+----------------------------------+-------------+------------------------------+------------------------------+-----------------------+
|
||||||
|
| Ubuntu Linux 12.04 LTS |Yes | 2.6,2.7,3.2,3.3,PyPy2.1 | 2.3.0 |x86,x86-64 |
|
||||||
|
| | | | | |
|
||||||
|
| | | 2.7,3.2 | 2.3.0 |ppc |
|
||||||
|
+----------------------------------+-------------+------------------------------+------------------------------+-----------------------+
|
||||||
|
| Ubuntu Linux 13.10 |Yes | 2.7,3.2,3.3 | 2.3.0 |x86 |
|
||||||
|
+----------------------------------+-------------+------------------------------+------------------------------+-----------------------+
|
||||||
|
| Raspian Wheezy |Yes | 2.7,3.2 | 2.3.0 |arm |
|
||||||
+----------------------------------+-------------+------------------------------+------------------------------+-----------------------+
|
+----------------------------------+-------------+------------------------------+------------------------------+-----------------------+
|
||||||
| Gentoo Linux |Yes | 2.7,3.2 | 2.1.0 |x86-64 |
|
| Gentoo Linux |Yes | 2.7,3.2 | 2.1.0 |x86-64 |
|
||||||
+----------------------------------+-------------+------------------------------+------------------------------+-----------------------+
|
+----------------------------------+-------------+------------------------------+------------------------------+-----------------------+
|
||||||
|
|
|
@ -94,11 +94,11 @@ static void
|
||||||
get_pixel_16L(Imaging im, int x, int y, void* color)
|
get_pixel_16L(Imaging im, int x, int y, void* color)
|
||||||
{
|
{
|
||||||
UINT8* in = (UINT8*) &im->image[y][x+x];
|
UINT8* in = (UINT8*) &im->image[y][x+x];
|
||||||
INT16* out = color;
|
UINT16* out = color;
|
||||||
#ifdef WORDS_BIGENDIAN
|
#ifdef WORDS_BIGENDIAN
|
||||||
out[0] = in[0] + (in[1]<<8);
|
out[0] = in[0] + (in[1]<<8);
|
||||||
#else
|
#else
|
||||||
out[0] = *(INT16*) in;
|
out[0] = *(UINT16*) in;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -106,9 +106,9 @@ static void
|
||||||
get_pixel_16B(Imaging im, int x, int y, void* color)
|
get_pixel_16B(Imaging im, int x, int y, void* color)
|
||||||
{
|
{
|
||||||
UINT8* in = (UINT8*) &im->image[y][x+x];
|
UINT8* in = (UINT8*) &im->image[y][x+x];
|
||||||
INT16* out = color;
|
UINT16* out = color;
|
||||||
#ifdef WORDS_BIGENDIAN
|
#ifdef WORDS_BIGENDIAN
|
||||||
out[0] = *(INT16*) in;
|
out[0] = *(UINT16*) in;
|
||||||
#else
|
#else
|
||||||
out[0] = in[1] + (in[0]<<8);
|
out[0] = in[1] + (in[0]<<8);
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue
Block a user