还有哪些附加缩略图可用以及如何安装它们?

还有哪些附加缩略图可用以及如何安装它们?

问题

Ubuntu 的文件管理器Nautilus广泛支持文件预览。这些缩略图由称为缩略图程序的辅助程序处理。

Ubuntu 预装的缩略图数量有限,因此默认情况下不会呈现一些比较奇特的文件类型。

在这些情况下,我可以安装哪些额外的缩略图来激活预览?


相关问答

我如何指示 Nautilus 预先生成缩略图?


笔记

欢迎通过编辑社区 wiki 答案来为该列表做出贡献。如果您这样做,请遵循这个元讨论并使用预先存在的模式来保持答案的一致性。

答案1

一般安装说明


存储库和 PPA 中的缩略图

许多缩略图工具已预先打包,可以从软件中心或命令行轻松安装。这些缩略图工具不需要任何额外配置,在重新启动 nautilus 后即可运行。您可以使用以下方法执行此操作:

nautilus -q 

在从 PPA 安装任何内容之前,请考虑阅读以下问答:

什么是 PPA 以及如何使用它们?

PPA 可以安全地添加到我的系统中吗?需要注意哪些“危险信号”?

Ubuntu 11.04 及更高版本上的自定义缩略图脚本

存储库中没有的自定义缩略图必须手动安装。安装它们需要遵循以下步骤:

检查脚本是否列出了任何依赖项。如果有,请先安装它们。

下载脚本并使用chmod a+x filethumbnailer或使其可执行通过Nautilus

在文件系统中为所有未来的缩略图制作者指定一个文件夹,并将脚本移动到该文件夹​​中,例如

mkdir $HOME/.scripts/thumbnailers && mv filethumbnailer $HOME/.scripts/thumbnailers

接下来你必须注册你的脚本鹦鹉螺。为此,在 中创建一个缩略图条目/usr/share/thumbnailers。该条目应遵循命名方案foo.thumbnailer,其中foo是您选择的表达式(此处file):

gksudo gedit /usr/share/thumbnailers/file.thumbnailer

缩略图规格遵循以下方案:

[Thumbnailer Entry]
Exec=$HOME/.scripts/thumbnailers/file.thumbnailer %i %o %s
MimeType=application/file;

条目Exec指向您的缩略图脚本,而MimeType字段指定相关的 MimeType。可能的变量包括:

%i Input file path
%u Input file URI
%o Output file path
%s Thumbnail size (vertical)

每个脚本的规范和变量会有所不同。只需将相应文本框的内容复制并粘贴到文件中并保存即可。

重新启动 nautilus ( ) 后,缩略图程序应该可以启动并运行nautilus -q

Ubuntu 11.04 及以下版本上的自定义缩略图脚本

Ubuntu 的早期版本依赖 GConf 进行缩略图关联。请参阅这里了解更多信息。


来源

https://live.gnome.org/ThumbnailerSpec

https://bugzilla.redhat.com/show_bug.cgi?id=636819#c29

https://bugs.launchpad.net/ubuntu/+source/gnome-exe-thumbnailer/+bug/752578

http://ubuntuforums.org/showthread.php?t=1881360



按文件类型分类的缩略图


CHM 文件

概述

描述:使用此脚本,您将在 nautilus 文件管理器中获取 chm 文件的缩略图。该脚本使用 chm 文件主页中的最大图像来生成缩略图,通常这将是封面的图像。

