Jump to content

imagefilledrectagle - pattered background ?


ttmt

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.