Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fwcd/appicongen
CLI tool for generating app icons for macOS, iOS, watchOS and tvOS
https://github.com/fwcd/appicongen
app-icon-generator app-icons appiconset icon-generator icons ios macos watchos xcode
Last synced: 9 days ago
JSON representation
CLI tool for generating app icons for macOS, iOS, watchOS and tvOS
- Host: GitHub
- URL: https://github.com/fwcd/appicongen
- Owner: fwcd
- License: mit
- Created: 2022-03-30T19:01:04.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-09T23:51:57.000Z (3 months ago)
- Last Synced: 2024-11-29T13:13:52.962Z (23 days ago)
- Topics: app-icon-generator, app-icons, appiconset, icon-generator, icons, ios, macos, watchos, xcode
- Language: Python
- Homepage:
- Size: 47.9 KB
- Stars: 6
- Watchers: 2
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Appicongen
[![PyPI](https://img.shields.io/pypi/v/appicongen)](https://pypi.org/project/appicongen)
[![Typecheck](https://github.com/fwcd/appicongen/actions/workflows/typecheck.yml/badge.svg)](https://github.com/fwcd/appicongen/actions/workflows/typecheck.yml)A small CLI tool for generating app icon sets for macOS, iOS and watchOS projects.
## Examples
```sh
# Generate AppIcon.appiconset from icon.png with iOS, macOS and watchOS icons
appicongen --all icon.png
``````sh
# Generate MyIcon.appiconset from icon.png with only iOS icons
appicongen --ios -o MyIcon.appiconset icon.png
``````sh
# Generate MyIcon.appiconset from icon.png with only macOS icons
# and automatically resize/mask the images to a rounded rectangle
# shape in the style of macOS Big Sur.
appicongen --macos --bigsurify -o MyIcon.appiconset icon.png
```