forked from salomvary/soundcleod
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgenerate-images.js
14 lines (12 loc) · 948 Bytes
/
generate-images.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
var svg2png = require('svg2png');
svg2png('twentytwo.svg', 'twentytwo.iconset/icon_16x16.png', 1/16, function(e) {});
svg2png('twentytwo.svg', 'twentytwo.iconset/icon_16x16@2x.png', 1/8, function(e) {});
svg2png('twentytwo.svg', 'twentytwo.iconset/icon_32x32.png', 1/8, function(e) {});
svg2png('twentytwo.svg', 'twentytwo.iconset/icon_32x32@2x.png', 1/4, function(e) {});
svg2png('twentytwo.svg', 'twentytwo.iconset/icon_128x128.png', 1/2, function(e) {});
svg2png('twentytwo.svg', 'twentytwo.iconset/icon_128x128@2x.png', 1, function(e) {});
svg2png('twentytwo.svg', 'twentytwo.iconset/icon_256x256.png', 1, function(e) {});
svg2png('twentytwo.svg', 'twentytwo.iconset/icon_256x256@2x.png', 2, function(e) {});
svg2png('twentytwo.svg', 'twentytwo.iconset/icon_512x512.png', 2, function(e) {});
svg2png('twentytwo.svg', 'twentytwo.iconset/icon_512x512@2x.png', 4, function(e) {});
svg2png('background.svg', 'background.png', 1, function(e) {});