Skip to content

Latest commit

 

History

History
22 lines (12 loc) · 655 Bytes

README.md

File metadata and controls

22 lines (12 loc) · 655 Bytes

Emf

Enhanced Metafile Format (MS-EMF) reader and converter. Supports only png output.

Installation

go get github.com/pzinovkin/emf/cmd/emftopng

Usage

Calling by passing file path as an argument will generate image in the folder next to source emf file.

emftopng /path/to/image.emf

Also supports stdin. Image will be written to stdout.

emftopng < image.emf > image.png

Credits

Credits to github.com/pzinovkin/emf for the awesome work of this emf package. Removed the vendor folder to make it work with go modules import.