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.

[SVG] SVGOでSVGファイルのサイズを半分にする

Posted at

SVGファイルは画像をコードとして扱うことができて便利ですが、たくさん使いたい場合はファイルのサイズをできるだけ小さくしたいものです。

SVGOを使えばSVGファイルのサイズを半分にすることができます。
https://github.com/svg/svgo

手順

1. SVGOをグローバルインストール

# install
npm -g install svgo

# confirm
svgo -v

2. 小さくしたいファイルを指定してコマンドを実行

# one file
svgo one.svg two.svg -o one.min.svg two.min.svg

# directory
svgo -f ./path/to/folder/with/svg/files -o ./path/to/folder/with/svg/output
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?