BoldItalicEmulation.cs
- //
- // This code is part of Document Solutions for PDF demos.
- // Copyright (c) MESCIUS inc. All rights reserved.
- //
- using System;
- using System.IO;
- using System.Drawing;
- using GrapeCity.Documents.Pdf;
- using GrapeCity.Documents.Text;
- using GCTEXT = GrapeCity.Documents.Text;
- using GCDRAW = GrapeCity.Documents.Drawing;
-
- namespace DsPdfWeb.Demos.Basics
- {
- // Sample shows how to control bold and/or italic emulation when using normal fonts.
- public class BoldItalicEmulation
- {
- public int CreatePDF(Stream stream)
- {
- var fc = new FontCollection();
- fc.RegisterDirectory(Path.Combine("Resources", "Fonts"));
- var doc = new GcPdfDocument();
- var g = doc.NewPage().Graphics;
- var rc = Common.Util.AddNote(
- "TextFormat.FontStyle enables using Bold and/or Italic emulation\n" +
- "on a regular (not a bold/italic) font.", doc.Pages.Last);
- // Text insertion point:
- var ip = new PointF(rc.Left, rc.Bottom + 36);
- var tf = new TextFormat();
- // We specifically get a non-bold/non-italic version of the font:
- tf.Font = fc.FindFamilyName("Times New Roman", false, false);
- tf.FontSize = 16;
- g.DrawString($"Regular Times font: {tf.Font.FullFontName}", tf, ip);
- ip.Y += 36;
- // Draw some strings using the same (regular) font but emulating bold and italic:
- tf.FontStyle = GCTEXT.FontStyle.Bold;
- g.DrawString($"Bold emulation using font: {tf.Font.FullFontName}", tf, ip);
- ip.Y += 36;
- tf.FontStyle = GCTEXT.FontStyle.Italic;
- g.DrawString($"Italic emulation using font: {tf.Font.FullFontName}", tf, ip);
- ip.Y += 36;
- tf.FontStyle = GCTEXT.FontStyle.BoldItalic;
- g.DrawString($"Bold+Italic emulation using font: {tf.Font.FullFontName}", tf, ip);
- ip.Y += 36;
- //
- // Now we render some strings using the "real" bold/italic variants of the font:
- tf.FontStyle = GCTEXT.FontStyle.Regular;
- tf.Font = fc.FindFamilyName("Times New Roman", true, false);
- g.DrawString($"Using real bold font: {tf.Font.FullFontName}", tf, ip);
- ip.Y += 36;
- tf.Font = fc.FindFamilyName("Times New Roman", false, true);
- g.DrawString($"Using real italic font: {tf.Font.FullFontName}", tf, ip);
- ip.Y += 36;
- tf.Font = fc.FindFamilyName("Times New Roman", true, true);
- g.DrawString($"Using real bold italic font: {tf.Font.FullFontName}", tf, ip);
- ip.Y += 36;
- // Done:
- doc.Save(stream);
- return doc.Pages.Count;
- }
- }
- }
-