The imagesetthickness() on the PHP will change the thickness of all lines on the image. Is there any way to select what line to be associated with this function? For Example in following image I would like to ONLY change the thickness of GREEN lines to 5.
<?php
$image = ImageCreate(130, 170);
$white = ImageColorAllocate($image, 255, 255, 255);
$black = ImageColorAllocate($image, 0, 0, 0);
$green = ImageColorAllocate($image, 82, 128, 8);
ImageFill($image, 0, 0, $white);
ImageSetThickness ($image , 5);
ImageLine($image,60,40,60,100,$black);
ImageLine($image,25,25,100,25,$green);
ImagePng($image, "flag.png");
ImageDestroy($image);
?>