gpt4 book ai didi

python-3.x - 使用 lambda 函数调整图像大小并将其从一个 s3 移动到另一个 s3

转载 作者:行者123 更新时间:2023-12-05 00:46:26 25 4
gpt4 key购买 nike

WHAT I WANT TO DO

  • 我有 3 个桶。我想在图像时触发 lambda 函数上传到bucket1。
  • lambda 函数将调整该图像的大小(500x500) 并将调整后的图像保存在 bucket2 中。
  • bucket1上的主图会备份到bucket3中。
  • 此时bucket1上的主镜像将被删除。

WHAT I HAVE DONE SO FAR

  • 编写了一个 lambda 函数,可以在存储桶中移动图像。

  • 使 S3 触发 lambda 函数

WHERE IS MY PROBLEM

  • 我正在使用 PIL 来调整图像大小。但是 PIL 模块不在 python STL 中。所以我压缩了我的代码带有站点包并且能够运行。但是错误说找不到文件。文件 key image/myimage.jpg 的示例

  • 虽然我按照教程进行操作,但如果我尝试使用 lambda 层而不是每次都压缩,似乎找不到 PIL 模块。

CODE


import boto3
import os
import sys
import uuid
from PIL import Image
import PIL.Image

s3_client = boto3.client('s3')

def resize_image(image_path, resized_path):
with Image.open(image_path) as image:
image.thumbnail((500, 500))
image.save(resized_path)

def lambda_handler(event, context):
#
# giving a key error here event['Records']
#
for record in event['Records']:
bucket = 'mahabubelahibucket1'
key = record['s3']['object']['key']
download_path = '/tmp/{}{}'.format(uuid.uuid4(), key)
upload_path = '/tmp/resized-{}'.format(key)

s3_client.download_file(bucket, key, download_path)
resize_image(download_path, upload_path)
s3_client.upload_file(upload_path, 'mahabubelahibucket2', key)

最佳答案

这是我解决问题的方法!

import boto3
import os
from PIL import Image
import pathlib
from io import BytesIO

s3 = boto3.resource('s3')

def delete_this_bucket(name):
bucket = s3.Bucket(name)
for key in bucket.objects.all():
try:
key.delete()
bucket.delete()
except Exception as e:
print("SOMETHING IS BROKEN !!")

def create_this_bucket(name, location):
try:
s3.create_bucket(
Bucket=name,
CreateBucketConfiguration={
'LocationConstraint': location
}
)
except Exception as e:
print(e)

def upload_test_images(name):
for each in os.listdir('./testimage'):
try:
file = os.path.abspath(each)
s3.Bucket(name).upload_file(file, each)
except Exception as e:
print(e)

def copy_to_other_bucket(src, des, key):
try:
copy_source = {
'Bucket': src,
'Key': key
}
bucket = s3.Bucket(des)
bucket.copy(copy_source, key)
except Exception as e:
print(e)


def resize_image(src_bucket, des_bucket):
size = 500, 500
bucket = s3.Bucket(src_bucket)
in_mem_file = BytesIO()
client = boto3.client('s3')

for obj in bucket.objects.all():
file_byte_string = client.get_object(Bucket=src_bucket, Key=obj.key)['Body'].read()
im = Image.open(BytesIO(file_byte_string))

im.thumbnail(size, Image.ANTIALIAS)
# ISSUE : https://stackoverflow.com/questions/4228530/pil-thumbnail-is-rotating-my-image
im.save(in_mem_file, format=im.format)
in_mem_file.seek(0)

response = client.put_object(
Body=in_mem_file,
Bucket=des_bucket,
Key='resized_' + obj.key
)

def lambda_handler(event, context):
bucket = s3.Bucket('myimagebucket0099')

for obj in bucket.objects.all():
copy_to_other_bucket(bucket, 'backupimagebucket0099', obj.key)

resize_image(bucket.name, 'resizedimagebucket0099')


print(bucket)

关于python-3.x - 使用 lambda 函数调整图像大小并将其从一个 s3 移动到另一个 s3,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60486873/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com