4
2

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 5 years have passed since last update.

何もない画像を作る

Last updated at Posted at 2020-01-01

簡単なテキストファイルならtouchコマンドを使うことで作成できるが、画像はそのやり方を知らなかったのでメモ

空のテキストファイルを作る
touch filename.txt

TL;DR

ImageMagickを使います

背景が白の画像ファイルを作成
convert -size 128x128 xc:white output.png

背景が透明ならxc:noneにします

背景が透明の画像ファイルを作成
convert -size 128x128 xc:none output.png
4
2
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
4
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?