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


Python Image.DecompressionBombWarning方法代码示例

本文整理汇总了Python中PIL.Image.DecompressionBombWarning方法的典型用法代码示例。如果您正苦于以下问题:Python Image.DecompressionBombWarning方法的具体用法?Python Image.DecompressionBombWarning怎么用?Python Image.DecompressionBombWarning使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在PIL.Image的用法示例。


在下文中一共展示了Image.DecompressionBombWarning方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_crop_decompression_checks

# 需要导入模块: from PIL import Image [as 别名]
# 或者: from PIL.Image import DecompressionBombWarning [as 别名]
def test_crop_decompression_checks(self):

        im = Image.new("RGB", (100, 100))

        good_values = ((-9999, -9999, -9990, -9990),
                       (-999, -999, -990, -990))

        warning_values = ((-160, -160, 99, 99),
                          (160, 160, -99, -99))

        error_values = ((-99909, -99990, 99999, 99999),
                        (99909, 99990, -99999, -99999))

        for value in good_values:
            self.assertEqual(im.crop(value).size, (9, 9))

        for value in warning_values:
            self.assert_warning(Image.DecompressionBombWarning, im.crop, value)

        for value in error_values:
            with self.assertRaises(Image.DecompressionBombError):
                im.crop(value) 
开发者ID:holzschu,项目名称:python3_ios,代码行数:24,代码来源:test_decompression_bomb.py

示例2: test_warning

# 需要导入模块: from PIL import Image [as 别名]
# 或者: from PIL.Image import DecompressionBombWarning [as 别名]
def test_warning(self):
        # Set limit to trigger warning on the test file
        Image.MAX_IMAGE_PIXELS = 128 * 128 - 1
        self.assertEqual(Image.MAX_IMAGE_PIXELS, 128 * 128 - 1)

        self.assert_warning(Image.DecompressionBombWarning,
                            Image.open, TEST_FILE) 
开发者ID:holzschu,项目名称:python3_ios,代码行数:9,代码来源:test_decompression_bomb.py

示例3: testEnlargeCrop

# 需要导入模块: from PIL import Image [as 别名]
# 或者: from PIL.Image import DecompressionBombWarning [as 别名]
def testEnlargeCrop(self):
        # Crops can extend the extents, therefore we should have the
        # same decompression bomb warnings on them.
        box = (0, 0, self.src.width * 2, self.src.height * 2)
        self.assert_warning(Image.DecompressionBombWarning,
                            self.src.crop, box) 
开发者ID:holzschu,项目名称:python3_ios,代码行数:8,代码来源:test_decompression_bomb.py

示例4: ignore_warnings

# 需要导入模块: from PIL import Image [as 别名]
# 或者: from PIL.Image import DecompressionBombWarning [as 别名]
def ignore_warnings():
    """Sets a warning filter for pillow's annoying ``DecompressionBombWarning``
    """
    import warnings
    from PIL import Image
    warnings.simplefilter(action='ignore', category=Image.DecompressionBombWarning) 
开发者ID:OpenGeoVis,项目名称:omfvista,代码行数:8,代码来源:__init__.py


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