PHP 从应用程序/八位字节流创建图像
我的应用程序正在从移动设备发送内容类型为“application/octet-stream”的图像。
我需要使用 GD 库处理这些图像,这意味着我需要能够从数据创建图像对象。
通常,我一直在使用 imagecreatefromjpeg、imagecreatefrompng、imagecreatefromgif 等来处理从 Web 表单上传的文件,但这些作为应用程序/八位字节流来找我时似乎不起作用。
关于如何实现我的目标有什么想法吗?
编辑
这是我用来创建图像标识符的代码...我的处理程序在我的网站中完美运行,我可以告诉我的网站和 iOS 数据之间的唯一区别是内容类型
public function open_image($path) {
# JPEG:
$im = @imagecreatefromjpeg($path);
if ($im !== false) { $this->image = $im; return $im; }
# GIF:
$im = @imagecreatefromgif($path);
if ($im !== false) { $this->image = $im; return $im; }
# PNG:
$im = @imagecreatefrompng($path);
if ($im !== false) { $this->image = $im; return $im; }
$this->error_messages[] = "Please make sure the image is a jpeg, a png, or a gif.";
return false;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
简单:)
具体来说:
Easy :)
Specifically:
我在 codeigniter 论坛中发现了一种更改 mime 的方法并且它有效,我想您也可以用于其他框架,这是 链接 和代码:
Fileinfo 扩展需要安装在服务器上。
这对我有用。
I found this in the codeigniter forum a way to change the mime and it works, I suppose you can use for other frameworks as well, this is the link and this the code:
Fileinfo extension needs to be installed on the server.
It worked for me.
你也可以使用这个功能。它不需要任何其他依赖项。并且也适用于其他类型。
you can use this function too. it not require any other dependency. and work perfectly for other types also.