Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jjgod/pdfsplit
A Mac OS X utility to split PDF into pages
https://github.com/jjgod/pdfsplit
Last synced: 2 months ago
JSON representation
A Mac OS X utility to split PDF into pages
- Host: GitHub
- URL: https://github.com/jjgod/pdfsplit
- Owner: jjgod
- Created: 2009-11-09T08:49:37.000Z (about 15 years ago)
- Default Branch: master
- Last Pushed: 2009-11-09T09:00:13.000Z (about 15 years ago)
- Last Synced: 2023-04-11T12:00:25.129Z (over 1 year ago)
- Language: C
- Homepage:
- Size: 74.2 KB
- Stars: 12
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
pdfsplit - A Mac OS X utility to split PDF into pages
=====================================================Why?
----I am surprised to see there is no simple, lightweight and fast
utility to split PDF in Mac OS X. There is a Python based [1]
inplemention utilizing the Python binding of Core Graphics,
but PyObjC is traditionally very slow. So here this a direct
C translation of this tool.How?
----Build it with Xcode installed then type 'make'. Though I haven't
tested myself, it should support systems above Mac OS X 10.4.usage: pdfsplit input.pdf splitPageNum1 splitPageNum2 ...
- input.pdf: the path to the input pdf file.
- splitPageNum1, ...: each one is a positive integer; the numbers
must not exceed the number of pages of the input file, and the
entire sequence must be strictly increasing.Example: pdfsplit input.pdf 3 5
This will split file input.pdf into 3 files (assuming input.pdf is 10
pages long):- input.1-3.pdf contains page 1-3;
- input.4-5.pdf contains page 4-5;
- input.6-10.pdf contains page 6-10.[1] http://www.cs.cmu.edu/~benhdj/Mac/splitPDF.py