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


Python Image.isValid方法代码示例

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


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

示例1: pgmagick_image

# 需要导入模块: from pgmagick import Image [as 别名]
# 或者: from pgmagick.Image import isValid [as 别名]
def pgmagick_image(source, **options):
    """
    Try to open the source file using pgmagick, ignoring any errors.

    """
    # Use a StringIO wrapper because if the source is an incomplete file like
    # object, PIL may have problems with it. For example, some image types
    # require tell and seek methods that are not present on all storage
    # File objects.
    #    import ipdb; ipdb.set_trace()
    if not source:
        return
    source.open()  # If tried by a previous source_generator, will be closed
    source = StringIO(source.read())
    try:
        blob = Blob(source.read())
        image = Image(blob)
    except Exception:
        logger.exception("unable to read image to create thumbnail")
        return

    if not image.isValid():
        return

    return convertGMtoPIL(image)
开发者ID:uq-eresearch,项目名称:uqam,代码行数:27,代码来源:source_generators.py

示例2: is_valid_image

# 需要导入模块: from pgmagick import Image [as 别名]
# 或者: from pgmagick.Image import isValid [as 别名]
 def is_valid_image(self, raw_data):
     blob = Blob()
     blob.update(raw_data)
     im = Image(blob)
     return im.isValid()
开发者ID:AlfiyaZi,项目名称:sorl-thumbnail,代码行数:7,代码来源:pgmagick_engine.py


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