LoginSignup
18
18

More than 5 years have passed since last update.

ImageMagickでドット絵を整数倍にするワンライナー

Last updated at Posted at 2014-05-12

最初に言っておきます。

ImageMagick入っている前提です!!

48x48のドット絵(sanae_48x48.png)を2倍の96x96のドット絵にする場合です。
(Photoshopのニアレストネイバー法みたいな感じの拡大ができます!)

scale='2'; filename='sanae_48x48.png'; converted_filename='sanae_96x96.png'; converted_width=`expr \`identify -format "%w" $filename\` \* $scale`; `convert -filter box -resize $converted_width -verbose $filename $converted_filename` 


変換前(48x48のドット絵)
sanae_48x48.png

変換後(96x96のドット絵)
sanae_96x96.png

入力によって変更する必要がある値は以下の3つです。

scale(整数倍)
filename(拡大前のファイル名)
converted_filename(拡大後のファイル名)
18
18
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
18
18