I have a 100+ page PDF document.
I wish to extract 2 of those pages, each to their own PDF file.
On Sun, 20 Jul 2025, Richard Owlett wrote:
I have a 100+ page PDF document.
I wish to extract 2 of those pages, each to their own PDF file.
How about
mutool merge -o Page-n.pdf <100-page.pdf> n
where <100-page.pdf> is the original file
Page-n.pdf is the one page file extracted
See man mutool. Roger
I have a 100+ page PDF document.
I wish to extract 2 of those pages, each to their own PDF file.
On 7/20/25 7:24 AM, Roger Price wrote:
mutool merge -o Page-n.pdf <100-page.pdf> n
where <100-page.pdf> is the original file
Page-n.pdf is the one page file extracted
Is some demo or tutorial that would clarify what it tries to do?
I wish to extract 2 of those pages, each to their own PDF file.
I wish to edit those 2 files.
On Sun, 2025-07-20 at 14:24 +0200, Roger Price wrote:Try "pdfarranger", it is in the debian repo.
On Sun, 20 Jul 2025, Richard Owlett wrote:
I have a 100+ page PDF document.
I wish to extract 2 of those pages, each to their own PDF file.
How about
mutool merge -o Page-n.pdf <100-page.pdf> n
where <100-page.pdf> is the original file
Page-n.pdf is the one page file extracted
See man mutool. Roger
pdftk can do what you want, and more.
On Sun, 20 Jul 2025, Richard Owlett wrote:
On 7/20/25 7:24 AM, Roger Price wrote:
mutool merge -o Page-n.pdf <100-page.pdf> nIs some demo or tutorial that would clarify what it tries to do?
where <100-page.pdf> is the original file
Page-n.pdf is the one page file extracted
I have a 2 page PDF called Documents/Permis.pdf (My driving license).
I want to put the first page which has my photo in file Photo.pdf .
The command I use is
rprice@maria ~ mutool merge -o Photo.pdf Documents/Permis.pdf 1
The "1" says I want only the page 1. I got file Photo.pdf with my face.
Program pdfseparate could do the same job. The command is
rprice@maria ~ pdfseparate -f 1 -l 1 Documents/Permis.pdf Photo.%d.pdf
and again I got file Photo.1.pdf with my photo. Roger
On Sun, 20 Jul 2025, Richard Owlett wrote:
I have a 100+ page PDF document.
I wish to extract 2 of those pages, each to their own PDF file.
For a simple graphical solution, try xpdf. The print option allows you to print
specified pages to file.
We cannot help with the editing since you havn't said what you want to do. Is this text or image or something else ? Roger
Annoyingly, I am currently trying to print a filled-form PDF with FF
and it is not working.
When I try to print the page, it comes up with the form without all of
my filling.
So, treat my previous comment with suspicion.
mrc
Annoyingly, I am currently trying to print a filled-form PDF with FFDid you try the following:
and it is not working.
When I try to print the page, it comes up with the form without all of
my filling.
So, treat my previous comment with suspicion.
mrc
I'm running Debian 12.8.
I have a 100+ page PDF document.
I wish to extract 2 of those pages, each to their own PDF file.
I wish to edit those 2 files.
How?
[Simple question but I suspect answer may not be so simple.
What I've read confuses me.]
TIA
On Tue 22 Jul 2025 at 10:14:37 (-0500), Richard Owlett wrote:
On 7/20/25 5:52 AM, Richard Owlett wrote:
I'm running Debian 12.8.
I have a 100+ page PDF document.
I wish to extract 2 of those pages, each to their own PDF file.
[ … ]
I should have put more "em-FAY-sis" on my goal for this thread being
learning how to extract specific pages of a large PDF document.[1] I
had not fully appreciated how graphically oriented the PDF format is.
The sub-goal being to perceive the the byte level structure of *that*
page in order to extract the semantic content perceived by a human. I
would then edit/reformat the content to be *useful* to a different
target audience.
It's very simple to burst a document into individual pages with pdftk:
$ pdftk document.pdf burst
$
Failed to fetch http://security.debian.org/debian-security/pool/updates/main/o/openjdk-17/openjdk-17-jre
I'm running Debian 12.8 and package install failed with
Failed to fetch http://security.debian.org/debian-security/pool/updates/main/o/openjdk-17/openjdk-17-jre
On Tue, Jul 22, 2025 at 13:17:52 -0500, Richard Owlett wrote:
I'm running Debian 12.8 and package install failed with
Failed to fetch http://security.debian.org/debian-security/pool/updates/main/o/openjdk-17/openjdk-17-jre
There's no version number on that file. Looks weird. Maybe that's
supposed to be a symlink to the most recent package or something, but
I don't know. The URL looks truncated.
hobbit:~$ cat /etc/debian_version
12.11
hobbit:~$ apt-cache show openjdk-17-jre
[...]
Filename: pool/main/o/openjdk-17/openjdk-17-jre_17.0.15+6-1~deb12u1_amd64.deb
In any case, being 3 point releases behind the current patchlevel is
probably not helping.
What happens if you install the openjdk-17-jre package first?
I'm running Debian 12.8.
I have a 100+ page PDF document.
I wish to extract 2 of those pages, each to their own PDF file.
I wish to edit those 2 files.
How?
[Simple question but I suspect answer may not be so simple.
What I've read confuses me.]
TIA
mutool - all purpose tool for dealing with PDF files
pdftk - Portable Document Format (PDF) page extractor
qpdf - PDF transformation software
xpdf - Portable Document Format (PDF) file viewer for X (xpopple) pdfarranger - Application for PDF Merging, Rearranging, Splitting, and Cropping
pdfsam - PDF Split and Merge
The poppler-utils package includes:
pdfseparate -- page extraction tool
pdftotext -- text extraction
pdftohtml -- PDF to HTML converter
On 2025-07-23, Richard Owlett <rowlett@access.net> wrote:
On 7/20/25 5:52 AM, Richard Owlett wrote:
I'm running Debian 12.8.
I have a 100+ page PDF document.
I wish to extract 2 of those pages, each to their own PDF file.
I wish to edit those 2 files.
How?
[Simple question but I suspect answer may not be so simple.
What I've read confuses me.]
TIA
For convenience of future readers - these tools have been suggested to
me in this thread.
mutool - all purpose tool for dealing with PDF files
pdftk - Portable Document Format (PDF) page extractor
qpdf - PDF transformation software
xpdf - Portable Document Format (PDF) file viewer for X (xpopple) >>> pdfarranger - Application for PDF Merging, Rearranging, Splitting, and Cropping
pdfsam - PDF Split and Merge
The poppler-utils package includes:
pdfseparate -- page extraction tool
pdftotext -- text extraction
pdftohtml -- PDF to HTML converter
I'll try each under Debian 12.8
I could not install pdftk. I'll retry when I have updated my Debian.
Or you just print to file in any browser.
I wish to edit those 2 files.
Sysop: | Keyop |
---|---|
Location: | Huddersfield, West Yorkshire, UK |
Users: | 546 |
Nodes: | 16 (2 / 14) |
Uptime: | 148:02:54 |
Calls: | 10,383 |
Calls today: | 8 |
Files: | 14,054 |
D/L today: |
2 files (1,861K bytes) |
Messages: | 6,417,737 |