Re: GNU GPL licensed alphabet icon set

2014-06-26 Thread Petr Pisar
On 2014-06-25, Lukas Zapletal l...@redhat.com wrote: https://github.com/lzap/foreman-dummy-icons Just a bug report. The -draw rectangle 0,0,20,20 argument is responsible for the frame at the edge of the picture. So if you paremetrized: -size ${SIZE}x${SIZE} argument, you need to change

GNU GPL licensed alphabet icon set

2014-06-25 Thread Lukas Zapletal
Hello, our project is looking for a simple GNU GPL v2 (or compatible) licensed icon set with simple icons of all latin letters. Ideally each letter in a circle or square with different background colors for each letter. Something like:

Re: GNU GPL licensed alphabet icon set

2014-06-25 Thread Miro Hrončok
Dne 25.6.2014 13:02, Lukas Zapletal napsal(a): Now, does anyone have a snippet or hack how to generate this with ImageMagick/GIMP/anything from Fedora? You could create svg with Inkscape and script it with Bash or similar, should be very easy. Let me know if you find nothing suitable and I can

Re: GNU GPL licensed alphabet icon set

2014-06-25 Thread Petr Pisar
On 2014-06-25, Lukas Zapletal l...@redhat.com wrote: our project is looking for a simple GNU GPL v2 (or compatible) licensed icon set with simple icons of all latin letters. Ideally each letter in a circle or square with different background colors for each letter. Example for A on red B on

Re: GNU GPL licensed alphabet icon set

2014-06-25 Thread Zbigniew Jędrzejewski-Szmek
On Wed, Jun 25, 2014 at 12:25:10PM +, Petr Pisar wrote: On 2014-06-25, Lukas Zapletal l...@redhat.com wrote: our project is looking for a simple GNU GPL v2 (or compatible) licensed icon set with simple icons of all latin letters. Ideally each letter in a circle or square with different

Re: GNU GPL licensed alphabet icon set

2014-06-25 Thread Lukas Zapletal
On Wed, Jun 25, 2014 at 04:54:36PM +0200, Zbigniew Jędrzejewski-Szmek wrote: COLORS=(red blue); LABELS=(A B); for N in $(seq 0 1); do convert -size 21x21 xc:${COLORS[$N]} -fill white -pointsize 21 -gravity center -draw text 0,2 '${LABELS[$N]}' -fill none -stroke white -draw rectangle 0,0