0
0

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.

特定のファイルサイズを持つ画像ファイルを作成する

Posted at

方法

画像ファイルのExif情報に大量のテキストデータを格納し、目的のファイルサイズにする。
Exif情報をいじるには、ExifTool https://exiftool.org/ を使用する。
exiftool(-k).exe のファイル名で配布されているので、 あらかじめexiftool にリネームしておく。

環境

  • Windows 10

手順

  • 目的のファイルサイズより小さい画像ファイルを用意する
  • 追加で必要なサイズを計算する。[目的のファイルサイズ] - [画像ファイルサイズ]
  • 追加で必要なサイズのファイルサイズのファイルを作る。以下は5MBのファイルを作るコマンド。
fsutil file createnew comment.txt 5242880
  • ExifToolで作成したファイルをexif情報を追加する
.\exiftool.exe -comment<=".\comment.txt" .\test.png
0
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?