تسطيح جميع الحقول في ملف PDF موجود (واجهات)
Contents
[
Hide
]
تسمح لك دالة flattenAllFields(..) من فئة Form بتسطيح جميع الحقول في نموذج PDF. تحتاج أولاً إلى إنشاء كائن Form، ربط ملف PDF المصدر ثم استدعاء دالة flattenAllFields(…) وأخيراً حفظ ملف PDF المحدّث باستخدام دالة save(..).
يظهر لك الكود التالي كيفية تسطيح جميع الحقول في ملف PDF.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-pdf/Aspose.Pdf-for-Java | |
// open document | |
Form pdfForm = new Form(); | |
// bind source PDF file | |
pdfForm.bindPdf("input.pdf"); | |
// flatten fields | |
pdfForm.flattenAllFields(); | |
// save output | |
pdfForm.save("output.pdf"); |