1 Star 0 Fork 0

bluesubmarine/wxCustomControls

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
convert-single-file.sh 793 Bytes
一键复制 编辑 原始数据 按行查看 历史
Eran Ifrah 提交于 2018-08-31 16:26 . Added bitmaps
#!/bin/sh
## 16x16 version
files=`ls $@`
mkdir -p bitmaps
for file in $files
do
filename="${file%.*}"
inkscape $file --without-gui --export-png=bitmaps/16-${filename}.png --export-width=16 --export-height=16
## 16x16 version (hi-res)
inkscape $file --without-gui --export-png=bitmaps/16-${filename}@2x.png --export-width=32 --export-height=32
## 24x24 version
inkscape $file --without-gui --export-png=bitmaps/24-${filename}.png --export-width=24 --export-height=24
## 24x24 version (hi-res)
inkscape $file --without-gui --export-png=bitmaps/24-${filename}@2x.png --export-width=48 --export-height=48
done
cd bitmaps
##
## Create a zip file named codelite-bitmaps.zip
##
#rm -f ../Runtime/codelite-bitmaps.zip
#zip ../Runtime/codelite-bitmaps.zip *.png
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/lukeson/wxCustomControls.git
git@gitee.com:lukeson/wxCustomControls.git
lukeson
wxCustomControls
wxCustomControls
master

搜索帮助