mirror of
https://github.com/unidoc/unipdf.git
synced 2025-05-04 22:17:22 +08:00

- Added Type1 font parsing. - Added Standard 14 font parsing. - Fixed some bugs in cmap code. - Started re-structuring of font code. Moved common font fields to `fontSkeleton`
12 lines
273 B
Go
12 lines
273 B
Go
/*
|
|
* This file is subject to the terms and conditions defined in
|
|
* file 'LICENSE.md', which is part of this source code package.
|
|
*/
|
|
|
|
package textencoding
|
|
|
|
func NewWinAnsiTextEncoder() SimpleEncoder {
|
|
enc, _ := NewSimpleTextEncoder("WinAnsiEncoding", nil)
|
|
return enc
|
|
}
|