本文整理汇总了Python中pgmagick.api.Image类的典型用法代码示例。如果您正苦于以下问题:Python Image类的具体用法?Python Image怎么用?Python Image使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Image类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_size_property
def test_size_property(self):
im = Image((500, 300), 'red')
self.assertEqual(im.width, 500)
self.assertEqual(im.height, 300)
im.scale(0.5)
self.assertEqual(im.width, 250)
self.assertEqual(im.height, 150)
示例2: test_fontpointsize
def test_fontpointsize(self):
img = Image((300, 200), 'red')
img.font_pointsize(60)
self.assertEqual(60, img.font_pointsize())
self.assertEqual(float, type(img.font_pointsize()))
img.annotate("hello", (100, 100))
img.write('t.png')
示例3: test_composite_arg_gravity
def test_composite_arg_gravity(self):
base = Image((300, 200), 'green')
layer = Image((150, 100), 'transparent')
drawer = Draw()
drawer.circle(50, 50, 20, 20)
layer.draw(drawer)
base.composite(layer, 'center', 'over')
base.write('t.png')
示例4: _ensure
def _ensure(id_, folderer, getter):
folder = folderer(id_)
# Create folder if it does not exists
if not os.path.exists(folder):
os.makedirs(folder)
# Download image
original = os.path.join(folder, ORIGINAL_FILENAME)
if not os.path.exists(original):
getter(original)
# Create thumbnail
thumb = os.path.join(folder, THUMBNAIL_FILENAME)
if os.path.exists(original) and not os.path.exists(thumb):
img = Image(original)
img.scale((THUMBNAIL_SIZE, THUMBNAIL_SIZE))
img.write(thumb)
示例5: __init__
def __init__( self, filename = None, color = None, *args, **kargs ):
"""
Init a adapter.
:Args:
- filename - This param is a file name or Image of pgmagick.
- Color - This is color of pgmagick.api.
"""
if isinstance( filename, OrginallyImage ):
self.__apiImage = ApiImage()
self.__apiImage.img = filename
else:
self.__apiImage = ApiImage( filename, color, args, kargs )
示例6: write
def write(self, filename):
try:
return Image.write(self, filename)
except Exception as e:
if 'Warning' not in e.message:
raise
warnings.warn(e.message, RuntimeWarning)
示例7: test_unicodefilename
def test_unicodefilename(self):
self.img.write('unicode.png')
if sys.version_info >= (3, ):
img = Image('unicode.png')
else:
img = Image(unicode('unicode.png'))
img.scale(0.5)
if sys.version_info >= (3, ):
img.write('unicode.jpg')
else:
img.write(unicode('unicode.jpg'))
示例8: test_fill_opacity
def test_fill_opacity(self):
self.im = Image((600, 400), 'transparent')
self.d.fill_color('red')
self.d.fill_opacity(0.5)
self.d.circle(150, 150, 50, 180)
self.d.fill_color('green')
self.d.fill_opacity(0.8)
self.d.circle(160, 160, 50, 180)
self.im.draw(self.d.drawer)
self.im.write('t.png')
示例9: pdf_to_images
def pdf_to_images(self, ext="jpg"):
''' PDF to images '''
assert os.path.isfile(self.data.path)
i = 0
medias = []
while Image and True:
try:
image = Image("%s[%d]" % (self.data.path, i))
image_file = os.path.join(
UPLOAD_TMP_DIR,
'pdf.%d.%d.%s' % (self.id, i, ext))
image.write(image_file)
media = MediaFile.create(
image_file, name=image_file.split('/')[-1:][0])
medias.append(media)
except Exception:
#:TODO Exception type check
break
i = i + 1
return medias
示例10: arrow
def arrow( self, background_color = "#FFFFFF", border_color = "#BBBBBB" ):
"""
Draw a arrow at icon bottom.
"""
img = self.get_api_image()
width = img.width
height = img.height
center_x = width / 2
arrow_half_width = int( center_x / 3 )
arrow_height = int( height / 7 )
bg_img = ApiImage(( width, height + arrow_height + 1 ),'transparent')
#
arrow_start_x = center_x - arrow_half_width
arrow_end_x = center_x + arrow_half_width
center_y = height + arrow_height
arrow_bg_start_point = ( arrow_start_x, height -1 )
arrow_bg_end_point = ( arrow_end_x, height - 1 )
arrow_bg_center_point = ( center_x, height + arrow_height )
draw = Draw()
draw.composite( 0, 0, width, height, img.img )
bg_img.draw( draw )
points = ( arrow_bg_start_point, arrow_bg_end_point, arrow_bg_center_point, arrow_bg_start_point )
bg_img.draw( self.__create_arrow_bg( points, background_color ) )
bg_img.draw( self.__create_arrow_border( arrow_start_x, arrow_end_x, height, arrow_height, border_color ) )
self.__apiImage = bg_img
示例11: setUp
def setUp(self):
self.im = Image((600, 400), 'red')
self.d = Draw()
示例12: DrawTestCase
class DrawTestCase(unittest.TestCase):
def setUp(self):
self.im = Image((600, 400), 'red')
self.d = Draw()
def test_affine(self):
self.d.affine(10, 10, 20, 20, 40, 40)
self.im.draw(self.d.drawer)
self.im.write('t.jpg')
def test_arc(self):
self.d.arc(30, 30, 40, 40, 40, 40)
self.im.draw(self.d.drawer)
self.im.write('t.jpg')
def test_bezier(self):
points = ((30, 30), (50, 75), (200, 100))
self.d.bezier(points)
self.im.draw(self.d.drawer)
self.im.write('t.png')
def test_circle(self):
self.d.circle(40, 40, 50, 100)
self.im.draw(self.d.drawer)
self.im.write('t.png')
def test_color(self):
self.d.color(40, 40, 'point')
self.im.draw(self.d.drawer)
self.im.write('t.png')
def test_composite(self):
img1 = Image((20, 20), 'plasma:blue')
self.d.composite(10, 10, 0, 0, img1)
self.im.draw(self.d)
self.im.write('t.png')
def test_draw_for_draw_class(self):
self.d.color(40, 40, 'point')
self.d.circle(100, 100, 50, 100)
self.im.draw(self.d)
self.im.write('t.png')
def test_ellipse(self):
self.d.ellipse(150, 150, 120, 120, 0, 120)
self.im.draw(self.d)
self.im.write('t.png')
def test_fill_color(self):
self.d.fill_color('#f09060')
self.d.ellipse(150, 150, 120, 120, 0, 120)
self.im.draw(self.d)
self.im.write('t.png')
def test_fill_rule(self):
self.d.fill_rule('evenodd')
self.d.circle(150, 150, 50, 180)
self.d.fill_rule('nonzero')
self.d.circle(350, 150, 250, 180)
self.im.draw(self.d.drawer)
self.im.write('t.png')
def test_fill_opacity(self):
self.im = Image((600, 400), 'transparent')
self.d.fill_color('red')
self.d.fill_opacity(0.5)
self.d.circle(150, 150, 50, 180)
self.d.fill_color('green')
self.d.fill_opacity(0.8)
self.d.circle(160, 160, 50, 180)
self.im.draw(self.d.drawer)
self.im.write('t.png')
def test_font_style_italic(self):
self.d.font('vera.ttf', 'italic')
self.d.text(30, 30, "hello pgmagick")
self.im.draw(self.d)
self.im.write('t.png')
def test_font_style_oblique(self):
self.d.font('vera.ttf', 'oblique')
self.d.text(30, 30, "hello pgmagick")
self.im.draw(self.d)
self.im.write('t.png')
def test_font_stretch_ultracondensed(self):
self.d.font('vera.ttf', 'oblique', stretch='ultracondensed')
self.d.text(30, 30, "hello pgmagick")
self.im.draw(self.d)
self.im.write('t.png')
def test_font_stretch_extraexpanded(self):
self.d.font('vera.ttf', 'oblique', stretch='extraexpanded')
self.d.text(30, 30, "hello pgmagick")
self.im.draw(self.d)
self.im.write('t.png')
def test_font_weight100(self):
self.d.font('vera.ttf', weight=100)
#.........这里部分代码省略.........
示例13: test_scale
def test_scale(self):
img = Image((600, 400), 'gradient:#ffffff-#000000')
img.scale(0.6)
img.write('t.jpg')
示例14: ImageTestCase
class ImageTestCase(unittest.TestCase):
def setUp(self):
self.img = Image((600, 400), 'red')
def test_unicodefilename(self):
self.img.write('unicode.png')
if sys.version_info >= (3, ):
img = Image('unicode.png')
else:
img = Image(unicode('unicode.png'))
img.scale(0.5)
if sys.version_info >= (3, ):
img.write('unicode.jpg')
else:
img.write(unicode('unicode.jpg'))
def test_nonarg(self):
im = Image()
def test_arg(self):
im = Image((600, 400), 'red')
def test_arg_float(self):
im = Image((600.5, 400.4), 'red')
def test_blur(self):
self.img.blur(2, 2.3)
self.img.write('t.jpg')
def test_blur_channel(self):
self.img.blur_channel('cyan')
self.img.write('t.jpg')
def test_scale(self):
im = Image((600, 400), 'red')
im.scale(0.6)
im.write('t.jpg')
def test_composite_arg_list(self):
base = Image((300, 200), 'green')
layer = Image((300, 200), 'transparent')
drawer = Draw()
drawer.circle(50, 50, 50, 100)
layer.draw(drawer)
base.composite(layer, (10, 10), 'over')
base.write('t.png')
def test_composite_arg_gravity(self):
base = Image((300, 200), 'green')
layer = Image((150, 100), 'transparent')
drawer = Draw()
drawer.circle(50, 50, 20, 20)
layer.draw(drawer)
base.composite(layer, 'center', 'over')
base.write('t.png')
def test_crop(self):
img = Image((300, 200), 'gradient:#ffff00-#00ffff')
img.crop(20, 20, 50, 100)
img.write('t.png')
def test_fontpointsize(self):
img = Image((300, 200), 'red')
img.font_pointsize(60)
self.assertEqual(60, img.font_pointsize())
self.assertEqual(float, type(img.font_pointsize()))
img.annotate("hello", (100, 100))
img.write('t.png')
def test_size_property(self):
im = Image((500, 300), 'red')
self.assertEqual(im.width, 500)
self.assertEqual(im.height, 300)
im.scale(0.5)
self.assertEqual(im.width, 250)
self.assertEqual(im.height, 150)
示例15: test_scale_with_filtertype
def test_scale_with_filtertype(self):
img = Image((600, 400), 'gradient:#ffffff-#000000')
img.scale(0.6, 'Catrom')
img.write('t.jpg')
m = hashlib.md5()
with open('t.jpg', 'rb') as fp:
m.update(fp.read())
scale_with_filtertype_catrom_digest = m.hexdigest()
img = Image((600, 400), 'gradient:#ffffff-#000000')
img.scale(0.6, 'Cubic')
img.write('t.jpg')
m = hashlib.md5()
with open('t.jpg', 'rb') as fp:
m.update(fp.read())
scale_with_filtertype_cubic_digest = m.hexdigest()
img = Image((600, 400), 'gradient:#ffffff-#000000')
img.scale(0.6)
img.write('t.jpg')
m = hashlib.md5()
with open('t.jpg', 'rb') as fp:
m.update(fp.read())
scale_digest = m.hexdigest()
self.assertNotEqual(scale_with_filtertype_catrom_digest, scale_digest)
self.assertNotEqual(scale_with_filtertype_catrom_digest, scale_with_filtertype_cubic_digest)