XpsFont Class
Assembly: ReachFramework (in reachframework.dll)
The XpsFont class has no public constructor.
Use the AddFont method to add a font and obtain a reference to it in a new document.
Use the GetFont method to obtain a font reference in an existing document.
Based on settings of XpsSerializationManager and XpsPackagingPolicy, such as FontSubsetterCommitPolicies and PackageInterleavingOrder, the flush operation of the Commit method of the XpsFont class may be delayed until the whole XpsDocument is closed.
The following example shows how to add fonts to an XpsDocument.
// -------------------------- AddPageResources ---------------------------- private Dictionary<string, List<XpsResource>> AddPageResources(IXpsFixedPageWriter fixedPageWriter) { // Collection of all resources for this page. // Key: "XpsImage", "XpsFont" // Value: List of XpsImage or XpsFont Dictionary<string, List<XpsResource>> resources = new Dictionary<string, List<XpsResource>>(); // Collections of images and fonts used in the current page. List<XpsResource> xpsImages = new List<XpsResource>(); List<XpsResource> xpsFonts = new List<XpsResource>(); try { XpsImage xpsImage; XpsFont xpsFont; // Add, Write, and Commit image1 to the current page. xpsImage = fixedPageWriter.AddImage(XpsImageType.JpegImageType); WriteToStream(xpsImage.GetStream(), image1); xpsImage.Commit(); xpsImages.Add(xpsImage); // Add image1 as a required resource. // Add, Write, and Commit font 1 to the current page. xpsFont = fixedPageWriter.AddFont(); WriteObfuscatedStream( xpsFont.Uri.ToString(), xpsFont.GetStream(), font1); xpsFont.Commit(); xpsFonts.Add(xpsFont); // Add font1 as a required resource. // Add, Write, and Commit image2 to the current page. xpsImage = fixedPageWriter.AddImage(XpsImageType.TiffImageType); WriteToStream(xpsImage.GetStream(), image2); xpsImage.Commit(); xpsImages.Add(xpsImage); // Add image2 as a required resource. // Add, Write, and Commit font2 to the current page. xpsFont = fixedPageWriter.AddFont(false); WriteToStream(xpsFont.GetStream(), font2); xpsFont.Commit(); xpsFonts.Add(xpsFont); // Add font2 as a required resource. // Return the image and font resources in a combined collection. resources.Add("XpsImage", xpsImages); resources.Add("XpsFont", xpsFonts); return resources; } catch (XpsPackagingException xpsException) { throw xpsException; } }// end:AddPageResources()
For the complete sample, see Creating an XPS Document Sample.
System.Windows.Xps.Packaging.XpsPartBase
System.Windows.Xps.Packaging.XpsResource
System.Windows.Xps.Packaging.XpsFont
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.