Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aarkue/pdf-tools-web
This project aims to provide a powerful web-based toolbox of different PDF-related features.
https://github.com/aarkue/pdf-tools-web
javascript nextjs pdf pdf-lib pdf-merge pdf-merger pdf-tools pwa typescript
Last synced: 3 months ago
JSON representation
This project aims to provide a powerful web-based toolbox of different PDF-related features.
- Host: GitHub
- URL: https://github.com/aarkue/pdf-tools-web
- Owner: aarkue
- License: mit
- Created: 2023-05-01T17:59:31.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-27T18:38:29.000Z (8 months ago)
- Last Synced: 2024-10-12T13:45:35.543Z (4 months ago)
- Topics: javascript, nextjs, pdf, pdf-lib, pdf-merge, pdf-merger, pdf-tools, pwa, typescript
- Language: TypeScript
- Homepage: https://pdf.wolke7.cloud
- Size: 600 KB
- Stars: 12
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PDF Tools (Web)
This project aims to provide a powerful web-based toolbox of different PDF-related features.**Try or install PDF Tools here: [https://pdf.wolke7.cloud](https://pdf.wolke7.cloud)**.
## Features
### Merging PDF Files
Merge multiple PDF documents to one file.There are different options for the outline of the merged file available:
- _Retain outline entries as one entry per file_: The outlines of the original documents are retained. They are included as children of the corresponding top-level outline element, which is created for every file.
- _Retain outline entries_: Simply retain the outline entries of the original documents, only adjusting the page/destination they point to, to account for the changed page numbering.
- _Create one outline entry per file_: Create a single outline entry for each of the documents, using the file name as a title.
- _Don't create an outline_: Don't create any outline for the merged PDF file.### Reordering PDF Pages
Visually reorder the pages of a PDF file.
### Extract Text
Extract and view or copy the text content of a PDF file, or individual pages.
### Automatically Crop PDF
Crop PDF pages automatically to their content.
### Offline Use
The web app hosted at **[https://pdf.wolke7.cloud](https://pdf.wolke7.cloud)** is a progressive web app (PWA).
You can use it offline (after first visit) and even install it to have it easily available.## Screenshots
## Project Structure
This project uses Typescript.
The Web App (PWA) is implemented using Next.JS (React) and Tailwind CSS.The main PDF merging and outline processing work is done in the following files: `lib/pdf-outline-helper.ts` and `components/PDFMagic.tsx`.
This project makes heavy use of the `pdf-lib` JavaScript library for PDF manipulation.
See also [https://pdf-lib.js.org](https://pdf-lib.js.org), [https://github.com/Hopding/pdf-lib](https://github.com/Hopding/pdf-lib) and its fork used in this project: [https://github.com/cantoo-scribe/pdf-lib](https://github.com/cantoo-scribe/pdf-lib).