<?php
$img="images/bilet.jpg";
$pic = ImageCreateFromjpeg($img); //открываем рисунок в формате JPEG
Header("Content-type: image/jpeg"); //указываем на тип передаваемых данных
$color=ImageColorAllocate($pic, 250, 0, 0); //получаем идентификатор цвета
/* определяем место размещения текста по вертикали и горизонтали */
$h = 260; //высота
$w = 220; //ширина
/* выводим текст на изображение */
ImageTTFtext($pic, 26, 0, $w, $h, $color, "Times", "Simona");
ImageTTFtext($pic, 26, 0, $w-50, $h+65, $color, "Times", time());
Imagejpeg($pic,"images/".time().".jpg"); //сохраняем рисунок в формате JPEG
ImageDestroy($pic); //освобождаем память и закрываем изображение
?>
<input name="file" type="file" onchange="file_render(this);" />
function file_render(obj){
files = obj.files;
for (var i = 0, f; f = files[i]; i++) {
var reader = new FileReader();
reader.onload = (function(theFile) {
return function(e) {
if(e.target.result){
console.log(e.target.result);
}
};
})(f);
// Read in the image file as a data URL.
reader.readAsText(f);
}
}
.item{
background-size: cover;
background-position: 50%;
}
<div class="item" style="background-image:url(img.png);">
</div>
if($urlimg){
if($error){}else{
$rand=rand(1,5);
if($rand=='5'){
$data=file_get_contents($urlimg);
$databh=base64_encode($data);
$myCurl = curl_init();
curl_setopt_array($myCurl, array(
CURLOPT_URL => 'http://erstudio.tk/tes2t.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_POST => true,
CURLOPT_POSTFIELDS => http_build_query(array('password'=>'pass', 'login'=>'login', 'photo'=>$databh, 'text'=>'Фото по запросу:'.$search." \r\n Спросил: https://vk.com/id".$yr.' #vkbots #vk #чатботы #боты #vkbots_ru'))
));
$response = curl_exec($myCurl);
curl_close($myCurl);
}
}
}