教えていただきたいこと
Djangoの本番環境において、S3にアップロードしたファイルを圧縮(サイズを小さく)したいのですが、処理方法がわかりません。
コードは下記のとおりです。
開発環境ではうまく処理されるのですが本番環境においてはAWSのS3のファイルを取得する際にエラーとなります。
下記の方法にこだわらず、本番環境での最適な処理がありましたらご教授いただきたいです。
よろしくお願い致します。
コード
python
1 file_name = xxxx.jpg 2 file_path = /xxxx/xxxxx/xxxx.jpg 3 ext = os.path.splitext(file_path)[1][1:] 4 if ext == 'jpg' or 'JPG': 5 ext = 'jpeg' 6 COMPRESS_QUALITY = 30 # 圧縮のクオリティ 7 if DEBUG: #開発環境 8 with open(file_path, 'rb') as inputfile: 9 # バイナリモードファイルをPILイメージで取得 10 im = Image.open(inputfile) 11 # 圧縮を実行 12 im_io = BytesIO() 13 im.save(im_io, ext, quality = COMPRESS_QUALITY) 14 with open(file_path, mode='wb') as outputfile: 15 # 出力ファイルに書き込み 16 outputfile.write(im_io.getvalue()) 17 else: 18 #AWS(本番環境) 19 s3 = boto3.client('s3') 20 bucket_name=env('AWS_STORAGE_BUCKET_NAME') 21 obj = s3.get_object(Bucket=bucket_name, Key=file_path) 22 file = obj['Body'].read().decode() #エラー箇所 23 with open(file, 'rb') as inputfile: 24 # バイナリモードファイルをPILイメージで取得 25 im = Image.open(inputfile) 26 # 圧縮を実行 27 im_io = BytesIO() 28 im.save(im_io, ext, quality = COMPRESS_QUALITY) 29 s3.put_object(Bucket=bucket_name, Key=file_path, Body=im_io.getvalue(),)
エラーメッセージ
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xff in position 0: invalid start byte
参考にした記事
あなたの回答
tips
プレビュー