显示网页内 gif 图像的第一帧
我有一个显示 .gif
图像的网页,我只想显示 .gif
的第一帧(没有动画),并且没有静态版本它的。
这可能吗?
更新:
我想在客户端进行此操作。我无权访问服务器(即)服务器为我提供 .gif
图像,并且我想在网页上显示第一帧。也许有一个使用 javascript 或 css 的解决方案。
I have a web page that displays .gif
images, I want to display only the first frame of the .gif
(without animation) and I don't have a still version of it.
Is this possible?
UPDATE :
I want to make this on the client side. I don't have access to server (i.e) the server gives me .gif
images and I want to display the first frame on my web page. Maybe there is a solution using javascript or css.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您也许可以使用 Boldewyn 在评论中指出的 JavaScript 画布。
如果这不起作用,我想你将不得不在服务器端进行。可以执行此操作的工具之一是 ImageMagick。但是,它需要存在于您的服务器上,并且 PHP 需要能够访问它。
命令行用法:
我确信 PHP 的 ImageMagick 扩展也可以做到这一点。
You may be able to use a JavaScript canvas as pointed out by Boldewyn in comments.
If that doesn't work out, I think you will have to do it server side. One tool that can do this is ImageMagick. However, that needs to be present on your server and PHP needs to be able to access it.
Command line usage:
I'm sure PHP's ImageMagick extension can do this as well.