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

iOS アプリのアイコン用の様々なサイズの画像を作成する方法

Posted at

Mac では、 sips コマンドを利用することで、画像のサイズを簡単に変更することができます。

#!/bin/sh
################################################################################
# This script creates app icons in many sizes for iOS app.
################################################################################

ORIGINAL_IMAGE=~/Desktop/1024.png

for i in 29 58 80 87 120 152
do
  sips -z $i $i ${ORIGINAL_IMAGE} -o ~/Desktop/${i}.png
done
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?