mirror of
https://github.com/unidoc/unipdf.git
synced 2025-05-01 22:17:29 +08:00
13 lines
367 B
Go
13 lines
367 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
|
|
|
|
// NewZapfDingbatsEncoder returns a SimpleEncoder that implements ZapfDingbatsEncoding.
|
|
func NewZapfDingbatsEncoder() SimpleEncoder {
|
|
enc, _ := NewSimpleTextEncoder("ZapfDingbatsEncoding", nil)
|
|
return enc
|
|
}
|