mirror of
https://github.com/status-im/status-go.git
synced 2025-01-21 12:11:44 +00:00
23 lines
236 B
Go
23 lines
236 B
Go
package images
|
|
|
|
const (
|
|
UNKNOWN FileType = 1 + iota
|
|
|
|
// Raster image types
|
|
JPEG
|
|
PNG
|
|
GIF
|
|
WEBP
|
|
)
|
|
|
|
type Details struct {
|
|
SizePixel uint
|
|
SizeFile int64
|
|
Quality int
|
|
FileName string
|
|
Properties string
|
|
}
|
|
|
|
type FileType uint
|
|
|