Skip to content

Latest commit

 

History

History
60 lines (43 loc) · 1.22 KB

README.md

File metadata and controls

60 lines (43 loc) · 1.22 KB

生成 flutter 结构的图片

做重复的工作是很烦人的。

Do not repeat yourself!

本工具直接将 3x 图生成到 assets 目录中。

assets 目录中包含 1x,2x, 3x 的图片,已帮你做好按 flutter 标准目录归类。

支持3倍图命名@3x.png、.png

使用

拉取项目:

git clone https://github.com/swiftdo/flutter_imges_generator.git

直接将你要生成的图片放入到该项目里面。

然后执行:

$ python3 -m venv .venv 
$ source .venv/bin/activate
$ pip install -r requirements.txt
$ python resize.py

执行完成后,会生成如下目录:

$ tree .
.
├── README.md
├── add_success.png
├── assets
│   ├── 2x
│   │   ├── add_success.png
│   │   └── limit.png
│   ├── 3x
│   │   ├── add_success.png
│   │   └── limit.png
│   ├── add_success.png
│   └── limit.png
├── [email protected]
├── requirements.txt
└── resize.py

assets 目录就是你要的文件。当然为了获得更小的资源,可以用工具 ImageOptim 批量压缩。

关于

个人博客站点:oldbird.run