https://github.com/dev1an/imageextractor
A macOS utility to extract images from PDFs
https://github.com/dev1an/imageextractor
Last synced: over 1 year ago
JSON representation
A macOS utility to extract images from PDFs
- Host: GitHub
- URL: https://github.com/dev1an/imageextractor
- Owner: Dev1an
- License: mit
- Created: 2021-05-10T15:44:15.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-09-30T13:34:39.000Z (over 4 years ago)
- Last Synced: 2025-01-21T13:09:30.080Z (over 1 year ago)
- Language: Swift
- Size: 2.9 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# ImageExtractor
A pure swift library to extract images from PDFs on macOS and iOS.
Only uses system libraries (PDFKit) and no other third party dependencies.
## Swift usage
Add this package to the dependencies in your `Package.swift` file.
```swift
.package(url: "https://github.com/Dev1an/ImageExtractor", from: .branch("main")),
```
## Command line usage
A minimal command line tool is also included in the source code. Note that command line tool does have dependencies ;)
Here is how to use it using [mint](https://github.com/yonaskolb/Mint)
```sh
mint run Dev1an/ImageExtractor@main
```