我如何查看 PDF 出血框、裁剪框、裁切框等?

我如何查看 PDF 出血框、裁剪框、裁切框等?

如何在 Ubuntu 上查看 PDF 出血框和裁切框,就像在 Adob​​e Acrobat Pro 中一样?我希望无需借助虚拟机或 WINE 即可实现此目的。

例子: 在此处输入图片描述

绿色标记是裁剪框。我需要什么软件才能让 Ubuntu 像这样显示它们?

答案1

更新:

谢谢菲尼克斯87(Gtumbler 的创建者和维护者),现在可以从他的 PPA 获得一个新的稳定版本:

$ wget https://launchpad.net/~phoenix1987/+archive/ubuntu/ppa/+files/gtumbler_1.0-0ubuntu3_all.deb
$ sudo dpkg -i gtumbler_1.0-0ubuntu3_all.deb
$ rm gtumbler_1.0-0ubuntu3_all.deb 

他的博客文章更多细节。

原始帖子:

我还发现了 Gtumbler苯甲酸我认为这是唯一能够显示这些框的应用程序。问题是这个 ppa 仅包含 12.04 的版本。

我一直在关注bzr 分支机构压缩文件Gtumbler,两者有所不同,但看起来即使较旧的软件包代码也更可靠。

因此,我决定删除以下已弃用的依赖项以及应用程序中的相应调用(更改可用这里):

  • python-launchpad-集成
  • 桌面沙发
  • python-desktopcouch-records
  • python-desktopcouch-应用程序
  • pdf编辑

唯一的缺点是你无法保存你的偏好设置。所以现在所有这些设置都硬编码在应用程序中。不过它们并不多:

preferences = {
    'cb_box0'                   : '#A020F0',
    'cb_box1'                   : '#FF0000',
    'cb_box2'                   : '#0000FF',
    'cb_box3'                   : '#00FF00',
    'cb_box4'                   : '#4D4D4D',

    'cbo_editor'                : 0,
    'cbo_compatibility'         : 2,

    'chk_convert'               : True,
    'chk_create_copy'           : True,
    'chk_crop_create_copy'      : True,
    'chk_display_path'          : True,
    'chk_open_cat'              : False,

    'rdo_viewer_default'        : True,
    'rdo_viewer_custom'         : False,

    'txt_other_tool'            : '',
    'txt_tool_args'             : '',
    'txt_viewer_custom'         : '',
    }

结果是我的苯甲酸适用于 14.04、14.10 和 15.04。要gtumbler在 14.10 上安装并运行,请在终端中输入以下命令:

sudo apt-add-repository ppa:sylvain-pineau/gtumbler
sudo apt-get update
sudo apt-get install gtumbler
/opt/extras.ubuntu.com/gtumbler/bin/gtumbler

然后单击 + 图标打开 pdf,所有定义的框都应显示在预览窗口中:

在此处输入图片描述

答案2

Adobe Acrobat Pro 8.0 在 openSUSE 11.4 上的 Wine 下运行

你可以尝试一下。如果不行的话我会向你展示我是如何实现它的。

相关内容