-
Notifications
You must be signed in to change notification settings - Fork 9
/
image.go
60 lines (48 loc) · 1.08 KB
/
image.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
package php
import (
"bytes"
"image"
_ "image/gif" // gif format
_ "image/jpeg" // jpeg format
_ "image/png" // png format
"mime"
"os"
)
// ImageInfo stores the info of an image
type ImageInfo struct {
Width int
Height int
Format string
Mime string
}
// GetImageSize gets the size of an image
func GetImageSize(filename string) (ImageInfo, error) {
var info ImageInfo
file, err := os.Open(filename)
defer file.Close()
if err != nil {
return info, err
}
cfg, format, err := image.DecodeConfig(file)
if err != nil {
return info, err
}
info.Width = cfg.Width
info.Height = cfg.Height
info.Format = format
info.Mime = mime.TypeByExtension("." + format)
return info, nil
}
// GetImageSizeFromString gets the size of an image from a string
func GetImageSizeFromString(data []byte) (ImageInfo, error) {
var info ImageInfo
cfg, format, err := image.DecodeConfig(bytes.NewReader(data))
if err != nil {
return info, err
}
info.Width = cfg.Width
info.Height = cfg.Height
info.Format = format
info.Mime = mime.TypeByExtension("." + format)
return info, nil
}