--- loncom/homework/randomlylabel.pm 2003/02/26 18:49:58 1.6 +++ loncom/homework/randomlylabel.pm 2003/05/13 19:08:31 1.9 @@ -2,7 +2,7 @@ # The LearningOnline Network with CAPA # randomlabel.png: composite together text and images into 1 image # -# $Id: randomlylabel.pm,v 1.6 2003/02/26 18:49:58 albertel Exp $ +# $Id: randomlylabel.pm,v 1.9 2003/05/13 19:08:31 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -50,7 +50,7 @@ sub get_image { GD::Image->trueColor(1); $image = GD::Image->new($imgsrc); } - if ($set_trans) { + if ($set_trans && defined($image)) { my $white=$image->colorExact(255,255,255); if ($white != -1) { $image->transparent($white); } } @@ -70,10 +70,18 @@ sub handler { return OK; } #binmode(STDOUT); - my $black = $image->colorAllocate(0,0,0); + my $black; + if (!($black=$image->colorResolve(0,0,0))) { + $black = $image->colorClosestHWB(0,0,0); + } for(my $i=0;$i<$ENV{"form.ICOUNT"};$i++) { my $subimage=&get_image($ENV{"form.IMG$i"},1); - $image->copy($subimage,$ENV{"form.X$i"},$ENV{"form.Y$i"}, + if (!defined($subimage)) { + &Apache::lonnet::logthis('Unable to create image object for '. + $ENV{"form.BGIMG"}); + next; + } + $image->copy($subimage,$ENV{"form.IX$i"},$ENV{"form.IY$i"}, 0,0,$subimage->getBounds()); } my $height=GD::Font->Giant->height; @@ -82,7 +90,6 @@ sub handler { $ENV{"form.LB$i"},$black); } $r->print($image->png); - &Apache::lonnet::delenv('imagerequest\.'.$token); return OK; }