QuickLook 插件显示图像和一些信息

发布于 2024-09-14 14:31:55 字数 200 浏览 2 评论 0原文

我目前正在编写一个 QuickLook 插件,我想知道如何同时显示图像和有关该图像的一些信息,类似于 http://www.code-line.com/software/sneakpeekphoto/

I'm currently writing a QuickLook plugin, and I wondering how I can display an image and some information about that image at the same time, similar to http://www.code-line.com/software/sneakpeekphoto/ .

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

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

发布评论

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

评论(1

疧_╮線 2024-09-21 14:31:55

只有一种方法可以做到这一点:将您的内容转换为已支持的内容。这意味着 PDF 或 HTML。您有两个选择:

  1. 对于静态信息,您可以通过将视图渲染为 PDF 来创建简单的 PDF 预览。 (使用NSView-dataWithPDFInsideRect:方法)
  2. 对于动态信息创建一个带有链接等的HTML页面。然后 QuickLook 将显示它。 (我认为这也是您的示例的做法。)

我们还没有找到一种方法来自行创建复杂的预览,因此也必须坚持使用其中一种方法。 Keynote 和 Pages 的作用相同——它们将演示文稿转换为多页 PDF 预览...

There is only one way to do so: Convert your content to an already supported one. This means either PDF or HTML. There are two options you have:

  1. For static information you create a simple PDF preview by rendering a view into a PDF. (Use -dataWithPDFInsideRect: method of NSView)
  2. For dynamic information create a HTML page with links and so on. QuickLook will then show it. (I think this is also the way your example does it.)

We have not found a way to create complex previews on ur own and had to stick to one of the methods, too. Keynote and Pages do the same -- they convert their presentations to multi-page PDF previews...

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