func ConvertToPdf(d *document.Document) *creator.Creator
ConvertToPdf converts document to PDF file. This package is beta, breaking changes can take place.
func ConvertToPdfWithOptions(d *document.Document, opts *Options) *creator.Creator
ConvertToPdfWithOptions convert the document to PDF with file given options.
func RegisterFont(name string, style FontStyle, font *model.PdfFont)
RegisterFont makes a PdfFont accessible for using in converting to PDF.
func RegisterFontsFromDirectory(dirName string) error
RegisterFontsFromDirectory registers all fonts from the given directory automatically detecting font families and styles. For composite fonts use RegisterCompositeFontsFromDirectory.
FontStyle represents a kind of font styling. It can be FontStyle_Regular, FontStyle_Bold, FontStyle_Italic and FontStyle_BoldItalic.
type FontStyle = convertutils.FontStyle
const ( FontStyle_Regular FontStyle = 0 FontStyle_Bold FontStyle = 1 FontStyle_Italic FontStyle = 2 FontStyle_BoldItalic FontStyle = 3 )
Options contains the options for convert process - e.g ProcessFields is when document contains fields and the value need to be processed also.
type Options struct { // ProcessFields process the document fields if set to true, default is false. ProcessFields bool }