本文整理汇总了Python中models.Images.width方法的典型用法代码示例。如果您正苦于以下问题:Python Images.width方法的具体用法?Python Images.width怎么用?Python Images.width使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类models.Images
的用法示例。
在下文中一共展示了Images.width方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: AddImageByUrl
# 需要导入模块: from models import Images [as 别名]
# 或者: from models.Images import width [as 别名]
def AddImageByUrl(url,fileName,tag):
result = urlfetch.fetch(url)
if result.status_code == 200:
name = fileName
mtype = result.headers.get('Content-Type', '')
bits = result.content
gf=GaeFile()
gf.open(name,mtype);
gf.write(bits)
id=gf.close()
image=Images(description="/media/?key="+str(id))
image.mime=result.headers.get('Content-Type', '')
image.filetype=image.mime
# if image.mime.find('image')==-1:
# return None
image.size=len(bits)
image.width=-1;
image.height=-1;
# image.name=fileName
# image.filetype,image.width,image.height=getImageInfo(image.bf)
image.tag=tag.split(',')
image.put()
AddTags(image.tag)
return image
else:
return None