2023-10-18 23:56:56 +02:00
# StirlingPDF rewrite
This is the development repository for the new StirlingPDF backend. With the power of JS, WASM & GO this will provide almost all functionality SPDF can do currently directly on the client. For automation purposes this will still provide an API to automate your workflows.
2023-10-20 00:10:03 +02:00
## Try the new API!
[![Run in Postman ](https://run.pstmn.io/button.svg )](https://documenter.getpostman.com/view/30633786/2s9YRB1Wto)
## Understanding Workflows
2023-10-20 02:10:03 +02:00
Workflows define how to apply operations to a PDF, including their order and relations with eachother.
2023-10-20 00:10:03 +02:00
Workflows can be created via the web-ui and then exported or, if you want to brag a bit, you can create the JSON object yourself.
### Basics
To create your own, you have to understand a few key features first. You can also look at more examples our github repository.
2023-10-22 18:04:35 +02:00
```json
2023-10-20 00:10:03 +02:00
{
"outputOptions": {
"zip": false
},
"operations": [
{
"type": "extract",
"values": {
2023-11-16 22:32:09 +01:00
"pageIndexes": [0, 2]
2023-10-20 00:10:03 +02:00
},
"operations": []
}
]
}
```
The workflow above will extract the first (p\[0\]) and third (p\[2\]) page of the document.
You can also nest workflows like this:
2023-10-22 18:04:35 +02:00
```json
2023-10-20 00:10:03 +02:00
{
"outputOptions": {
"zip": false
},
"operations": [
{
"type": "extract",
"values": {
2023-11-16 22:32:09 +01:00
"pageIndexes": [0, 2]
2023-10-20 00:10:03 +02:00
},
"operations": [
{
"type": "impose",
"values": {
2023-10-22 00:55:28 +02:00
"nup": 2, // 2 pages of the input document will be put on one page of the output document.
2023-10-20 00:10:03 +02:00
"format": "A4L" // A4L -> The page size of the Ouput will be an A4 in Landscape. You can also use other paper formats and "P" for portrait output.
},
"operations": []
}
]
}
]
}
```
If you look at it closely, you will see that the extract operation has another nested operation of the type impose. This workflow will produce a PDF with the 1st and 2nd page of the input on one single page.
### Advanced
If that is not enought for you usecase, there is also the possibility to connect operations with eachother.
You can also do different operations to produce two different output PDFs from one input.
If you are interested in learning about this, take a look at the Example workflows provided in the repository, ask on the discord, or wait for me to finish this documentation.
2023-10-19 19:46:23 +02:00
## Features
2023-10-18 23:56:56 +02:00
2023-10-22 18:04:35 +02:00
### Rewrite Roadmap
2023-10-19 19:46:23 +02:00
2023-10-22 18:04:35 +02:00
* [x] Client side PDF-Manipulation
* [x] Workflows
* [ ] Feature equivalent with S-PDF v1
* [ ] Stateful UI
* [ ] Node based editing of Workflows
* [ ] Propper auth using passportjs
2023-10-19 19:46:23 +02:00
### Functions
Current functions of spdf and their progress in this repo.
2023-11-13 00:46:50 +01:00
#### Page Operations
2023-10-23 18:18:48 +02:00
| Status | Feature | Description |
| ------ | ------------------------ | ----------- |
2023-11-13 00:46:50 +01:00
| 🚧A | Merge | |
| 🚧A | Split | |
| 🚧A | Organize | |
| 🚧S | Rotate | |
| 🚧A | Remove Pages | |
| 🚧A | Multi-Page Layout | |
| ❌ | Adjust page size/scale | |
| 🚧A | Auto Split Pages | |
| ❌ | Adjust Colours/Contrast | |
| ❌ | Crop | |
| 🚧A | Extract Pages | |
2023-10-23 18:18:48 +02:00
| ❌ | PDF to Single large Page | |
2023-10-22 18:04:35 +02:00
2023-11-13 00:46:50 +01:00
#### Convert
| Status | Feature | Description |
| ------ | ------------------- | ----------- |
| ❌ | Image to PDF | |
| 🚧S | Convert file to PDF | |
| ❌ | URL to PDF | |
| ❌ | HTML to PDF | |
| ❌ | Markdown to PDF | |
| ❌ | PDF to Image | |
| ❌ | PDF to Word | |
| ❌ | PDF to Presentation | |
| ❌ | PDF to Text/RTF | |
| ❌ | PDF to HTML | |
| ❌ | PDF to PDF/A | |
#### Security
2023-10-22 18:04:35 +02:00
| Status | Feature | Description |
| ------ | --------------------- | ----------- |
| ❌ | Add Password | |
| ❌ | Remove Password | |
| ❌ | Change Permissions | |
2023-11-13 00:46:50 +01:00
| ❌ | Add Watermark | |
| ❌ | Sign with Certificate | |
| ❌ | Sanitize | |
| ❌ | Auto Redact | |
2023-10-22 18:04:35 +02:00
2023-11-13 00:46:50 +01:00
#### Miscellaneous
2023-10-23 18:18:48 +02:00
| Status | Feature | Description |
| ------ | --------------------------- | ----------- |
2023-11-13 00:46:50 +01:00
| ❌ | OCR | |
2023-10-23 18:18:48 +02:00
| ❌ | Add image | |
2023-11-13 00:46:50 +01:00
| ❌ | Compress | |
2023-10-23 18:18:48 +02:00
| ❌ | Extract Images | |
2023-11-13 00:46:50 +01:00
| 🚧S | Change Metadata | |
| 🚧A | Detect/Split Scanned photos | |
| ❌ | Sign | |
| ❌ | Flatten | |
| ❌ | Repair | |
| 🚧A | Remove Blank Pages | |
| ❌ | Compare/Diff | |
| ❌ | Add Page Numbers | |
| ❌ | Auto Rename | |
| ❌ | Get info | |
| ❌ | Show JS | |
2023-10-23 18:18:48 +02:00
2023-10-22 18:04:35 +02:00
✔️: Done, 🚧: Started Developement, ❌: Planned Feature
2023-11-13 00:46:50 +01:00
A: Available in the internal API, S: Available on the node server, C: Available in the client
2023-10-18 23:56:56 +02:00
## Contribute
2023-10-22 18:04:35 +02:00
For initial instructions look at [CONTRIBUTE.md ](./CONTRIBUTE.md )
2023-11-13 00:46:50 +01:00
/*
///// CONVERT 2 pdf
file2pdf
url2pdf
html2pdf
md2pdf
image2pdf
///// CONVERT from pdf
pdf2image
flatten
pdf2pdf/a
pdf2word
pdf2presentation
pdf2rtf
pdf2html
pdf2xml
///// SINGLE
merge
rotate
crop
pageNumbers
colours/contrast
addPassword
removePassword
compress
changeMetadata
change Permissions
OCR
sanitise
repair
compare
extract images
signWith certificate
impose
adjust page size/scale
auto rename
getAllInfo
showJS
redact
pdf2singleLargePage
///// SPLITTING
split
auto split
detect/split scanned
///// REARRANGE
- organise pages (remove/re-arrange)
- removePages
- removeBlank
- extractPages
///// ADD OBJECTS
add image
add watermark
sign
*/