Update README.md
1 files changed, 7 insertions(+), 1 deletions(-) M README.md
M README.md => README.md +7 -1
@@ 98,8 98,14 @@ import ( ) func main() { // Create convert options convertOptions := convert.DefaultOptions convertOptions.FixedWidth = 100 convertOptions.FixedHeight = 40 // Create the image converter converter := convert.NewImageConverter() fmt.Print(converter.ImageFile2ASCIIString(imageFilename, convertOptions)) fmt.Print(converter.ImageFile2ASCIIString(imageFilename, &convertOptions)) } ```