~dricottone/image2ascii

22ac3f4150192689afdab755b6b665d73fc2e1b8 — 秦世成 6 years ago 5435fd0
Update README.md
1 files changed, 4 insertions(+), 4 deletions(-)

M README.md
M README.md => README.md +4 -4
@@ 120,14 120,14 @@ type Options struct {
supported convert function
```golang
type Converter interface {
    // convert a image object to ascii matrix
	// convert a image object to ascii matrix
	Image2ASCIIMatrix(image image.Image, imageConvertOptions *Options) []string
	// convert a image object to ascii matrix and then join the matrix to a string
    Image2ASCIIString(image image.Image, options *Options) string
	Image2ASCIIString(image image.Image, options *Options) string
	// convert a image object by input a string to ascii matrix
    ImageFile2ASCIIMatrix(imageFilename string, option *Options) []string
	ImageFile2ASCIIMatrix(imageFilename string, option *Options) []string
	// convert a image object by input a string to ascii matrix then join the matrix to a string
    ImageFile2ASCIIString(imageFilename string, option *Options) string
	ImageFile2ASCIIString(imageFilename string, option *Options) string
}
```