ดำเนินการประมวลผลเอกสารบนโครงสร้างพื้นฐานของคุณเอง
Run it locally or on your own infrastructure
A lightweight self-host version designed for developers. No complex setup, no external dependencies — just download, run, and start using Documentize in under a minute.
⚡ Quick Start
Choose the setup that fits your workflow. Both options take only a few steps.
.NET 9 (fastest way)
If you already have .NET installed, this is the quickest way to get started.
- Download the self-host package
- Extract the archive
- Run:
dotnet Documentize.SelfHost.dllThen open http://localhost in your browser.
Docker
Prefer containers? Use the included Dockerfile to run Documentize anywhere.
- Download the Docker package
- Build the image:
docker build -t documentize .Run the container:
docker run -p 80:80 documentizeThen open http://localhost.
🧩 Requirements
Minimal requirements depending on your setup:
- .NET 9 Runtime for direct execution
- Docker for containerized setup
⚙️ More Details
The self-host version is built as a standard ASP.NET Core application, so it behaves exactly like any modern .NET web API.
- Runs locally or on any server
- Default Docker port: 80
- No external services required
- Suitable for internal tools or production use
🔑 Licensing
Without a license the API runs in Trial Mode — output files may contain evaluation watermarks. Apply a license to enable full, watermark-free processing.
Option 1 — Environment variable
Base64-encode your .lic file and pass it as an environment variable before starting:
# Linux / macOS
export ASPOSE_PDF_LICENSE=$(base64 -w 0 Aspose.Pdf.lic)
dotnet Documentize.SelfHost.dll# Docker
docker run -p 80:80 \
-e ASPOSE_PDF_LICENSE=$(base64 -w 0 Aspose.Pdf.lic) \
documentizeOption 2 — Upload via API
POST the .lic file to your running instance at any time. The license is saved to disk and re-applied automatically on the next restart.
curl -X POST http://localhost/webapi/license \
-F "license=@Aspose.Pdf.lic"Or use the Upload License widget in the sidebar — enter your instance URL, pick the file, and click Upload.
Check the current license status at any time:
GET http://localhost/webapi/license
# { "licensed": true }ปรับใช้ Documentize เป็นบริการ self-hosted และประมวลผลเอกสารในระดับท้องถิ่นโดยใช้ REST API แบบรวมศูนย์. ออกแบบมาสำหรับเครือข่ายส่วนตัวและสภาพแวดล้อมที่ควบคุมได้
วิธีการทำงานของ Documentize แบบ Self-Hosted
1. ปรับใช้ API
เรียกใช้ REST API และผู้ทำงานในสภาพแวดล้อมของคุณเองโดยใช้ Docker หรือโฮสต์ท้องถิ่น
2. ส่งเอกสารผ่าน REST
อัพโหลดไฟล์และพารามิเตอร์ไปยังจุดสิ้นสุดของ API สำหรับการแปลง, OCR, การค้นหา, หรือการประมวลผล AI
3. การประมวลผลเบื้องหลัง
งานจะถูกประมวลผลแบบอะซิงโครนัสพร้อมการติดตามสถานะและการดำเนินการที่คาดเดาได้
4. ดึงผลลัพธ์
ดาวน์โหลดเอกสารที่ประมวลผลแล้วหรือผลลัพธ์ที่มีโครงสร้างเมื่อภารกิจเสร็จสมบูรณ์
FAQs
Unlock the Power of Document Management
ล็อก PDF
ล็อกเอกสารด้วยรหัสผ่านโดยใช้ REST API
ปลดล็อก PDF
ปลดล็อกเอกสารที่ป้องกันด้วยรหัสผ่านผ่าน REST API
การแปลงเอกสาร
แปลงเอกสารระหว่างรูปแบบที่รองรับ
การรวมเอกสาร
รวมหลายเอกสารเป็นไฟล์ผลลัพธ์เดียว
แยก PDF
แยกเอกสารตามหน้า หรือกฎที่กำหนด
การประมวลผล OCR
จดจำข้อความจากเอกสารและภาพที่สแกน
PDF ที่ค้นหาได้
สร้าง PDF ที่สามารถค้นหาได้จากไฟล์ที่สแกน
การค้นหา PDF
ค้นหาข้อความภายในเอกสาร
ลบหน้า
ลบหน้าของ PDF
หมุนหน้า
หมุนหน้าของเอกสาร
บีบอัด PDF
บีบอัดหน้าของเอกสาร
ลายเซ็นดิจิทัล
ลงนามเอกสารด้วยดิจิทัลโดยใช้ API
การตรวจสอบลายเซ็น PDF
ตรวจสอบลายเซ็นดิจิทัลในเอกสาร
สารบัญ
สร้างสารบัญโดยอัตโนมัติ
การสร้างเช็คลิสต์
สร้างเช็คลิสต์ที่มีโครงสร้างจากเอกสารโดยใช้ AI
การสร้างภาพประกอบ
สร้างภาพประกอบโดยใช้ AI สำหรับเนื้อหาเอกสาร
ฟรีอย่างเต็มที่
แผนฟรี
- สร้างเรื่องราวที่มีภาพประกอบได้สูงสุด 5 เรื่องต่อวันโดยไม่ต้องลงทะเบียนหรือชำระเงิน
- การเข้าถึง REST API
- การปรับใช้ Docker และ on-premise