iraf-community / x11iraf

X11/GUI utilities and applications for IRAF (xgterm, ximtool, xtapemon)
https://iraf-community.github.io/x11iraf
21 stars 8 forks source link

Add Gimp sources for xgterm and ximtool icons #64

Closed olebole closed 3 weeks ago

olebole commented 5 months ago

xgterm ximtool

The sources are 512x512. They can be converted and scaled with ImageMagick:

convert XGTerm.xcf \
  -background transparent -flatten \
  -scale 128x128 \
  xgterm.png

Linux (freedesktop) wants to have icons in 16x16...512x512 as optimum.

For macOS, one needs to include a transparent border around it:

convert XGTerm.xcf \
  -background transparent -flatten \
  -bordercolor transparent -border 5% \
  -scale 128x128 \
  xgterm.png

macOS also wants to have 16x16 … 512x512 icons as optimum.