تقديم أحرف تكميلية Unicode في الإخراج PDF بواسطة Aspose.Cells

تقديم أحرف تكميلية Unicode في الإخراج PDF بواسطة Aspose.Cells

توضح لقطة الشاشة التالية كيف قدم Aspose.Cells ملفملف اكسل المصدر داخل الالإخراج PDF. كما ترى ، تم تقديم جميع أحرف Unicode التكميلية الثلاثة تمامًا كما فعلت بواسطة Microsoft Excel.

ما يجب القيام به: image_بديل_نص

عينة من الرموز

يمكنك استخدام نموذج التعليمات البرمجية هذا للتحويلملف اكسل المصدر داخلالإخراج PDF.

// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET
// The path to the documents directory.
string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
// Load your source excel file containing Unicode Supplementary characters
Workbook wb = new Workbook(dataDir + "unicode-supplementary-characters.xlsx");
// Save the workbook
wb.Save(dataDir + "RenderUnicodeInOutput_out.pdf");