ooo-thumbnailer 如何工作?

ooo-thumbnailer 如何工作?

该程序ooo-thumbnailer无法运行。我已从上面的 ppa 安装了它,并重新启动了 nautilus,但还是没有创建任何缩略图。

当我ooo-thumbnailer从命令行调用时,我生成以下内容:

convert convert: Improper image header (/tmp/gmJ6Jks5).

这是与 imagemagick convert 实用程序有关的事情。我已经安装了该graphics-imagemagick-compat软件包,但我也尝试用该imagemagick软件包替换它。在这种情况下ooo-thumbnailer仍然不起作用,但错误代码不同(我现在记不清了)。

我也尝试过从源代码进行编译,ooo-thumbnailerimagemagick没有成功。

谁知道可能是什么问题?

系统:Ubuntu 12.04,Ubuntu 14.04,Ubuntu 16.04

答案1

我刚刚发现这是由于“ooo-thumbnailer”软件包中的一个小错误造成的。在发布新版本之前,我设法通过以下方式再次显示缩略图:

1)以root身份创建一个新的(纯文本)文件,该文件缺少:

/usr/share/thumbnailers/ooo.thumbnailer

2)使用文本编辑器(例如 gedit 或 medit)打开此新文件并粘贴以下文本:

[Thumbnailer Entry]

TryExec=ooo-thumbnailer
Exec=/usr/bin/ooo-thumbnailer %i %o %s
MimeType=application/vnd.oasis.opendocument.graphics;application/vnd.oasis.opendocument.presentation;application/vnd.oasis.opendocument.spreadsheet;application/vnd.oasis.opendocument.text;

3)保存此文件并在用户终端中使用此命令重新启动 Nautilus:

nautilus -q

现在您应该已经为所有支持的文件类型(如 ODT 等)生成并显示缩略图……

相关内容