当图像存储为字节数组时,PHP 获取图像大小
我有二进制字符串的图像。 (通过 POST 从 C# 应用程序作为字节数组提交)
我可以使用 imagecreatefromstring 函数读取它。 如何获取图像尺寸(宽度和高度)?
getimagesize 函数将文件名作为参数。 有没有可以从二进制字符串读取图像并返回图像大小的替代方案?
I have image as binary string. (submitted via POST from C# app as byte array)
I can read it using imagecreatefromstring function.
How can I get image size (width and height)?
getimagesize function takes filename as parametar.
Is there alternative that can read image from binary string and return image size?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
imagesx
和imagesy
在 gd 资源上。You can use
imagesx
andimagesy
on gd resources.尝试
imagesx();
和imagesy();
Try
imagesx();
andimagesy();