15
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

テスト用に巨大な画像ファイルを作成する。100MB

Posted at

巨大な画像ファイルの作成方法

アプリケーションのアップロードのテストで、巨大なサイズの画像ファイルの確認が必要になりました。
そのため巨大画像ファイルが必要になったので作成してみました。
さくっとPythonで作成しました。

モジュールのインストール

pip install Pillow

コード

from PIL import Image,ImageDraw
import random

w = 10000
h = 10000

img = Image.new("RGB", (w,h), (0,0,0))
draw = ImageDraw.Draw(img)
for i in range(10000):
    draw.line((random.randint(0,w), random.randint(0,h), random.randint(0,w), random.randint(0,h)), fill=(random.randint(0,255), random.randint(0,255), random.randint(0,255)), width=1)
img.save("huge_image.jpg", quality=95)

結果

上記のコードを実行したら、103,703,135 バイトのファイルが作成できました。

15
5
3

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
15
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?