Guest User

Untitled

a guest
Feb 20th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 0.32 KB | None | 0 0
  1. use GD::Simple;
  2. use strict;
  3.  
  4. my $gd = GD::Simple -> new(1100,1100);
  5.  
  6.     $gd -> bgcolor("transparent");
  7.     $gd -> fgcolor(undef);
  8.     $gd -> rectangle(0,0,1100,1100);
  9.     $gd -> bgcolor("white");
  10.     $gd -> fgcolor("black");
  11.     $gd -> line(50, 1050, 1050, 1050, "black");
  12.     $gd -> line(50, 1050, 50, 50, "black");
Add Comment
Please, Sign In to add comment