from http://www.mail-archive.com/[email protected]/msg01357.html
I’m looking to create my own rle splash image on boot start. How I can do
this? GIMP can convert jpg or png in rle?
create a new splash.png file (using gimp or whatever)
convert it to “pnm” by using “pngtopnm”
% pngtopnm splash.png > splash.pnmconvert it to “rle” by using “ppmtolss16”
% ppmtolss16 “#000000=0” “#ffffff=7” < splash.pnm > splash.rle–
Matheus Morais wrote: