如何在 Php 项目中集成 iiif 图片查看器?
How to integrate iiif image viewer in Php project?
我想在我的 Codeigniter 项目中使用 iiif http://iiif.io/,但我没有找到任何有用的 link 或演示来帮助我使用这个框架。
我还计划使用 http://www.iiifhosting.com/ 来托管图像,它的演示显示它们也提供图像查看器,但我可以像 IIPMooViewer、Mirador、OpenSeadragon 或中列出的任何其他查看器一样自定义此查看器吗iiif.io 观众名单?
根据 documentation:
The IIIF [International Image Interoperability Framework] Image API specifies a web service that returns an image in response to a standard HTTP or HTTPS request. The URI can specify the region, size, rotation, quality characteristics and format of the requested image.
对于服务器,可以部署自己的服务器如Loris or IIPImage server. You can also use an hosting service such as http://www.iiifhosting.com/ .
对于客户端,可以集成一个客户端如Mirador, OpenSeadragon into your website but you can also directly use the IIIF protocol, using the URI syntax:
{scheme}://{server}{/prefix}/{identifier}/{region}/{size}/{rotation}/{quality}.{format}
我想在我的 Codeigniter 项目中使用 iiif http://iiif.io/,但我没有找到任何有用的 link 或演示来帮助我使用这个框架。
我还计划使用 http://www.iiifhosting.com/ 来托管图像,它的演示显示它们也提供图像查看器,但我可以像 IIPMooViewer、Mirador、OpenSeadragon 或中列出的任何其他查看器一样自定义此查看器吗iiif.io 观众名单?
根据 documentation:
The IIIF [International Image Interoperability Framework] Image API specifies a web service that returns an image in response to a standard HTTP or HTTPS request. The URI can specify the region, size, rotation, quality characteristics and format of the requested image.
对于服务器,可以部署自己的服务器如Loris or IIPImage server. You can also use an hosting service such as http://www.iiifhosting.com/ .
对于客户端,可以集成一个客户端如Mirador, OpenSeadragon into your website but you can also directly use the IIIF protocol, using the URI syntax:
{scheme}://{server}{/prefix}/{identifier}/{region}/{size}/{rotation}/{quality}.{format}