v24.12
Προστέθηκε νέο Plugin: PDF σε PNG Μετατροπέας
- Class PngConverter: Αντιπροσωπεύει το plugin Documentize.PngConverter. Χρησιμοποιείται για τη μετατροπή εγγράφων PDF σε μορφή PNG.
- Class PdfToPngOptions: Αντιπροσωπεύει τις επιλογές μετατροπής PDF σε PNG για το plugin Documentize.PngConverter.
Παράδειγμα Χρήσης:
// create PngConverter
var plugin = new PngConverter();
// create PdfToPngOptions object to set instructions
var opt = new PdfToPngOptions();
// add input file path
opt.AddInput(new FileDataSource("path_to_your_pdf_file.pdf"));
// set output file path
opt.AddOutput(new DirectoryDataSource("path_to_results_directory"));
// perform the process
plugin.Process(opt);
Προστέθηκε νέο Plugin: PDF σε TIFF Μετατροπέας
- Class TiffConverter: Αντιπροσωπεύει το plugin Documentize.TiffConverter. Χρησιμοποιείται για τη μετατροπή εγγράφων PDF σε μορφή TIFF.
- Class PdfToTiffOptions: Αντιπροσωπεύει τις επιλογές μετατροπής PDF σε TIFF για το plugin Documentize.TiffConverter.
Παράδειγμα Χρήσης:
// create TiffConverter
var plugin = new TiffConverter();
// create PdfToTiffOptions object to set instructions
var opt = new PdfToTiffOptions();
// add input file path
opt.AddInput(new FileDataSource("path_to_your_pdf_file.pdf"));
// set output file path
opt.AddOutput(new DirectoryDataSource("path_to_results_directory"));
// perform the process
plugin.Process(opt);
Προστέθηκε νέο Plugin: Δημιουργός Πίνακα PDF
- Class TableGenerator: Αντιπροσωπεύει το plugin Documentize.TableGenerator. Χρησιμοποιείται για την προσθήκη ενός πίνακα σε ένα έγγραφο PDF.
- Class TableBuilder: Η Class αντιπροσωπεύει τον κατασκευαστή για τον πίνακα στη σελίδα PDF.
- Class TableRowBuilder: Η Class αντιπροσωπεύει τον κατασκευαστή για μια γραμμή πίνακα.
- Class TableRowBuilder: Η Class αντιπροσωπεύει τον κατασκευαστή για ένα κελί πίνακα.
Παράδειγμα Χρήσης:
// create TableGenerator
var plugin = new TableGenerator();
// create TableOptions object to set instructions
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");
// add input file path
opt.AddInput(new FileDataSource("path_to_your_pdf_file.pdf"));
// set output file path
opt.AddOutput(new FileDataSource("path_to_the_converted_file.pdf"));
// perform the process
plugin.Process(opt);
Μετονομάστηκε η Class PdfDoc σε DocConverter
- Class DocConverter: Αντιπροσωπεύει το plugin Documentize.DocConverter. Χρησιμοποιείται για τη μετατροπή εγγράφων PDF σε μορφή DOC/DOCX.
Παράδειγμα Χρήσης:
// create DocConverter
var plugin = new DocConverter();
// create PdfToDocOptions object to set instructions
var opt = new PdfToDocOptions();
// add input file path
opt.AddInput(new FileDataSource(inputPath));
// set output file path
opt.AddOutput(new FileDataSource(outputPath));
// perform the process
plugin.Process(opt);