如何通过 PHP 在服务器端访问文件的图标?
我正在运行一个 PHP 脚本,该脚本列出了服务器上某个目录中的文件。 有什么方法可以访问文件的图标元数据吗? 我想这有很多问题(例如:取决于托管脚本的操作系统。取决于文件是否使用自定义图标。仍然需要将 icn 文件转换为可以在浏览器中显示的文件),但任何建议都是欢迎。 我想我可以根据文件扩展名显示不同的图标,但如果能自动执行就更好了。
I have a PHP script running that lists files in a certain directory on the server. Is there any way to access the file's icon metadata? Lots of issues with this I suppose (eg: depends on the OS hosting the script. depends on whether the file is using a custom icon. still have to convert the icn file to something that can be displayed in a browser) but any suggestions are welcome. I guess I could display a different icon depending on the file extension, but it would be nice to do it automatically.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以插入大多数 apache 安装为其默认目录列表设置的 /icons 文件夹。
它至少不依赖于操作系统。
您应该能够制作一个显示特定扩展程序图标的 URL。
You might be able to plug into the /icons folder that most apache installations have setup for their default directory listings.
It's not OS dependent at least.
You should be able to craft a url that displays an icon for a particular extension.
GDLib 或 ImageMagic 可能就是您正在寻找的...但是如果您想访问元数据,GDLib 将无济于事。 不确定 ImageMagic。
实际上,您可以在他们的帮助下创建缩略图并将其缓存在某处以避免性能问题。
GDLib or ImageMagic possibly is that what you are looking for... But if you want to access metadata GDLib won't help. Not sure about ImageMagic.
Actually, you can create thumbnails with their help and cache them somewhere to avoid performance issues.
如果你想从文件中提取IPTC信息,你可以使用 getimagesize 函数第五个额外参数。
If you want to extract IPTC information from file you can use getimagesize function fith extra parameter.