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

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

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

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

私有化部署

Docker Run

docker run -d \
  -p 8080:8080 \
  -v /location/of/trainingData:/usr/share/tessdata \
  -v /location/of/extraConfigs:/configs \
  -v /location/of/logs:/logs \
  -e DOCKER_ENABLE_SECURITY=false \
  -e INSTALL_BOOK_AND_ADVANCED_HTML_OPS=false \
  --name stirling-pdf \
  frooodle/s-pdf:latest


  Can also add these for customisation but are not required

  -v /location/of/customFiles:/customFiles \

docker-compose

version: '3.3'
services:
  stirling-pdf:
    image: frooodle/s-pdf:latest
    ports:
      - '8080:8080'
    volumes:
      - /location/of/trainingData:/usr/share/tessdata #Required for extra OCR languages
      - /location/of/extraConfigs:/configs
#      - /location/of/customFiles:/customFiles/
#      - /location/of/logs:/logs/
    environment:
      - DOCKER_ENABLE_SECURITY=false
      - INSTALL_BOOK_AND_ADVANCED_HTML_OPS=false

相关推荐

  1. PDF最强处理工具-StirlingPDF

    2024-04-08 05:50:10       41 阅读

最近更新

  1. TCP协议是安全的吗?

    2024-04-08 05:50:10       18 阅读
  2. 阿里云服务器执行yum,一直下载docker-ce-stable失败

    2024-04-08 05:50:10       19 阅读
  3. 【Python教程】压缩PDF文件大小

    2024-04-08 05:50:10       18 阅读
  4. 通过文章id递归查询所有评论(xml)

    2024-04-08 05:50:10       20 阅读

热门阅读

  1. 李沐19_卷积层——自学笔记

    2024-04-08 05:50:10       13 阅读
  2. 146 LRU缓存

    2024-04-08 05:50:10       14 阅读
  3. HTTP的强制缓存和协商缓存

    2024-04-08 05:50:10       15 阅读
  4. HTTPS中的TLS和TCP能同时握手吗

    2024-04-08 05:50:10       15 阅读
  5. GMSSL学习笔记

    2024-04-08 05:50:10       12 阅读
  6. 网络安全之SQL注入

    2024-04-08 05:50:10       14 阅读
  7. ubuntu18.04-arm7v架构下构建Telegraf自定义系统服务

    2024-04-08 05:50:10       12 阅读
  8. ubuntu怎么按安装时间显示已安装的软件

    2024-04-08 05:50:10       14 阅读
  9. 使用docx4j转换word为pdf处理中文乱码问题

    2024-04-08 05:50:10       10 阅读
  10. @SpringBootApplication 详解

    2024-04-08 05:50:10       13 阅读