ttmt Posted November 25, 2011 Share Posted November 25, 2011 imagefilledrectagle - pattered background ? Hi All Is it possible to have a pattern as the background of image created with imagefilledrectangle. This creates a solid tray block but I want a block with a simple pattered fill. <?php header('Content-Type: image/png'); $im = imagecreatetruecolor(1020, 215); $gray = imagecolorallocate($im, 220, 220, 220); imagefilledrectangle($im, 0, 0, 1020, 214, $gray); imagepng($im); imagedestroy($im); ?> Link to comment https://forums.phpfreaks.com/topic/251778-imagefilledrectagle-pattered-background/ Share on other sites More sharing options...
sunfighter Posted November 25, 2011 Share Posted November 25, 2011 I don't do this but see if you can get help with this: http://www.docstore.mik.ua/orelly/webprog/pcook/ch15_01.htm Link to comment https://forums.phpfreaks.com/topic/251778-imagefilledrectagle-pattered-background/#findComment-1291180 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.