cjk32 Wrote: 
> I'll try and do some research tommorow.

Very quick test. Coudl you try the following and see if it succeeds.

use strict;
use GD;

my $image = GD::Image->new(100, 100,1);
$image->filledRectangle(0,0,100,100,0xff0000);
$image->filledRectangle(30,30,70,70,0x0000ff);

open (MYOUTFILE, ">test.jpg");
binmode MYOUTFILE;
print MYOUTFILE $image->jpeg();
close MYOUTFILE;


-- 
cjk32
------------------------------------------------------------------------
cjk32's Profile: http://forums.slimdevices.com/member.php?userid=5151
View this thread: http://forums.slimdevices.com/showthread.php?t=23206

_______________________________________________
beta mailing list
[email protected]
http://lists.slimdevices.com/lists/listinfo/beta

Reply via email to