本文整理汇总了Python中daguerre.adjustments.Fill.adjust方法的典型用法代码示例。如果您正苦于以下问题:Python Fill.adjust方法的具体用法?Python Fill.adjust怎么用?Python Fill.adjust使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类daguerre.adjustments.Fill
的用法示例。
在下文中一共展示了Fill.adjust方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_adjust__unequal
# 需要导入模块: from daguerre.adjustments import Fill [as 别名]
# 或者: from daguerre.adjustments.Fill import adjust [as 别名]
def test_adjust__unequal(self):
im = Image.open(self._data_path('100x100.png'))
fill = Fill(width=50, height=40)
adjusted = fill.adjust(im)
self.assertEqual(adjusted.size, (50, 40))
expected = Image.open(self._data_path('50x40_fill.png'))
self.assertImageEqual(adjusted, expected)
示例2: test_adjust__max_width__smaller
# 需要导入模块: from daguerre.adjustments import Fill [as 别名]
# 或者: from daguerre.adjustments.Fill import adjust [as 别名]
def test_adjust__max_width__smaller(self):
im = Image.open(self._data_path('100x100.png'))
fill = Fill(height=100, max_width=50)
adjusted = fill.adjust(im)
self.assertEqual(adjusted.size, (50, 100))
expected = Image.open(self._data_path('50x100_crop.png'))
self.assertImageEqual(adjusted, expected)
示例3: test_adjust__max_width
# 需要导入模块: from daguerre.adjustments import Fill [as 别名]
# 或者: from daguerre.adjustments.Fill import adjust [as 别名]
def test_adjust__max_width(self):
im = Image.open(self._data_path('100x100.png'))
fill = Fill(height=50, max_width=200)
adjusted = fill.adjust(im)
self.assertEqual(adjusted.size, (50, 50))
expected = Image.open(self._data_path('50x50_fit.png'))
self.assertImageEqual(adjusted, expected)