Aspose.Cells ile çıktı PDF de Unicode Ek Sayısal karakterlerin oluşturulması

Aspose.Cells ile çıktı PDF’de Unicode Ek Sayısal karakterlerin oluşturulması

Aşağıdaki ekran görüntüsü, Aspose.Cells’ın kaynak excel dosyasını çıktı PDF’ye nasıl dönüştürdüğünü göstermektedir. Görebileceğiniz gibi, tüm üç Unicode Ek Sayısal karakter Microsoft Excel tarafından yapılan gibi tam olarak oluşturulmuştur.

todo:image_alt_text

Örnek Kod

Kaynak excel dosyasını çıktı PDF’ye dönüştürmek için bu örnek kodu kullanabilirsiniz.

// 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");