purupann
@purupann

Are you sure you want to delete the question?

Leaving a resolved question undeleted may help others!

python画像処理について

Q&A

Closed

python画像処理について

pythonで画像を左上から右下まで順番に特定のpx事にrgb値を
取得する方法ありませんか?

また、https://cdn2.scratch.mit.edu/get_image/user/123019673_60x60.png
このようなURLのものを読み込む方法も教えていただきたいです。

0

1Answer

以下のコードでどうでしょうか?

import requests
import io
from PIL import Image

url = 'https://cdn2.scratch.mit.edu/get_image/user/123019673_60x60.png'

#image = Image.open('sample.png')
image = Image.open(io.BytesIO(requests.get(url).content))
if image.mode != 'RGBA': image = image.convert('RGBA')
width, height = image.size

for y in range(height):
    for x in range(width):
        pixel_value = image.getpixel((x, y))
        print(f'({x}, {y}) : {pixel_value}')

1Like

Comments

  1. @purupann

    Questioner

    ばっちりです!ご回答ありがとうございます

  2. 解決であれば、当Q&Aをクローズ願います。

Your answer might help someone💌