Earlier quoted context omitted.
> Until there're Adobe Photoshop & Illustrator for Linux There are plenty of great tools that really doesn't require these overly priced tools.
I’m not a designer, I’m a programmer, I mostly use these to export to something else, and do some minor adjustments. But on input, I always getting .psd (raster) or .ai (vector) files, created by professionals. I’ve been developing software for 17 years, and this always was the case, regardless on the industry (desktop software, embedded, videogames), regardless on target platform (PC, mobile, embedded win or linux,…
To export just use a cli program and batch that process.
Imagemagick to convert psd to png `convert file.psd[0] file.png`
Imagemagick to convert ai to png `convert test.ai -channel rgba -alpha on test.png`