Le convert
La commande d'ImageMagick peut être utilisée :
Pour créer une image 32x32 avec un fond blanc :
convert -size 32x32 xc:white empty.jpg
Pour créer une image 32x32 avec un fond transparent :
convert -size 32x32 xc:transparent empty2.png
Vous pouvez utiliser convert -size 123x456 xc:white x.png
. convert
fait partie d'ImageMagick.
Si vous n'avez pas installé ImageMagick, vous pouvez utiliser un petit script Perl :
use GD::Simple;
my $i = GD::Simple->new(32,32);
open my $out, '>', 'empty.png' or die;
binmode $out;
print $out $i->png;
Utilisation de Python :
from PIL import Image
img = Image.new('RGB', (32,32), color='white')
img.save('empty.png')
quit()