PHP GD,imagecreatefromstring(); 如何获取图像尺寸?

发布于 2024-07-05 23:06:26 字数 164 浏览 12 评论 0原文

通常我使用imagecreatefromjpeg(),然后使用getimagesize(),但对于 Firefox 3,我需要采用不同的方法。 所以现在我使用 imagecreatefromstring(),但是现在如何检索图像尺寸?

Normally I use imagecreatefromjpeg() and then getimagesize(), but with Firefox 3 I need to go round this different. So now im using imagecreatefromstring(), but how do I retreive the image dimensions now?

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

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

发布评论

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

评论(2

川水往事 2024-07-12 23:06:26

imagesx()imagesy() 函数似乎也适用于使用 imagecreatefromstring() 制作的图像。

imagesx() and imagesy() functions seem to work with images made with imagecreatefromstring(), too.

圈圈圆圆圈圈 2024-07-12 23:06:26

是啊! 我刚刚在互联网上找到了答案:)

对于那些仍然感兴趣的人:

$image = imagecreatefromstring($img_str);
$w = imagesx($image);
$h = imagesy($image);

ah yes! i just found the answer on the internet a second ago :)

for those who still interested :

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