-
Notifications
You must be signed in to change notification settings - Fork 0
/
convert.go
173 lines (155 loc) · 5.57 KB
/
convert.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
// Package convert can convert a image to ascii string or matrix
package main
import (
"bytes"
"image"
"image/color"
// Support decode jpeg image
_ "image/jpeg"
// Support deocde the png image
_ "image/png"
"os"
"github.com/pkg/errors"
"github.com/qeesung/image2ascii/ascii"
)
// Options to convert the image to ASCII
type Options struct {
Ratio float64
FixedWidth int
FixedHeight int
FitScreen bool // only work on terminal
StretchedScreen bool // only work on terminal
Colored bool // only work on terminal
Reversed bool
}
// DefaultOptions for convert image
var DefaultOptions = Options{
Ratio: 1,
FixedWidth: -1,
FixedHeight: -1,
FitScreen: true,
Colored: true,
Reversed: false,
StretchedScreen: false,
}
// NewImageConverter create a new image converter
func NewImageConverter() *ImageConverter {
return &ImageConverter{
resizeHandler: NewResizeHandler(),
pixelConverter: ascii.NewPixelConverter(),
}
}
// Converter define the convert image basic operations
type Converter interface {
Image2ASCIIMatrix(image image.Image, imageConvertOptions *Options) []string
Image2ASCIIString(image image.Image, options *Options) string
ImageFile2ASCIIMatrix(imageFilename string, option *Options) []string
ImageFile2ASCIIString(imageFilename string, option *Options) string
Image2PixelASCIIMatrix(image image.Image, imageConvertOptions *Options) [][]ascii.CharPixel
ImageFile2PixelASCIIMatrix(image image.Image, imageConvertOptions *Options) [][]ascii.CharPixel
}
// ImageConverter implement the Convert interface, and responsible
// to image conversion
type ImageConverter struct {
resizeHandler ResizeHandler
pixelConverter ascii.PixelConverter
}
// Image2CharPixelMatrix convert a image to a pixel ascii matrix
func (converter *ImageConverter) Image2CharPixelMatrix(image image.Image, imageConvertOptions *Options) ([][]ascii.CharPixel, error) {
newImage, err := converter.resizeHandler.ScaleImage(image, imageConvertOptions)
if err != nil {
return nil, err
}
sz := newImage.Bounds()
newWidth := sz.Max.X
newHeight := sz.Max.Y
pixelASCIIs := make([][]ascii.CharPixel, 0, newHeight)
for i := 0; i < int(newHeight); i++ {
line := make([]ascii.CharPixel, 0, newWidth)
for j := 0; j < int(newWidth); j++ {
pixel := color.NRGBAModel.Convert(newImage.At(j, i))
// Convert the pixel to ascii char
pixelConvertOptions := ascii.NewOptions()
pixelConvertOptions.Colored = imageConvertOptions.Colored
pixelConvertOptions.Reversed = imageConvertOptions.Reversed
pixelASCII := converter.pixelConverter.ConvertPixelToPixelASCII(pixel, &pixelConvertOptions)
line = append(line, pixelASCII)
}
pixelASCIIs = append(pixelASCIIs, line)
}
return pixelASCIIs, nil
}
// ImageFile2CharPixelMatrix convert a image to a pixel ascii matrix
func (converter *ImageConverter) ImageFile2CharPixelMatrix(imageFilename string, imageConvertOptions *Options) ([][]ascii.CharPixel, error) {
img, err := OpenImageFile(imageFilename)
if err != nil {
return nil, errors.New("open image failed : " + err.Error())
}
return converter.Image2CharPixelMatrix(img, imageConvertOptions)
}
// Image2ASCIIMatrix converts a image to ASCII matrix
func (converter *ImageConverter) Image2ASCIIMatrix(image image.Image, imageConvertOptions *Options) ([]string, error) {
// Resize the convert first
newImage, err := converter.resizeHandler.ScaleImage(image, imageConvertOptions)
if err != nil {
return nil, err
}
sz := newImage.Bounds()
newWidth := sz.Max.X
newHeight := sz.Max.Y
rawCharValues := make([]string, 0, int(newWidth*newHeight+newWidth))
for i := 0; i < int(newHeight); i++ {
for j := 0; j < int(newWidth); j++ {
pixel := color.NRGBAModel.Convert(newImage.At(j, i))
// Convert the pixel to ascii char
pixelConvertOptions := ascii.NewOptions()
pixelConvertOptions.Colored = imageConvertOptions.Colored
pixelConvertOptions.Reversed = imageConvertOptions.Reversed
rawChar := converter.pixelConverter.ConvertPixelToASCII(pixel, &pixelConvertOptions)
rawCharValues = append(rawCharValues, rawChar)
}
rawCharValues = append(rawCharValues, "\n")
}
return rawCharValues, nil
}
// Image2ASCIIString converts a image to ascii matrix, and the join the matrix to a string
func (converter *ImageConverter) Image2ASCIIString(image image.Image, options *Options) (string, error) {
convertedPixelASCII, err := converter.Image2ASCIIMatrix(image, options)
if err != nil {
return "", err
}
var buffer bytes.Buffer
for i := 0; i < len(convertedPixelASCII); i++ {
buffer.WriteString(convertedPixelASCII[i])
}
return buffer.String(), nil
}
// ImageFile2ASCIIMatrix converts a image file to ascii matrix
func (converter *ImageConverter) ImageFile2ASCIIMatrix(imageFilename string, option *Options) ([]string, error) {
img, err := OpenImageFile(imageFilename)
if err != nil {
return nil, errors.New("open image failed : " + err.Error())
}
return converter.Image2ASCIIMatrix(img, option)
}
// ImageFile2ASCIIString converts a image file to ascii string
func (converter *ImageConverter) ImageFile2ASCIIString(imageFilename string, option *Options) (string, error) {
img, err := OpenImageFile(imageFilename)
if err != nil {
return "", errors.New("open image failed : " + err.Error())
}
return converter.Image2ASCIIString(img, option)
}
// OpenImageFile open a image and return a image object
func OpenImageFile(imageFilename string) (image.Image, error) {
f, err := os.Open(imageFilename)
if err != nil {
return nil, err
}
img, _, err := image.Decode(f)
if err != nil {
return nil, err
}
defer f.Close()
return img, nil
}