/usr/lib/python2.7/dist-packages/DisplayCAL/embeddedimage.py is in dispcalgui 3.1.0.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 | #----------------------------------------------------------------------
# Name: wx.lib.embeddedimage
# Purpose: Defines a class used for embedding PNG images in Python
# code. The primary method of using this module is via
# the code generator in wx.tools.img2py.
#
# Author: Anthony Tuininga
#
# Created: 26-Nov-2007
# RCS-ID: $Id: embeddedimage.py 59672 2009-03-20 20:59:42Z RD $
# Copyright: (c) 2007 by Anthony Tuininga
# Licence: wxWindows license
#----------------------------------------------------------------------
import base64
import cStringIO
import wx
try:
b64decode = base64.b64decode
except AttributeError:
b64decode = base64.decodestring
class PyEmbeddedImage(object):
"""
PyEmbeddedImage is primarily intended to be used by code generated
by img2py as a means of embedding image data in a python module so
the image can be used at runtime without needing to access the
image from an image file. This makes distributing icons and such
that an application uses simpler since tools like py2exe will
automatically bundle modules that are imported, and the
application doesn't have to worry about how to locate the image
files on the user's filesystem.
The class can also be used for image data that may be acquired
from some other source at runtime, such as over the network or
from a database. In this case pass False for isBase64 (unless the
data actually is base64 encoded.) Any image type that
wx.ImageFromStream can handle should be okay.
"""
def __init__(self, data, isBase64=True):
self.data = data
self.isBase64 = isBase64
def GetBitmap(self):
return wx.BitmapFromImage(self.GetImage())
def GetData(self):
if self.isBase64:
data = b64decode(self.data)
return data
def GetIcon(self):
icon = wx.EmptyIcon()
icon.CopyFromBitmap(self.GetBitmap())
return icon
def GetImage(self):
stream = cStringIO.StringIO(self.GetData())
return wx.ImageFromStream(stream)
# added for backwards compatibility
getBitmap = GetBitmap
getData = GetData
getIcon = GetIcon
getImage = GetImage
# define properties, for convenience
Bitmap = property(GetBitmap)
Icon = property(GetIcon)
Image = property(GetImage)
|