Изменить размер изображения из base64_encode

Размер моего файла изображения составляет 800×600, и я хочу изменить его размер с 800×600 до 400×300, а затем сохранить оба изображения (800×600 и 400×300) в формате базы данных base64_encode. Я могу сохранить в базе данных первое изображение (800×600), но как преобразовать второе изображение (400×300) в формат base64_encode и сохранить в базе данных? Я не хочу использовать два поля ввода. Я думаю, что одного поля ввода достаточно для этого.

$image              = ($_FILES["my_image"]["name"]);
$theme_image        = ($_FILES["my_image"]["tmp_name"]);
$bin_string         = file_get_contents("$theme_image");
$theme_image_enc    = base64_encode($bin_string);

2

Решение

Вы должны сделать небольшой скрипт для создания нового изображения из первого и сделать на нем base64_encode

$WIDTH                  = 400; // The size of your new image
$HEIGHT                 = 300;  // The size of your new image
$QUALITY                = 100; //The quality of your new image
$DESTINATION_FOLDER = DependOfYourRepository; // The folder of your new image

// The directory where is your image
$filePath = DependOfYourRepository;

// This little part under depend if you wanna keep the ratio of the image or not
list($width_orig, $height_orig) = getimagesize($filePath);
$ratio_orig = $width_orig/$height_orig;
if ($WIDTH/$HEIGHT > $ratio_orig) {
$WIDTH = $HEIGHT*$ratio_orig;
} else {
$HEIGHT = $WIDTH/$ratio_orig;
}

// The function using are different for png, so it's better to check
if ($file_ext == "png") {
$image = imagecreatefrompng($filePath);
} else {
$image = imagecreatefromjpeg($filePath);
}

// I create the new image with the new dimension and maybe the new quality
$bg = imagecreatetruecolor($WIDTH, $HEIGHT);
imagefill($bg, 0, 0, imagecolorallocate($bg, 255, 255, 255));
imagealphablending($bg, TRUE);
imagecopyresampled($bg, $image, 0, 0, 0, 0, $WIDTH, $HEIGHT, $width_orig, $height_orig);
imagedestroy($image);
imagejpeg($bg, $DESTINATION_FOLDER.$filename, $QUALITY);
$bin_string_little = file_get_contents($DESTINATION_FOLDER.$filename);
// I remove the image created because you just wanna save the base64 version
unlike($DESTINATION_FOLDER.$filename);
imagedestroy($bg);
$theme_image_enc_little =  base64_encode($bin_string_little);
// And now do what you want with the result

РЕДАКТИРОВАТЬ 1

Это можно сделать без использования каталога для второго изображения, но это довольно сложно.

$theme_image_little = imagecreatefromstring(base64_decode($theme_image_enc));
$image_little = imagecreatetruecolor($WIDTH, $HEIGHT);
// $org_w and org_h depends of your image, in your case, i guess 800 and 600
imagecopyresampled($image_little, $theme_image_little, 0, 0, 0, 0, $WIDTH, $HEIGHT, $org_w, $org_h);

// Thanks to Michael Robinson
// start buffering
ob_start();
imagepng($image_little);
$contents =  ob_get_contents();
ob_end_clean();

$theme_image_enc_little = base64_encode($contents):
2

Другие решения

Других решений пока нет …

По вопросам рекламы ammmcru@yandex.ru
Adblock
detector