调整大小后尝试以 Base64 编码图像

发布于 2024-12-05 22:35:37 字数 769 浏览 1 评论 0原文

在 php 中,我尝试在调整大小后对图像进行 base64 编码。当我直接编码而不调整大小时,它工作正常

$bitmapNode = $dom->createElement( "bitmap" );
$bitmapNode->appendChild( $dom->createTextNode(base64_encode(file_get_contents($url)))  );
$root->appendChild( $bitmapNode );

但是当我尝试在编码之前调整大小时,它不再工作,并且 xml 节点的内容为空。

$image = open_image($url);
if ($image === false) { die ('Unable to open image'); }
// Do the actual creation
$im2 = ImageCreateTrueColor($new_w, $new_h);
imagecopyResampled($im2, $image, 0, 0, 0, 0, 256, 256, imagesx($image), imagesy($image));
$bitmapNode = $dom->createElement( "bitmap" );
$bitmapNode->appendChild( $dom->createTextNode(base64_encode($im2)) );
$root->appendChild( $bitmapNode );

我做错了什么吗?

In php, I'm trying to encode an image in base64 after a resize. When I encode it directly with no resize it's working fine

$bitmapNode = $dom->createElement( "bitmap" );
$bitmapNode->appendChild( $dom->createTextNode(base64_encode(file_get_contents($url)))  );
$root->appendChild( $bitmapNode );

But when I'm trying to do a resize before the encoding it doesn't work anymore and the content of the xml node is empty.

$image = open_image($url);
if ($image === false) { die ('Unable to open image'); }
// Do the actual creation
$im2 = ImageCreateTrueColor($new_w, $new_h);
imagecopyResampled($im2, $image, 0, 0, 0, 0, 256, 256, imagesx($image), imagesy($image));
$bitmapNode = $dom->createElement( "bitmap" );
$bitmapNode->appendChild( $dom->createTextNode(base64_encode($im2)) );
$root->appendChild( $bitmapNode );

Is there something I'm doing wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

戏蝶舞 2024-12-12 22:35:37

$im2 只是一个 GD 资源句柄。它不是图像数据本身。要捕获调整大小的图像,您必须保存它,然后对保存的数据进行 base64_encode:

imagecopyresample($im2 ....);
ob_start();
imagejpeg($im2, null);
$img = ob_get_clean();
$bitmapNode->appendChild($dom->createTextNode(base64_encode($img)));

请注意输出缓冲的使用。 GD 图像函数没有直接返回结果图像数据的方法。您只能写入文件,或直接输出到浏览器。因此,使用 ob 函数可以让您捕获数据,而无需求助于临时文件。

$im2 is just a GD resource handle. it is NOT the image data itself. To capture the resized image, you'll have to save it and then base64_encode that saved data:

imagecopyresample($im2 ....);
ob_start();
imagejpeg($im2, null);
$img = ob_get_clean();
$bitmapNode->appendChild($dom->createTextNode(base64_encode($img)));

Note the use of output buffering. The GD image functions do not have a method to directly return the resulting image data. You can only write to a file, or output directly to the browser. So using the ob functions lets you capture the data without having to resort to a temporary file.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文