v24.12
เพิ่มปลั๊กอินใหม่: ตัวแปลง PDF เป็น PNG
- Class PngConverter: แทนที่ปลั๊กอิน Documentize.PngConverter ใช้เพื่อแปลงเอกสาร PDF เป็นรูปแบบ PNG
- Class PdfToPngOptions: แทนที่ตัวเลือกตัวแปลง PDF เป็น PNG สำหรับปลั๊กอิน Documentize.PngConverter
การใช้งานตัวอย่าง:
// สร้าง PngConverter
var plugin = new PngConverter();
// สร้างอ็อบเจกต์ PdfToPngOptions เพื่อตั้งค่าคำแนะนำ
var opt = new PdfToPngOptions();
// เพิ่มเส้นทางไฟล์นำเข้า
opt.AddInput(new FileDataSource("path_to_your_pdf_file.pdf"));
// กำหนดเส้นทางไฟล์ผลลัพธ์
opt.AddOutput(new DirectoryDataSource("path_to_results_directory"));
// ดำเนินการประมวลผล
plugin.Process(opt);
เพิ่มปลั๊กอินใหม่: ตัวแปลง PDF เป็น TIFF
- Class TiffConverter: แทนที่ปลั๊กอิน Documentize.TiffConverter ใช้เพื่อแปลงเอกสาร PDF เป็นรูปแบบ TIFF
- Class PdfToTiffOptions: แทนที่ตัวเลือกตัวแปลง PDF เป็น TIFF สำหรับปลั๊กอิน Documentize.TiffConverter
การใช้งานตัวอย่าง:
// สร้าง TiffConverter
var plugin = new TiffConverter();
// สร้างอ็อบเจกต์ PdfToTiffOptions เพื่อตั้งค่าคำแนะนำ
var opt = new PdfToTiffOptions();
// เพิ่มเส้นทางไฟล์นำเข้า
opt.AddInput(new FileDataSource("path_to_your_pdf_file.pdf"));
// กำหนดเส้นทางไฟล์ผลลัพธ์
opt.AddOutput(new DirectoryDataSource("path_to_results_directory"));
// ดำเนินการประมวลผล
plugin.Process(opt);
เพิ่มปลั๊กอินใหม่: ตัวสร้างตาราง PDF
- Class TableGenerator: แทนที่ปลั๊กอิน Documentize.TableGenerator ใช้เพื่อเพิ่มตารางในเอกสาร PDF
- Class TableBuilder: คลาสแทนที่ตัวสร้างสำหรับตารางในหน้า pdf
- Class TableRowBuilder: คลาสแทนที่ตัวสร้างสำหรับแถวตาราง
- Class TableCellBuilder: คลาสแทนที่ตัวสร้างสำหรับเซลล์ตาราง
การใช้งานตัวอย่าง:
// สร้าง TableGenerator
var plugin = new TableGenerator();
// สร้างอ็อบเจกต์ TableOptions เพื่อตั้งค่าคำแนะนำ
TableOptions opt = new TableOptions().InsertPageBefore(1)
.AddTable()
.AddRow()
.AddCell().AddParagraph("ชื่อ")
.AddCell().AddParagraph("อายุ")
.AddRow()
.AddCell().AddParagraph("Bob")
.AddCell().AddParagraph("12")
.AddRow()
.AddCell().AddParagraph("Sam")
.AddCell().AddParagraph("20")
.AddRow()
.AddCell().AddParagraph("Sandy")
.AddCell().AddParagraph("26")
.AddRow()
.AddCell().AddParagraph("Tom")
.AddCell().AddParagraph("12")
.AddRow()
.AddCell().AddParagraph("Jim")
.AddCell().AddParagraph("27");
// เพิ่มเส้นทางไฟล์นำเข้า
opt.AddInput(new FileDataSource("path_to_your_pdf_file.pdf"));
// กำหนดเส้นทางไฟล์ผลลัพธ์
opt.AddOutput(new FileDataSource("path_to_the_converted_file.pdf"));
// ดำเนินการประมวลผล
plugin.Process(opt);
เปลี่ยนชื่อ Class PdfDoc เป็น DocConverter
- Class DocConverter: แทนที่ปลั๊กอิน Documentize.DocConverter ใช้เพื่อแปลงเอกสาร PDF เป็นรูปแบบ DOC/DOCX
การใช้งานตัวอย่าง:
// สร้าง DocConverter
var plugin = new DocConverter();
// สร้างอ็อบเจกต์ PdfToDocOptions เพื่อตั้งค่าคำแนะนำ
var opt = new PdfToDocOptions();
// เพิ่มเส้นทางไฟล์นำเข้า
opt.AddInput(new FileDataSource(inputPath));
// กำหนดเส้นทางไฟล์ผลลัพธ์
opt.AddOutput(new FileDataSource(outputPath));
// ดำเนินการประมวลผล
plugin.Process(opt);