Errors:
Warning: file_get_contents(ÿØÿà) [function.file-get-contents]: failed to open stream: No such file or directory in /home/john1704/public_html/sign-generators/baseball.php on line 6
Warning: imagecreatefromstring() [function.imagecreatefromstring]: Empty string or invalid image in /home/john1704/public_html/sign-generators/baseball.php on line 7
Warning: imagecopyresampled(): supplied argument is not a valid Image resource in /home/john1704/public_html/sign-generators/baseball.php on line 11
Warning: imagestring(): supplied argument is not a valid Image resource in /home/john1704/public_html/sign-generators/baseball.php on line 12
Warning: imagepng(): supplied argument is not a valid Image resource in /home/john1704/public_html/sign-generators/baseball.php on line 13
Warning: imagedestroy(): supplied argument is not a valid Image resource in /home/john1704/public_html/sign-generators/baseball.php on line 14
Code:
<?php
Header ("Content-type: image/png");
$text = $_POST['text'];
$uploadedpic = $_FILES['picture']['tmp_name'];
$uploadedpicture= fread(fopen($uploadedpic, "r"), filesize($uploadedpic));
$uploadpicturefinale = file_get_contents($uploadedpicture);
$img_handle2 = imageCreateFromString($uploadedpicturefinale);
$img_handle1 = imageCreateFromPNG("/home/john1704/public_html/sign-generators/baseball_base.png");
$font = imageloadfont("/home/john1704/public_html/sign-generators/impact.gdf");
$color = ImageColorAllocate ($img_handle1, 255, 255, 255);
$img_handle = imagecopyresampled($img_handle1, $img_handle2, 84, 63, 84, 63, 291, 359, 400, 491);
ImageString ($img_handle, $font, 137, 27, $text, $color);
ImagePng ($img_handle);
ImageDestroy ($img_handle);
?>