This repository has been archived on 2026-05-31. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
GallerySubscriber/extension/icons/README.md
T
2026-01-24 22:52:51 -05:00

41 lines
969 B
Markdown

# Extension Icons
This directory should contain PNG icons for the extension in the following sizes:
- icon-16.png (16x16 pixels)
- icon-32.png (32x32 pixels)
- icon-48.png (48x48 pixels)
- icon-128.png (128x128 pixels)
## Quick Setup
You can generate placeholder icons using any image editor or online tool.
The icons should ideally be a simple "GS" logo or download icon.
## Recommended Design
- Background: #1976d2 (primary blue)
- Foreground: White
- Style: Simple, recognizable at small sizes
- Consider a download arrow or gallery grid icon
## Generate with ImageMagick
If you have ImageMagick installed:
```bash
# Create a simple colored square as placeholder
for size in 16 32 48 128; do
convert -size ${size}x${size} xc:#1976d2 icon-${size}.png
done
```
## Generate with Python/Pillow
```python
from PIL import Image, ImageDraw
for size in [16, 32, 48, 128]:
img = Image.new('RGB', (size, size), '#1976d2')
img.save(f'icon-{size}.png')
```