Завантаження та вилучення даних | .NET

Завантажте шрифт CFF з диска

API Aspose.Font для .NET дозволяє читати типи шрифтів CFF із файлів, що зберігаються у вашому цифровому сховищі. Файли шрифтів CFF, що зберігаються на диску, можна завантажити, виконавши такі дії.

1// For complete examples and data files, please go to https://github.com/aspose-font/Aspose.Font-for-.NET
2string fileName = dataDir + "OpenSans-Regular.cff"; //Font file name with full path
3
4FontDefinition fd = new FontDefinition(FontType.CFF, new FontFileDefinition("cff", new FileSystemStreamSource(fileName)));
5CffFont ttfFont = Aspose.Font.Font.Open(fd) as CffFont;

Завантажити шрифт CFF із байтового масиву

Ви також можете завантажити шрифти CFF із потоку, використовуючи наступний зразок коду.

1// For complete examples and data files, please go to https://github.com/aspose-font/Aspose.Font-for-.NET
2byte[] fontMemoryData = File.ReadAllBytes(dataDir + "OpenSans-Regular.cff");
3FontDefinition fd = new FontDefinition(FontType.CFF, new FontFileDefinition("cff", new ByteContentStreamSource(fontMemoryData)));
4CffFont cffFont = Aspose.Font.Font.Open(fd) as CffFont;

Have any questions about Aspose.Font?



Subscribe to Aspose Product Updates

Get monthly newsletters & offers directly delivered to your mailbox.