当前位置:   article > 正文

Stirling PDF:免费PDF开源编辑工具

Stirling PDF:免费PDF开源编辑工具

   Git地址:https://github.com/Stirling-Tools/Stirling-PDF 

      Stirling-PDF是一个基于spring-boot开发的开源项目,旨在提供一个功能强大的基于Docker的本地托管PDF操作工具。它使您能够对PDF文件进行多种操作,包括拆分、合并、转换、重新组织、添加图片、旋转、压缩等。该本地托管应用最初由ChatGPT完全开发,并已发展成一个功能齐全的工具,可满足您的各种PDF需求。

所有文件和PDF要么完全在客户端处理,要么在任务执行期间仅存在于服务器内存中,要么仅在任务执行期间存在于临时文件中。任何用户下载的文件在这个时候都已从服务器上删除。

私有化部署

Docker Run

  1. docker run -d \
  2. -p 8080:8080 \
  3. -v /location/of/trainingData:/usr/share/tessdata \
  4. -v /location/of/extraConfigs:/configs \
  5. -v /location/of/logs:/logs \
  6. -e DOCKER_ENABLE_SECURITY=false \
  7. -e INSTALL_BOOK_AND_ADVANCED_HTML_OPS=false \
  8. --name stirling-pdf \
  9. frooodle/s-pdf:latest
  10. Can also add these for customisation but are not required
  11. -v /location/of/customFiles:/customFiles \

docker-compose

  1. version: '3.3'
  2. services:
  3. stirling-pdf:
  4. image: frooodle/s-pdf:latest
  5. ports:
  6. - '8080:8080'
  7. volumes:
  8. - /location/of/trainingData:/usr/share/tessdata #Required for extra OCR languages
  9. - /location/of/extraConfigs:/configs
  10. # - /location/of/customFiles:/customFiles/
  11. # - /location/of/logs:/logs/
  12. environment:
  13. - DOCKER_ENABLE_SECURITY=false
  14. - INSTALL_BOOK_AND_ADVANCED_HTML_OPS=false

本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号