github.com/hi-fi/sss/print@v0.0.0-20230212204231-b8661fcee5d7/pkg/pdf/model.go (about)

     1  package pdf
     2  
     3  type Font struct {
     4  	Font     string
     5  	Style    string
     6  	FilePath string
     7  }
     8  
     9  type Image struct {
    10  	Data   []byte
    11  	Type   string
    12  	Width  int
    13  	Height int
    14  }