PsDocument.ConvertType3FontToTTF

ConvertType3FontToTTF(string, string)

Converts Type 3 font to TrueType. The name of the converted TTF font will be the same as input Type 3 font file with “.ttf” extension. TTF file will be saved to assigned output directory.

public void ConvertType3FontToTTF(string type3FontFilePath, string outputDir)
ParameterTypeDescription
type3FontFilePathStringThe Type 3 font file path.
outputDirStringOutput dir where to save resulting TrueType font.

See Also


ConvertType3FontToTTF(string, Stream)

Converts Type 3 font to TrueType stream.

public void ConvertType3FontToTTF(string type3FontFilePath, Stream outputStream)
ParameterTypeDescription
type3FontFilePathStringThe Type 3 font file path.
outputStreamStreamOutput stream where to save resulting TrueType font.

See Also