Mon Oct 27, 2008 5:43 pm
<?php
header("Content-type: image/png");
$src_filename = "http://www.codemiles.com/logos/logo.PNG";
$src = @ImageCreateFromPng($src_filename) or die("Could not create source image");
$src_size = GetImageSize($src_filename);
$im = @ImageCreate(320, 200) or die("Could not create destination image");
$bg_color = ImageColorAllocate($im, 240, 240, 240);
$text_color = ImageColorAllocate($im, 0, 0, 0);
for($i = 0; $i < 5; $i++){
ImageCopy($im, $src, 100, $i * 25, 0, 0, $src_size[0], $src_size[1]);
}
ImagePng($im);
ImageDestroy($src);
ImageDestroy($im);
?>
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com
Powered by phpBB © phpBB Group.