创建者: 蒙拉夫 (http://ubuntuforums.org/showthread.php?t=1159569

依赖项sudo apt-get install python-beautifulsoup python-chm imagemagick

缩略图条目

[Thumbnailer Entry]
Exec=$HOME/.scripts/thumbnailers/chmthumbnailer %i %o %s
MimeType=application/vnd.ms-htmlhelp;application/x-chm;

脚本

#!/usr/bin/env python

import sys, os
from chm import chm
from BeautifulSoup import BeautifulSoup

class ChmThumbNailer(object):
    def __init__(self):
        self.chm = chm.CHMFile()

    def thumbnail(self, ifile, ofile, sz):

        if self.chm.LoadCHM(ifile) == 0:
            return 1

        bestname    = None
        bestsize    = 0
        base        = self.chm.home.rpartition('/')[0] + '/'
        size, data  = self.getfile(self.chm.home)

        if size > 0:
            if self.chm.home.endswith(('jpg','gif','bmp')):
                self.write(ofile, sz, data)
            else:
                soup = BeautifulSoup(data)
                imgs = soup.findAll('img')
                for img in imgs:
                    name = base + img.get("src","")
                    size, data = self.getfile(name)
                    if size > bestsize:
                        bestsize = size
                        bestname = name
                if bestname != None:
                    size, data = self.getfile(bestname)
                    if size > 0:
                        self.write(ofile, sz, data)
        self.chm.CloseCHM()

    def write(self, ofile, sz, data):
        fd = os.popen('convert - -resize %sx%s "%s"' % (sz, sz, ofile), "w")
        fd.write(data)
        fd.close()

    def getfile(self,name):
        (ret, ui) = self.chm.ResolveObject(name)
        if ret == 1:
            return (0, '')
        return self.chm.RetrieveObject(ui)

if len(sys.argv) > 3:
    chm = ChmThumbNailer()
    chm.thumbnail(sys.argv[1], sys.argv[2], sys.argv[3])

EPUB 文件

概述

描述:epub-thumbnailer 是一个简单的脚本,它尝试在 epub 文件中找到封面并为其创建缩略图。

创建者: 马里亚诺·西蒙尼 (https://github.com/marianosimone/epub-thumbnailer

依赖项:未列出,立即生效

缩略图条目

[Thumbnailer Entry]
Exec=$HOME/.scripts/thumbnailers/epubthumbnailer %i %o %s
MimeType=application/epub+zip;

脚本

#!/usr/bin/python

#  This program is free software: you can redistribute it and/or modify
#  it under the terms of the GNU General Public License as published by
#  the Free Software Foundation, either version 3 of the License, or
#  (at your option) any later version.
#
#  This program is distributed in the hope that it will be useful,
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#  GNU General Public License for more details.
#
#  You should have received a copy of the GNU General Public License
#  along with this program.  If not, see <http://www.gnu.org/licenses/>.

# Author: Mariano Simone ([email protected])
# Version: 1.0
# Name: epub-thumbnailer
# Description: An implementation of a cover thumbnailer for epub files
# Installation: see README

import zipfile
import sys
import Image
import os
import re
from xml.dom import minidom
from StringIO import StringIO

def get_cover_from_manifest(epub):
    img_ext_regex = re.compile("^.*\.(jpg|jpeg|png)$")

    # open the main container
    container = epub.open("META-INF/container.xml")
    container_root = minidom.parseString(container.read())

    # locate the rootfile
    elem = container_root.getElementsByTagName("rootfile")[0]
    rootfile_path = elem.getAttribute("full-path")

    # open the rootfile
    rootfile = epub.open(rootfile_path)
    rootfile_root = minidom.parseString(rootfile.read())

    # find the manifest element
    manifest = rootfile_root.getElementsByTagName("manifest")[0]
    for item in manifest.getElementsByTagName("item"):
        item_id = item.getAttribute("id")
        item_href = item.getAttribute("href")
        if "cover" in item_id and img_ext_regex.match(item_href.lower()):
            cover_path = os.path.join(os.path.dirname(rootfile_path), 
                                      item_href)
            return cover_path

    return None

def get_cover_by_filename(epub):
    cover_regex = re.compile(".*cover.*\.(jpg|jpeg|png)")

    for fileinfo in epub.filelist:
        if cover_regex.match(os.path.basename(fileinfo.filename).lower()):
            return fileinfo.filename

    return None

def extract_cover(cover_path):
    if cover_path:
        cover = epub.open(cover_path)
        im = Image.open(StringIO(cover.read()))
        im.thumbnail((size, size), Image.ANTIALIAS)
        im.save(output_file, "PNG")
        return True
    return False

# Which file are we working with?
input_file = sys.argv[1]
# Where do does the file have to be saved?
output_file = sys.argv[2]
# Required size?
size = int(sys.argv[3])

# An epub is just a zip
epub = zipfile.ZipFile(input_file, "r")

extraction_strategies = [get_cover_from_manifest, get_cover_by_filename]

for strategy in extraction_strategies:
    try:
        cover_path = strategy(epub)
        if extract_cover(cover_path):
            exit(0)
    except Exception as ex:
        print "Error getting cover using %s: " % strategy.__name__, ex

exit(1)

EXE 文件

概述

描述:gnome-exe-thumbnailer 是 Gnome 的缩略图程序,它将根据 Windows .exe 文件的嵌入图标和通用“Wine 程序”图标为其提供图标。如果程序具有正常执行权限,则将显示标准嵌入图标。此缩略图程序还将为 .jar、.py 和类似的可执行程序提供缩略图图标。

可用性:官方存储库

安装

sudo apt-get install gnome-exe-thumbnailer

ODP/ODS/ODT 以及其他 LibreOffice 和 Open Office 文件

概述

描述:ooo-thumbnailer 是一个 LibreOffice、OpenOffice.org 和 Microsoft Office 文档缩略图程序,Nautilus 可以使用它来为您的文档、电子表格、演示文稿和绘图创建缩略图。

可用性:开发者的 PPA(与 Ubuntu 12.04 及更高版本中的 LibreOffice 兼容的最新版本)

安装

sudo add-apt-repository ppa:flimm/ooo-thumbnailer && apt-get update && apt-get install ooo-thumbnailer

答案2

ICNS 文件(Mac OSX 图标)

概述

Nautilus 无法为 Mac OSX 图标生成缩略图,原因是一些错误,但支持是内置的GdkPixbuf

脚本

这是生成文件缩略图的基本脚本.icns。更强大的版本可以在以下位置找到https://github.com/MestreLion/icns-thumbnailer

#!/usr/bin/env python
import sys
from gi.repository import GdkPixbuf
inputname, outputname, size = sys.argv[1:]
pixbuf = GdkPixbuf.Pixbuf.new_from_file(inputname)
scaled = GdkPixbuf.Pixbuf.scale_simple(pixbuf, int(size), int(size),
                                       GdkPixbuf.InterpType.BILINEAR)
scaled.savev(outputname, 'png', [], [])

安装

安装脚本,以及.thumbnailerNautilus 文件可在icns-thumbnailer 项目存储库

相关内容