mirror of
https://github.com/LCTT/TranslateProject.git
synced 2024-12-26 21:30:55 +08:00
translated
This commit is contained in:
parent
ca92e5fc0d
commit
9c8c7ceb56
@ -1,142 +0,0 @@
|
|||||||
[#]: collector: (lujun9972)
|
|
||||||
[#]: translator: (geekpi)
|
|
||||||
[#]: reviewer: ( )
|
|
||||||
[#]: publisher: ( )
|
|
||||||
[#]: url: ( )
|
|
||||||
[#]: subject: (Perform Common PDF Editing Tasks Like Merge, Split, Rotate With Free and Open Source PDF Mix Tool)
|
|
||||||
[#]: via: (https://itsfoss.com/pdf-mix-tool/)
|
|
||||||
[#]: author: (Ankush Das https://itsfoss.com/author/ankush/)
|
|
||||||
|
|
||||||
Perform Common PDF Editing Tasks Like Merge, Split, Rotate With Free and Open Source PDF Mix Tool
|
|
||||||
======
|
|
||||||
|
|
||||||
_**Brief: PDF Mix Tool is a simple, lightweight open-source PDF editing application that lets you extract pages from PDF, merge two PDFs, delete pages from PDF files among a few other things.**_
|
|
||||||
|
|
||||||
### PDF Mix Tool: A Simple Open Source PDF Editing Tool
|
|
||||||
|
|
||||||
![][1]
|
|
||||||
|
|
||||||
There are [several PDF editors available for Linux][2]. I usually categorize them in two categories:
|
|
||||||
|
|
||||||
* PDF editors that let you edit the content (annotate, highlight, change text, add/remove images etc)
|
|
||||||
* PDF editors that let you modify the files by merging files, splitting files, extracting pages from files etc.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[PDF Mix Tool][3] falls in the second category. It is an open source software written in C++ and uses Qt5. It lets you merge two or more PDF files specifying a page set for each of them, rotate pages, add white pages, delete pages and extract pages from PDF files.
|
|
||||||
|
|
||||||
In this week’s open source software highlight, let’s take a look at using PDF Mix Tool.
|
|
||||||
|
|
||||||
### Using PDF Mix Tool for editing PDFs in Linux
|
|
||||||
|
|
||||||
![][4]
|
|
||||||
|
|
||||||
PDF Mix Tool does not boast a bunch of features but a handful of things that are incredibly important.
|
|
||||||
|
|
||||||
#### Merge PDF files
|
|
||||||
|
|
||||||
![][5]
|
|
||||||
|
|
||||||
You can easily merge multiple PDF files while specifying the exact pages as well. It gives you the ability to tweak the number of pages, rotation, and also the option to reverse the order of pages to merge with “**Alternate mix**“.
|
|
||||||
|
|
||||||
![][6]
|
|
||||||
|
|
||||||
You just need to click on “**Add PDF Fil**e” to add the files and then edit it with the options available (as shown in the image above) and finally generate the edited PDF.
|
|
||||||
|
|
||||||
#### Rotate pages
|
|
||||||
|
|
||||||
You can rotate pages of a PDF file while merging multiple files or when simply operating on a single PDF file.
|
|
||||||
|
|
||||||
For merging files, you can refer to the screenshots above — but when you select a single file, this is how it looks:
|
|
||||||
|
|
||||||
![][7]
|
|
||||||
|
|
||||||
You get a variety of options, but to rotate the pages, you need to select the “**Edit page layout**” option as shown in the screenshot above.
|
|
||||||
|
|
||||||
#### Add or delete pages
|
|
||||||
|
|
||||||
To add new pages from a different PDF file, it’s best to utilize the option.
|
|
||||||
|
|
||||||
But, if you want to add an empty page, you can do that when selecting a single file to process. Not just limited to the addition of empty pages — but you can delete specific pages as well. Here’s a screenshot that highlights the delete option:
|
|
||||||
|
|
||||||
![][8]
|
|
||||||
|
|
||||||
#### Extract pages from a PDF file
|
|
||||||
|
|
||||||
![][9]
|
|
||||||
|
|
||||||
In addition to all the other options, you can also extract a certain page (or all) from a given PDF file. You can then generate a new PDF file for all the extracted pages or make separate PDF files for every page you extract. It should come in handy in a lot of use-cases.
|
|
||||||
|
|
||||||
#### Other functionalities
|
|
||||||
|
|
||||||
With all the features mentioned above, you can generate an entirely new PDF of your choice, reverse the order, extract the pages, make separate PDF files, and so on.
|
|
||||||
|
|
||||||
It does not reduce size of the PDF file. You’ll have to use other tools for [compressing PDF files on Linux][10].
|
|
||||||
|
|
||||||
So, it’s a mixed bag of things when you combine and use the options available.
|
|
||||||
|
|
||||||
### Installing PDF Mix Tool on Linux
|
|
||||||
|
|
||||||
![PDF Mix Tool in Ubuntu Software Center][11]
|
|
||||||
|
|
||||||
PDF Mix Tool is available as Snap and [Flatpak packages][12]. This means _**you may find it in your distribution’s software manager**_ if it supports either of these packages.
|
|
||||||
|
|
||||||
Alternatively, if you have [Snap package support enabled][13], you can use the following command to install it:
|
|
||||||
|
|
||||||
```
|
|
||||||
sudo snap install pdfmixtool
|
|
||||||
```
|
|
||||||
|
|
||||||
If you want to [use Flatpak][14], you can use:
|
|
||||||
|
|
||||||
```
|
|
||||||
flatpak install flathub eu.scarpetta.PDFMixTool
|
|
||||||
```
|
|
||||||
|
|
||||||
In case you’re using Arch Linux, you can get it from the [community repository][15].
|
|
||||||
|
|
||||||
```
|
|
||||||
sudo pacman -S pdfmixtool
|
|
||||||
```
|
|
||||||
|
|
||||||
You can also choose to take a look at their [GitLab page][16] for its source code.
|
|
||||||
|
|
||||||
[Download Source Code for PDF Mix Tool][17]
|
|
||||||
|
|
||||||
**Wrapping Up**
|
|
||||||
|
|
||||||
It may not be the most feature-rich PDF editing tool — but considering it as a lightweight open-source tool, it is a very useful application to have installed. We have also covered a similar tool [PDF Arranger][18] in the past. You may want to take a look at that as well.
|
|
||||||
|
|
||||||
What do you think about it? Have you tried it yet? Let me know your thoughts in the comments below.
|
|
||||||
|
|
||||||
--------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
via: https://itsfoss.com/pdf-mix-tool/
|
|
||||||
|
|
||||||
作者:[Ankush Das][a]
|
|
||||||
选题:[lujun9972][b]
|
|
||||||
译者:[译者ID](https://github.com/译者ID)
|
|
||||||
校对:[校对者ID](https://github.com/校对者ID)
|
|
||||||
|
|
||||||
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
|
|
||||||
|
|
||||||
[a]: https://itsfoss.com/author/ankush/
|
|
||||||
[b]: https://github.com/lujun9972
|
|
||||||
[1]: https://i1.wp.com/itsfoss.com/wp-content/uploads/2020/06/pdf-mix-tool.png?ssl=1
|
|
||||||
[2]: https://itsfoss.com/pdf-editors-linux/
|
|
||||||
[3]: https://scarpetta.eu/pdfmixtool/
|
|
||||||
[4]: https://i1.wp.com/itsfoss.com/wp-content/uploads/2020/06/pdf-mix-tool-merge.png?ssl=1
|
|
||||||
[5]: https://i2.wp.com/itsfoss.com/wp-content/uploads/2020/06/pdf-mix-tool-edit.png?ssl=1
|
|
||||||
[6]: https://i1.wp.com/itsfoss.com/wp-content/uploads/2020/06/pdf-mix-tool-merge-edit.png?ssl=1
|
|
||||||
[7]: https://i2.wp.com/itsfoss.com/wp-content/uploads/2020/06/pdf-mix-tool-layout.png?ssl=1
|
|
||||||
[8]: https://i1.wp.com/itsfoss.com/wp-content/uploads/2020/06/pdf-mix-tool-add-delete.png?ssl=1
|
|
||||||
[9]: https://i1.wp.com/itsfoss.com/wp-content/uploads/2020/06/pdf-mix-tool-extract.png?ssl=1
|
|
||||||
[10]: https://itsfoss.com/compress-pdf-linux/
|
|
||||||
[11]: https://i2.wp.com/itsfoss.com/wp-content/uploads/2020/06/pdf-mix-tool-ubuntu.png?ssl=1
|
|
||||||
[12]: https://flathub.org/apps/details/eu.scarpetta.PDFMixTool
|
|
||||||
[13]: https://itsfoss.com/install-snap-linux/
|
|
||||||
[14]: https://itsfoss.com/flatpak-guide/
|
|
||||||
[15]: https://www.archlinux.org/packages/community/x86_64/pdfmixtool/
|
|
||||||
[16]: https://gitlab.com/scarpetta/pdfmixtool
|
|
||||||
[17]: https://www.scarpetta.eu/pdfmixtool/
|
|
||||||
[18]: https://itsfoss.com/pdfarranger-app/
|
|
@ -0,0 +1,143 @@
|
|||||||
|
[#]: collector: (lujun9972)
|
||||||
|
[#]: translator: (geekpi)
|
||||||
|
[#]: reviewer: ( )
|
||||||
|
[#]: publisher: ( )
|
||||||
|
[#]: url: ( )
|
||||||
|
[#]: subject: (Perform Common PDF Editing Tasks Like Merge, Split, Rotate With Free and Open Source PDF Mix Tool)
|
||||||
|
[#]: via: (https://itsfoss.com/pdf-mix-tool/)
|
||||||
|
[#]: author: (Ankush Das https://itsfoss.com/author/ankush/)
|
||||||
|
|
||||||
|
使用自由开源的 PDF Mix Tool 执行常见的 PDF 编辑任务如:合并、拆分、旋转
|
||||||
|
======
|
||||||
|
|
||||||
|
_**简介:PDF Mix Tool 是一个简单、轻巧的开源 PDF 编辑应用,可让你从 PDF 中提取页面、合并两个 PDF、从 PDF 中删除页面等。**_
|
||||||
|
|
||||||
|
### PDF Mix Tool:一个简单的开源 PDF 编辑工具
|
||||||
|
|
||||||
|
![][1]
|
||||||
|
|
||||||
|
有[一些 Linux 中 PDF 编辑器][2]。我通常将它们分为两类:
|
||||||
|
|
||||||
|
|
||||||
|
* 可让你编辑内容(注释、高亮、更改文本、添加/删除图像等)的 PDF 编辑器,
|
||||||
|
* 可让你通过合并、分割、提取页面等来修改文件的 PDF 编辑器。
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[PDF Mix Tool][3] 属于第二类。它是用 C++ 和 Qt5 编写的开源软件。它可让你合并两个或更多 PDF 文件,并为每个文件指定页面,还有旋转页面、添加空白页、删除页面以及从 PDF 文件提取页面。
|
||||||
|
|
||||||
|
在本周的开源软件亮点中,让我们看一下使用 PDF Mix Tool。
|
||||||
|
|
||||||
|
### 使用 PDF Mix Tool 在 Linux 中编辑 PDF
|
||||||
|
|
||||||
|
![][4]
|
||||||
|
|
||||||
|
PDF Mix Tool 并没有很多功能,但是有一些非常重要的功能。
|
||||||
|
|
||||||
|
#### 合并 PDF 文件
|
||||||
|
|
||||||
|
![][5]
|
||||||
|
|
||||||
|
你可以轻松合并多个 PDF 文件,同时指定确切的页面。它让你能够调整页面数、旋转,还能使用 “**Alternate mix**” 反转页面顺序合并。
|
||||||
|
|
||||||
|
![][6]
|
||||||
|
|
||||||
|
你只需要单击 “**Add PDF File**”添加文件,然后使用可用的选项对其进行编辑(如上图所示),最后生成编辑的 PDF。
|
||||||
|
|
||||||
|
#### 旋转页面
|
||||||
|
|
||||||
|
你可以在合并多个文件或仅对单个 PDF 文件进行操作时旋转 PDF 文件的页面。
|
||||||
|
|
||||||
|
对于合并文件,你可以参考上面的截图。但是当你选择一个文件时,它看上去像这样:
|
||||||
|
|
||||||
|
![][7]
|
||||||
|
|
||||||
|
你有多种选择,但是要旋转页面,需要选择 “**Edit page layout**” 选项,如上截图所示。
|
||||||
|
|
||||||
|
#### 添加或删除页面
|
||||||
|
|
||||||
|
要从其他 PDF 文件添加新页面,最好利用此选项。
|
||||||
|
|
||||||
|
但是,如果要添加空白页,你可以在选择一个文件时处理。不仅限于添加空白页面,还可以删除特定页面。下面的截图圈出了高亮选项:
|
||||||
|
|
||||||
|
![][8]
|
||||||
|
|
||||||
|
#### 从 PDF 文件提取页面
|
||||||
|
|
||||||
|
![][9]
|
||||||
|
|
||||||
|
除了所有其他选项之外,你还可以从给定的 PDF 文件中提取特定页面(或全部)。你还可以为所有提取的页面生成一个新的 PDF 文件,或者为提取的每个页面制作单独的 PDF 文件。在许多场景中,它应该派上用场。
|
||||||
|
|
||||||
|
#### 其他功能
|
||||||
|
|
||||||
|
利用上面所有功能,你可以生成自己选择的全新 PDF,颠倒顺序、提取页面、制作单独的 PDF 文件等等。
|
||||||
|
|
||||||
|
它不会减小 PDF 文件的大小。你必须使用其他工具[在 Linux 中压缩 PDF 文件][10]。
|
||||||
|
|
||||||
|
因此,当你组合使用可用选项时,它是功能丰富的工具。
|
||||||
|
|
||||||
|
### 在 Linux 上安装 PDF Mix Tool
|
||||||
|
|
||||||
|
![PDF Mix Tool in Ubuntu Software Center][11]
|
||||||
|
|
||||||
|
PDF Mix Tool 存在于 Snap 和 [Flatpak 软件包][12]中。这意味着如果发行版支持任意一种软件包,_**你都可以在软件管理器中找到它**_。
|
||||||
|
|
||||||
|
或者,如果你[启用了 Snap 软件包支持][13],那么可以使用以下命令进行安装:
|
||||||
|
|
||||||
|
```
|
||||||
|
sudo snap install pdfmixtool
|
||||||
|
```
|
||||||
|
|
||||||
|
如果你想[使用 Flatpak][14],那么使用:
|
||||||
|
|
||||||
|
```
|
||||||
|
flatpak install flathub eu.scarpetta.PDFMixTool
|
||||||
|
```
|
||||||
|
|
||||||
|
如果你使用的是 Arch Linux,那么可以从[社区仓库][15]中获取。
|
||||||
|
|
||||||
|
```
|
||||||
|
sudo pacman -S pdfmixtool
|
||||||
|
```
|
||||||
|
|
||||||
|
你也可以选择查看它的 [GitLab 页面][16]获取源码。
|
||||||
|
|
||||||
|
[下载 PDF Mix Tool 源码][17]
|
||||||
|
|
||||||
|
**总结**
|
||||||
|
|
||||||
|
它可能不是功能最丰富的 PDF 编辑工具,但考虑到它是轻量级的开源工具,因此它是已安装的应用中非常有用的。过去我们也介绍过类似的工具 [PDF Arranger][18]。你可能会想了解一下。
|
||||||
|
|
||||||
|
你如何看待它?你有尝试过么?在下面的评论中让我知道你的想法。
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
via: https://itsfoss.com/pdf-mix-tool/
|
||||||
|
|
||||||
|
作者:[Ankush Das][a]
|
||||||
|
选题:[lujun9972][b]
|
||||||
|
译者:[geekpi](https://github.com/geekpi)
|
||||||
|
校对:[校对者ID](https://github.com/校对者ID)
|
||||||
|
|
||||||
|
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
|
||||||
|
|
||||||
|
[a]: https://itsfoss.com/author/ankush/
|
||||||
|
[b]: https://github.com/lujun9972
|
||||||
|
[1]: https://i1.wp.com/itsfoss.com/wp-content/uploads/2020/06/pdf-mix-tool.png?ssl=1
|
||||||
|
[2]: https://itsfoss.com/pdf-editors-linux/
|
||||||
|
[3]: https://scarpetta.eu/pdfmixtool/
|
||||||
|
[4]: https://i1.wp.com/itsfoss.com/wp-content/uploads/2020/06/pdf-mix-tool-merge.png?ssl=1
|
||||||
|
[5]: https://i2.wp.com/itsfoss.com/wp-content/uploads/2020/06/pdf-mix-tool-edit.png?ssl=1
|
||||||
|
[6]: https://i1.wp.com/itsfoss.com/wp-content/uploads/2020/06/pdf-mix-tool-merge-edit.png?ssl=1
|
||||||
|
[7]: https://i2.wp.com/itsfoss.com/wp-content/uploads/2020/06/pdf-mix-tool-layout.png?ssl=1
|
||||||
|
[8]: https://i1.wp.com/itsfoss.com/wp-content/uploads/2020/06/pdf-mix-tool-add-delete.png?ssl=1
|
||||||
|
[9]: https://i1.wp.com/itsfoss.com/wp-content/uploads/2020/06/pdf-mix-tool-extract.png?ssl=1
|
||||||
|
[10]: https://itsfoss.com/compress-pdf-linux/
|
||||||
|
[11]: https://i2.wp.com/itsfoss.com/wp-content/uploads/2020/06/pdf-mix-tool-ubuntu.png?ssl=1
|
||||||
|
[12]: https://flathub.org/apps/details/eu.scarpetta.PDFMixTool
|
||||||
|
[13]: https://itsfoss.com/install-snap-linux/
|
||||||
|
[14]: https://itsfoss.com/flatpak-guide/
|
||||||
|
[15]: https://www.archlinux.org/packages/community/x86_64/pdfmixtool/
|
||||||
|
[16]: https://gitlab.com/scarpetta/pdfmixtool
|
||||||
|
[17]: https://www.scarpetta.eu/pdfmixtool/
|
||||||
|
[18]: https://itsfoss.com/pdfarranger-app/
|
Loading…
Reference in New Issue
Block a user