Created
July 8, 2023 22:18
-
-
Save wtnabe/783d4405ce262c884521fc47a478811e to your computer and use it in GitHub Desktop.
resvgを使ってSVGからPNGを作るテンプレ
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/sh | |
SRC=$1 | |
DEST=`basename ${SRC} .svg`.png | |
resvg --dpi 350 --zoom 2 --background '#ffffff' $SRC $DEST |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment