SingleByteEncoder
Base class from which single byte encoders are derived.
public abstract class SingleByteEncoder : Encoder
Public MustInherit Class SingleByteEncoder
Inherits Encoder
Inheritance: ObjectEncoderSingleByteEncoder
Licensing Info
This class is a DynamicPDF Core Suite Essentials feature. One of the following is required for non-evaluation usage:
- Any active DynamicPDF Subscription (Essentials, Professional, Professional Plus or Ultimate).
- A DynamicPDF Core Suite for .NET v12.X Essentials license.
- It can also be used for free with a public link back to www.dynamicpdf.com and with the DynamicPDF Essentials message displaying on the bottom of each page.
Examples
This example shows how to Change the encoding of a built in font.Imports System
Imports ceTe.DynamicPDF
Imports ceTe.DynamicPDF.Text
Imports ceTe.DynamicPDF.PageElements
Module MyModule
Sub Main()
' Create a PDF Document
Dim MyDocument As Document = New Document
' Create a Page and add it to the document
Dim MyPage As Page = New Page
MyDocument.Pages.Add(MyPage)
' Create a core font with a specified encoding
Dim MyCentralEuropeHelveticaFont As Font = New Helvetica(Encoder.CentralEurope)
' Use the font in a text area Page Element
MyPage.Elements.Add(New TextArea("Text using the Central Europe encoder", 0, 0, 200, 12, MyCentralEuropeHelveticaFont, 12))
' Save the PDF document
MyDocument.Draw("C:\MyDocument.pdf")
End Sub
End Module
using System;
using ceTe.DynamicPDF;
using ceTe.DynamicPDF.PageElements;
using ceTe.DynamicPDF.Text;
public class Example
{
public static void CreatePDF(string outputPath)
{
// Create a PDF Document
Document document = new Document();
// Create a Page and add it to the document
Page page = new Page();
document.Pages.Add(page);
// Create a core font with a specified encoding
Font centralEuropeHelveticaFont = new Helvetica(Encoder.CentralEurope);
// Use the font in a text area Page Element
page.Elements.Add(new TextArea("Text using the Central Europe encoder", 0, 0, 250, 12, centralEuropeHelveticaFont, 12));
// Save the PDF document
document.Draw(outputPath);
}
}
Remarks
See the Text Encodings topic for more details on this.
Properties
IsBuiltInEncoding | Gets a value specifying if the encoding is built-in to PDF. |
SpaceIs0x20 | Gets a value indicating if the encoder uses a single byte 0x20 value for spaces. (Inherited from Encoder) |
Methods
Decode(Byte) | Decodes a single character. |
DrawEncoding(DocumentWriter) | Draws the encoding to the given DocumentWriter object. (Inherited from Encoder) |
Encode(Char) | Encodes a single character. |
Encode(FontSubsetter, Char[], Int32, Int32, Boolean) | Encodes the specified text. |
Equals(Object) | Determines whether the specified Object is equal to the current Object . (Inherited from Object) |
GetHashCode() | Serves as a hash function for a particular type. (Inherited from Object) |
GetType() | Gets the Type of the current instance. (Inherited from Object) |
ToString() | Returns a String that represents the current Object . (Inherited from Object) |