استخراج الخطوط من PDF
Contents
[
Hide
]
في حال كنت ترغب في الحصول على جميع الخطوط من مستند PDF، يمكنك استخدام الطريقة Document.IDocumentFontUtilities.getAllFonts()
المقدمة في فئة Document. يرجى التحقق من مقطع الشيفرة التالي للحصول على جميع الخطوط من مستند PDF موجود:
public static void Extract_Fonts() throws FileNotFoundException
{
// المسار إلى دليل المستندات.
String filePath = "<... أدخل اسم الملف ...>";
// تحميل مستند PDF
com.aspose.pdf.Document pdfDocument = new com.aspose.pdf.Document(filePath);
com.aspose.pdf.Font[] fonts = pdfDocument.getFontUtilities().getAllFonts();
for (com.aspose.pdf.Font font : fonts)
{
font.save(new FileOutputStream(font.getFontName()));
}
}