Class BatchJob
- Namespace
- KernSmith
- Assembly
- KernSmith.dll
Describes a single font generation job within a batch. Exactly one font source (FontData, FontPath, or SystemFont) should be specified.
public sealed class BatchJob
- Inheritance
-
BatchJob
- Inherited Members
Properties
FontData
Raw font data bytes. Takes priority over FontPath and SystemFont.
public byte[]? FontData { get; init; }
Property Value
- byte[]
FontPath
Path to a font file on disk.
public string? FontPath { get; init; }
Property Value
Options
Generation options for this job.
public required FontGeneratorOptions Options { get; init; }
Property Value
SystemFont
System font family name (e.g., "Arial").
public string? SystemFont { get; init; }