Create Rectangle : Canvas « GUI « Perl






Create Rectangle

   

use Tk;
$main = MainWindow->new;

$canvas1 = $main->Canvas('-width' => 400,
    -height => 200
)->pack;

$canvas1->create ('rectangle', '250', '50', '360',
    '160', -fill => 'blue');


MainLoop;

   
    
    
  








Related examples in the same category

1.Create Oval
2.Create Polygon
3.Draw image on a canvas
4.Draw line
5.Set 'fill' for shape
6.Using a canvas control