pngtojpgAction()
ajaxを使用して呼び出しているコントローラーに次のコードがあります。
これを通して
$this->getRequest()->getParam('imagedata'));
ステートメント私はこのようなパターンを得ていますdata:image/jpeg;base64,/9j/4AAQSkZJR......AH9T796KtUV1HGf/Z
これはpng画像データです。
現在、次のコードを使用して、この png 画像を jpeg に変換し、dpi を 300 に増やしています。
public function pngtojpgAction()
{
//Code to convert png to jpg image
$input = imagecreatefrompng($this->getRequest()->getParam('imagedata'));
$width=imagesx($input);
$height=imagesy($input);
$output = imagecreatetruecolor($width, $height);
$white = imagecolorallocate($output, 255, 255, 255);
imagefilledrectangle($output, 0, 0, $width, $height, $white);
imagecopy($output, $input, 0, 0, 0, 0, $width, $height);
ob_start();
imagejpeg($output);
$contents = ob_get_contents();
ob_end_clean();
//echo 'data:image/jpeg;base64,'.base64_encode($contents); /*Up to here code works well*/
$jpgImage='data:image/jpeg;base64,'.base64_encode($contents);
$image = file_get_contents($jpgImage);
$image = substr_replace($image, pack("cnn", 1, 300, 300), 13, 5);
header("Content-type: image/jpeg");
header('Content-Disposition: attachment; filename="'.basename($jpgImage).'"');
echo $image;
}
これを使って
$image = substr_replace($image, pack("cnn", 1, 300, 300), 13, 5);
画像のdpiを300dpiに上げたいです。
これらのコード行を使用して画像の dpi を変更できません
$jpgImage='data:image/jpeg;base64,'.base64_encode($contents);
$image = file_get_contents($jpgImage);
$image = substr_replace($image, pack("cnn", 1, 300, 300), 13, 5);
header("Content-type: image/jpeg");
header('Content-Disposition: attachment; filename="'.basename($jpgImage).'"');
echo $image;
このリンクを参照として使用しましたPHPを使用して画像のdpiを変更する