PHP GD,imagecreatefromstring(); 如何获取图像尺寸?
通常我使用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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
imagesx()
和imagesy()
函数似乎也适用于使用imagecreatefromstring()
制作的图像。imagesx()
andimagesy()
functions seem to work with images made withimagecreatefromstring()
, too.是啊! 我刚刚在互联网上找到了答案:)
对于那些仍然感兴趣的人:
ah yes! i just found the answer on the internet a second ago :)
for those who still interested :