// The convert package convert a image to ascii string or matrix
package convert
import (
"bytes"
"github.com/qeesung/image2ascii/ascii"
"image"
"image/color"
"log"
"os"
)
type Options struct {
Ratio float64
ExpectedWidth int
ExpectedHeight int
FitScreen bool
Colored bool
}
// Convert a image to ascii matrix
func Image2ASCIIMatrix(image image.Image, imageConvertOptions *Options) []string {
// Resize the convert first
newImage := ScaleImage(image, imageConvertOptions)
sz := newImage.Bounds()
newWidth := sz.Max.Y
newHeight := sz.Max.X
rawCharValues := make([]string, int(newWidth*newHeight))
for i := 0; i < int(newWidth); i++ {
for j := 0; j < int(newHeight); j++ {
pixel := color.NRGBAModel.Convert(newImage.At(j, i))
// Convert the pixel to ascii char
pixelConvertOptions := ascii.NewOptions()
pixelConvertOptions.Colored = imageConvertOptions.Colored
rawChar := ascii.ConvertPixelToASCII(pixel, &pixelConvertOptions)
rawCharValues = append(rawCharValues, rawChar)
}
rawCharValues = append(rawCharValues, "\n")
}
return rawCharValues
}
// Convert a image to ascii matrix, then concat the matrix value
// to a long string for easy display
func Image2ASCIIString(image image.Image, options *Options) string {
convertedPixelASCII := Image2ASCIIMatrix(image, options)
var buffer bytes.Buffer
for i := 0; i < len(convertedPixelASCII); i++ {
buffer.WriteString(convertedPixelASCII[i])
}
return buffer.String()
}
// Convert a image file to ascii string
func ImageFile2ASCIIString(imageFilename string, option *Options) string {
f, err := os.Open(imageFilename)
if err != nil {
log.Fatal(err)
}
img, _, err := image.Decode(f)
if err != nil {
log.Fatal(err)
}
f.Close()
return Image2ASCIIString(img, option)
}