当前位置: 首页>>代码示例>>Python>>正文


Python Fill.adjust方法代码示例

本文整理汇总了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)
开发者ID:hamole,项目名称:django-daguerre,代码行数:9,代码来源:test_adjustments.py

示例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)
开发者ID:hamole,项目名称:django-daguerre,代码行数:9,代码来源:test_adjustments.py

示例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)
开发者ID:hamole,项目名称:django-daguerre,代码行数:9,代码来源:test_adjustments.py


注:本文中的daguerre.adjustments.Fill.adjust方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。