本文整理汇总了Python中models.Photo.thumbnail方法的典型用法代码示例。如果您正苦于以下问题:Python Photo.thumbnail方法的具体用法?Python Photo.thumbnail怎么用?Python Photo.thumbnail使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类models.Photo
的用法示例。
在下文中一共展示了Photo.thumbnail方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: upload
# 需要导入模块: from models import Photo [as 别名]
# 或者: from models.Photo import thumbnail [as 别名]
def upload():
lightbox_id = int(request.form['lightboxId'])
lightbox = Lightbox.get_by_id(lightbox_id)
photos = []
for file in request.files.getlist('file'):
logger.debug('processing file name %s for lightbox id: %d' % (file.filename, lightbox_id))
photo = Photo()
photo.lightbox = lightbox
image_data = file.read()
photo.full_image = db.Blob(image_data)
photo.thumbnail = db.Blob(images.resize(image_data, 180, 180))
photo.owner = users.get_current_user()
photo.name = file.filename
photo.put()
photos.append(photo.key().id())
return jsonify(lightbox={"id": lightbox.key().id(), "photos": photos})
示例2: writeToDB
# 需要导入模块: from models import Photo [as 别名]
# 或者: from models.Photo import thumbnail [as 别名]
def writeToDB(photo, nickname):
newPhoto = Photo()
newPhoto.owner = nickname
newPhoto.photoid = photo.gphoto_id.text
newPhoto.thumbnail = photo.media.thumbnail[2].url
newPhoto.title = photo.title.text
try:
newPhoto.time = datetime.datetime.fromtimestamp(float(photo.exif.time.text) / 1e3)
except:
pass
try:
newPhoto.exposure = photo.exif.exposure.text
except:
pass
try:
newPhoto.focallength = photo.exif.focallength.text
except:
pass
try:
newPhoto.make = photo.exif.make.text
except:
pass
try:
newPhoto.fstop = photo.exif.fstop.text
except:
pass
try:
newPhoto.model = photo.exif.model.text
except:
pass
try:
newPhoto.flash = photo.exif.flash.text
except:
pass
try:
newPhoto.iso = photo.exif.iso.text
except:
pass
# Add to db after retrieved
newPhoto.put()
示例3: post
# 需要导入模块: from models import Photo [as 别名]
# 或者: from models.Photo import thumbnail [as 别名]
def post(self, id=None):
if id:
photo = Photo.gql("WHERE id = :1", id).get()
else:
photo = Photo(content_type="image/jpg")
date_posted = utils.strptime_for_edit(self.request.get('date_posted'))
photo.title = self.request.get('title')
photo.id = get_photo_id(date_posted, self.request.get('slug'))
photo.location = self.request.get('location')
location_slug = utils.slug(photo.location)
location = db.Query(PhotoLocation).filter("id = ", location_slug).get()
if not location:
location = PhotoLocation(id=location_slug, name=photo.location)
location.put()
photo.location_ref = location
photo.categories = self.request.get('categories')
photo.categories_ref = []
for category_name in photo.categories.split(","):
category_name = category_name.strip()
category_slug = utils.slug(category_name)
category = db.Query(PhotoCategory).filter("id = ", category_slug).get()
if not category:
category = PhotoCategory(id=category_slug, name=category_name)
category.put()
photo.categories_ref.append(category.key())
photo.description = self.request.get('description')
photo.date_posted = date_posted
if self.request.get('file'):
photo.file = db.Blob(self.request.get('file'))
photo.thumbnail = images.resize(photo.file, 128, 128)
photo.put()
self.redirect(photo.get_url())