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


Python HttpResponse.content方法代码示例

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


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

示例1: resize

# 需要导入模块: from django.shortcuts import HttpResponse [as 别名]
# 或者: from django.shortcuts.HttpResponse import content [as 别名]
def resize(request, image_pk, width_str, height_str):
    db_image = Image.objects.get(pk=image_pk)
    response = HttpResponse(mimetype=db_image.content_type or 'image')
    width, height = int(width_str), int(height_str)

    if settings.ALLOW_CACHE_RESIZED_IMAGES:
        resized_path = list(os.path.splitext(db_image.file.path))
        resized_path.insert(1, '_%dx%d' % (width, height))
        resized_path = ''.join(resized_path)
        if os.path.exists(resized_path):
            response.content = file(resized_path)
            return response

    image_type = db_image.content_type.replace('image/', '').upper()
    image = PIL.Image.open(db_image.file).convert('RGBA')
    resized = image.resize((int(width), int(height)), PIL.Image.ANTIALIAS)

    if settings.ALLOW_CACHE_RESIZED_IMAGES:
        resized.save(resized_path, image_type)
    resized.save(response, image_type)
    return response
开发者ID:masterzeb,项目名称:testcase-simplestorage,代码行数:23,代码来源:views.py


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