mirror of
https://github.com/unidoc/unipdf.git
synced 2025-05-07 19:29:16 +08:00
18 lines
322 B
Go
18 lines
322 B
Go
/*
|
|
* This file is subject to the terms and conditions defined in
|
|
* file 'LICENSE.txt', which is part of this source code package.
|
|
*/
|
|
|
|
//
|
|
// Font resources for PDF file creation and manipulations.
|
|
//
|
|
|
|
package pdf
|
|
|
|
import ()
|
|
|
|
func loadFont(fontName string) {
|
|
// Open the font file.
|
|
// Load the widths, other content?
|
|
}
|