2009-07-25 8 views
8

Pour un projet home, j'ai besoin de tracer des coordonnées (x, y) sur un bitmap noir et blanc de 400x400.Perl: méthode recomandée pour tracer (x, y) pixels sur une image bitmap monochrome

Quel module Perl recommanderiez-vous et quel format d'image (GIF ?, PNG? Autre?) Serait le plus facile à gérer sous OS X, Windows, Linux?


EDIT Ma solution, basée sur GD, comme recommandé par Brian Agnew


use strict; 
use warnings; 
use GD; 
my $BitMap = GD::Image->new(400,400); 

my $white = $BitMap->colorAllocate(255,255,255); 
my $black = $BitMap->colorAllocate(0,0,0);  

# Frame the BitMap 
$BitMap->rectangle(0,0,399,399,$black); 
# Transparent image, white background color 
$BitMap->transparent($white); 

# plot some, just to show it works # 
for my $x (0..100) { 
    for my $y (0 .. 100) { 
     $BitMap->setPixel(250+100*sin($x)-$y,150+125*cos($x)+$y,$black); 
    } 
} 

# write png-format to file 
open my $fh,">","test.png" or die "$!"; 
binmode $fh; 
print $fh $BitMap->png; 
close($fh); 

Répondre

9

Jetez un oeil à la GD module (qui interface avec le GD library). Il rend la création de graphiques assez triviale et a un large éventail de formats de sortie, y compris PNG et GIF.

Questions connexes