У меня есть сценарий PHP, который должен создать правильный файл изображения на стороне сервера. Следующий код работает нормально:
$filename = $_GET['filename'];
// Only proceed if we got valid input
if ($filename !== null) {
echo "$filename is not null.";
$image = @imagecreatetruecolor(10, 10)
or die('Cannot Initialize new GD image stream');
if (strpos($image, '/gif') !== false) {
$image_type = "GIF";
header('Content-Type: image/gif');
$successful = imagegif($image, "./$filename");
} else if (strpos($image, '/jpeg') !== false) {
$image_type = "JPG";
header('Content-Type: image/jpeg');
$successful = imagejpeg($image, "./$filename");
} else if (strpos($image, '/png') !== false) {
$image_type = "PNG";
header('Content-Type: image/png');
$successful = imagepng($image, "./$filename");
}
if ($successful) {
echo "Image written to '$filename'.";
} else {
echo "Could not write $image_type image to '$filename'.";
}
imagedestroy($image);
echo "image destroyed.";
} else {
echo "$filename is null.";
}
Это отлично работает & изображение с $ filename будет создано. Но на самом деле я должен получить не только имя файла, но и изображение. Итак, настоящий код
$filename = $_GET['filename'];
$image = $_GET['image'];
echo "file $filename = '$image'.";
// Only proceed if we got valid input
if ($filename !== null) {
echo "$filename is not null.";
if (strpos($image, '/gif') !== false) {
$image_type = "GIF";
header('Content-Type: image/gif');
$successful = imagegif($image, "./$filename");
} else if (strpos($image, '/jpeg') !== false) {
$image_type = "JPG";
header('Content-Type: image/jpeg');
$successful = imagejpeg($image, "./$filename");
} else if (strpos($image, '/png') !== false) {
$image_type = "PNG";
header('Content-Type: image/png');
$successful = imagepng($image, "./$filename");
}
if ($successful) {
echo "Image written to '$filename'.";
} else {
echo "Could not write $image_type image to '$filename'.";
}
imagedestroy($image);
echo "image destroyed.";
} else {
echo "$filename is null.";
}
Это не работает, и результат
file t.png = 'data:image/jpeg;base64,/9j/4AAQSkZJ … qA/Cz//Z'.t.png is not null.Image written to 't.png'.image destroyed.
Как я могу создать из строки ‘data: image / jpeg…’ допустимое изображение в PHP?
РЕДАКТИРОВАТЬ 1: Я добавил одну строку в код выше, чтобы увидеть, что это не является возможным дубликатом Другой вопрос:
// Only proceed if we got valid input
if ($filename !== null) {
echo "$filename is not null.";
$image = base64_decode($image); // <<<<
РЕДАКТИРОВАТЬ 2: Я изменил код так, чтобы файл был удален:
$filename = $_GET['filename'];
$image = $_GET['image'];
// Only proceed if we got valid input
if ($filename !== null) {
echo "$filename is not null.";
$image = base64_decode($image);
$slash1 = strpos($image, '/');
$image_type = substr($image, $slash1, strpos($image, ';') - $slash1);
if (file_exists($filename)) unlink($filename);
header('Content-Type: image/' . $image_type);
switch ($image_type) {
case "gif":
$successful = imagegif($image, "./$filename");
break;
case "jpeg":
case "jpg":
$successful = imagejpeg($image, "./$filename");
break;
case "png":
$successful = imagepng($image, "./$filename");
break;
}
if ($successful) {
echo "Image written to '$filename'.";
} else {
echo "Could not write $image_type image to '$filename'.";
}
imagedestroy($image);
echo "image destroyed.";
} else {
echo "$filename is null.";
}
Но все же я получаю ответ Could not write image to 't.jpg'
,
РЕДАКТИРОВАТЬ 3: Вот что я передаю двум параметрам:
?filename=t.jpg&image=data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD/4QAiRXhpZgAATU0AKgAAAAgAAQESAAMAAAABAAEAAAAAAAD/7AARRHVja3kAAQAEAAAAPAAA/+0ALFBob3Rvc2hvcCAzLjAAOEJJTQQlAAAAAAAQAAAAAAAAAAAAAAAAAAAAAP/bAEMAAgEBAgEBAgICAgICAgIDBQMDAwMDBgQEAwUHBgcHBwYHBwgJCwkICAoIBwcKDQoKCwwMDAwHCQ4PDQwOCwwMDP/bAEMBAgICAwMDBgMDBgwIBwgMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDP/AABEIAAEAAQMBIgACEQEDEQH/xAAfAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgv/xAC1EAACAQMDAgQDBQUEBAAAAX0BAgMABBEFEiExQQYTUWEHInEUMoGRoQgjQrHBFVLR8CQzYnKCCQoWFxgZGiUmJygpKjQ1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4eLj5OXm5+jp6vHy8/T19vf4+fr/xAAfAQADAQEBAQEBAQEBAAAAAAAAAQIDBAUGBwgJCgv/xAC1EQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4+Tl5ufo6ery8/T19vf4+fr/2gAMAwEAAhEDEQA/APA6KKK/qA/Cz//Z
РЕДАКТИРОВАТЬ 4: Изменен код в соответствии с предложениями @ delboy1978uk. Кроме того, это не правильно, что прошло имя файла включает в себя расширение файла изображения, так как оно всегда должно соответствовать типу изображения:
$filename = $_GET['filename'];
$image = $_GET['image'];
echo "file $filename = '$image'.";
// Only proceed if we got valid input
if ($filename !== null) {
$slash = strpos($image, '/') + 1;
$image_type = substr($image, $slash, strpos($image, ';') - $slash);
$comma = strpos($image, ',') + 1;
$image = substr($image, $comma);
$decoded_image = base64_decode($image);
$image = imagecreatefromstring($decoded_image);
echo "The image type is '$image_type'.";
if (file_exists($filename)) {
unlink($filename);
echo "Deleted file '$filename'.";
}
header('Content-Type: image/' . $image_type);
$filename .= '.' . $image_type;
switch ($image_type) {
case "gif":
$successful = imagegif($image, "./$filename");
break;
case "jpeg":
case "jpg":
$successful = imagejpeg($image, "./$filename");
break;
case "png":
$successful = imagepng($image, "./$filename");
break;
}
if ($successful) {
echo "Image written to '$filename'.";
} else {
echo "Could not write $image_type image to '$filename'.";
}
if (imagedestroy($image) === true) {
echo "Image destroyed.";
}
} else {
echo "$filename is null.";
}
Вы пытаетесь отправить заголовки на страницу, на которую вы уже отправили вывод.
Если вы загружаете из файла, вам нужно использовать imagecreatefromjpeg()
и эквиваленты GIF и PNG. http://php.net/manual/en/function.imagecreatefromjpeg.php
$img = imagecreatefromjpeg($file);
Чтобы получить реальные строковые данные, чтобы буквально эхо в вашем <image>
тег, используйте буферизацию вывода:
ob_start();
imagejpeg($img)
$image = ob_get_clean();
echo '<img src="data:image/jpeg;base64,' . base64_encode( $i ).'" />';
Если вам интересно, я сделал класс Image несколько лет назад, который занимается этим, см. Здесь https://github.com/delboy1978uk/image/blob/master/src/Image.php и блог об этом https://delboy1978uk.wordpress.com/2014/12/01/outputting-images-as-base64-encoded-strings/
Проблема решена!! Вот код, который получает изображение из кэша браузера & отправляет его на запрошенный сервер. Возвращая изображение с сервера, получается то же самое изображение. Сначала код JavaScript:
[…]
var parameters = {
[…],
headerImageLocation: '',
image: new Image(),
[…],
};
if (strings.hasMinimalLength(blobURL, 9)) {
this.getBlobFromURL(blobURL).then(this.fromBlobToBase64).then(function(result) {
parameters['image'].src = result;
parameters['headerImageLocation'] = './' + strings.generateID();
server.continueWithNewsTicker(parameters);
});
} else {
this.continueWithNewsTicker(parameters);
}
// Prototype "MainServer":
MainServer.method('continueWithNewsTicker', function(parameters) {
var url = server.ServiceTest + 'saveHeaderImage.php';
if (strings.hasMinimalLength(parameters['headerImageLocation'], 1)) {
var formData = new FormData();
formData.append('filename', parameters['headerImageLocation']);
formData.append('image', parameters['image'].src);
this.uploadFile(formData, url);
}
[…]
});
// Prototype "Server":
Server.method('uploadFile', function (data, url) {
var xhr = new XMLHttpRequest(); // AJAX request
xhr.open('POST', url);
xhr.send(data);
});
// Prototype "Strings":
Strings.method('generateID', function () {
function s4() {
return Math.floor((1 + Math.random())*0x10000)
.toString(16)
.substring(1);
}
return s4() + s4() + '-' + s4() + '-' + s4() + '-' +
s4() + '-' + s4() + s4() + s4();
});
Для тех, кто заинтересован, код PHP выглядит следующим образом:
ini_set('display_errors', 1);
error_reporting(E_ALL);
// Get the input data safely
$filename = $_POST['filename'];
$image = $_POST['image'];
// Only proceed if we got valid input
if ($filename !== null) {
// Prepare to remove "header" information:
$comma = strpos($image, ',') + 1;
$slash = strpos($image, '/') + 1;
// The image type will also determine the file extension
$image_type = substr($image, $slash, strpos($image, ';') - $slash);
// Remove "header" information from rest of image:
$image = substr($image, $comma);
$decoded_image = base64_decode($image);
$filename .= '.' . $image_type;
if (file_exists($filename)) unlink($filename);
$successful = file_put_contents($filename, $decoded_image);
if ($successful) {
echo "Image written to '$filename'.";
} else {
echo "Could not write $image_type image to '$filename'.";
}
} else {
echo "$filename is null.";
}