Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```