- 论坛徽章:
- 0
|
我用GD绘图后,print FH $img->png将图片输出到文件,在ubuntu下是成功的,但是在windows下却无法输出图像,十分不解,用cpan上的示例代码也是一样的结果。- #!/usr/bin/perl -w
- use strict;
- use GD;
- use GD::Simple;
- # create a new image
- my $img = GD::Simple->new(400,250);
- # draw a red rectangle with blue borders
- $img->bgcolor('red');
- $img->fgcolor('blue');
- $img->rectangle(10,10,50,50);
- # draw an empty rectangle with green borders
- $img->bgcolor(undef);
- $img->fgcolor('green');
- $img->rectangle(30,30,100,100);
- # move to (80,80) and draw a green line to (100,190)
- $img->moveTo(80,80);
- $img->lineTo(100,190);
- open(FH,'>1.png') || die $!;
- # convert into png data
- print FH $img->png;
- close(FH);
复制代码 |
|