调整大小后尝试以 Base64 编码图像
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
$im2
只是一个 GD 资源句柄。它不是图像数据本身。要捕获调整大小的图像,您必须保存它,然后对保存的数据进行 base64_encode:请注意输出缓冲的使用。 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: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.