Файл: xfoto/load.php
Строк: 18
<?php
$font='Turtles.ttf';
include'config.php';
$id=$_GET['id'];
if(isset($id)){
header("Content-type: image/jpeg");
header("Content-type: application/jpeg");
$url='http://pron.mobik.ru./foto'.$id;
$path=pathinfo($url);
$save=str_replace('','',$path['basename']);
$save=$sait.$save;
header('Content-Disposition: attachment; filename="'.$save.'"');
$img=imagecreatefromjpeg($url);
$f=imagecolorallocate($img,250,250,250);
imagettftext($img,10,0,4,16,$f,$font,$sait);
echo imagejpeg($img); }
?>