0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Pythonを用いて、Cloud Storageにアップロードされた画像データをCloud Functionsで読み込む

Last updated at Posted at 2025-02-11

はじめに

本記事ではGoogle Cloud(GCP)のサービスであるCloud Storageにアップロードされた画像データを、Cloud Run Functions(旧Cloud Functions、以下CF)で読み込む方法について解説します。

前提

Cloud StorageをトリガーとしたCFが作成済みであること。

画像データの読み込み

Pythonを用いて、Cloud Storageで操作(アップロードなど)された画像データを、CF上で読み込みます。

  • 画像データはバイト列として読み込んでいます
  • client_blob.download_as_bytes():コンテンツをバイト列で読み込む。download_as_string()も同じメソッドだがこちらは廃止済み
from google.cloud import storage

@functions_framework.cloud_event
def hello_gcs(cloud_event):
    data = cloud_event.data

    # 操作されたCloud Storageのバケット名とファイル名の取得
    # この箇所を指定したいバケット名・ファイル名に変更することで、指定したファイルを読み取ることも可能です
    input_bucket_name = data["bucket"]
    input_file_name = data["name"]

    # Cloud Storageクライアントのインスタンス化
    client = storage.Client()

    # バケットとBlobの取得
    client_bucket = client.bucket(input_bucket_name)
    client_blob = client_bucket.blob(input_blob_name)

    # Blobからバイト列として画像データをダウンロード
    img_bytes = client_blob.download_as_bytes()

    # 以下でデータ加工

データ加工

上記のコードの最後に、下記のコードを追加してください。

他のサーバーに送る場合

requestsなどを用いて他のサーバーに画像データを送信する場合

  • 画像データをバイト列で読み込み→base64でデコード→文字列の順で変換しています。
import base64
    
# 他のサーバーに送る場合
img_base64 = base64.b64encode(img_bytes).decode("utf-8")

Pillow(PIL)による画像処理

例:画像のリサイズ

from PIL import Image
import io

# PILで処理する場合
img = Image.open(io.BytesIO(img_bytes))

# 画像データの処理例
# 例: 画像のリサイズ
img_resized = img.resize((300, 300))

画像データの書き込み

今後記事を作成予定

参考

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?