status-go/images/meta.go

42 lines
1.0 KiB
Go
Raw Normal View History

package images
const (
2020-10-26 15:16:41 +00:00
UNKNOWN ImageType = 1 + iota
// Raster image types
JPEG
PNG
GIF
WEBP
)
const (
MaxJpegQuality = 80
MinJpegQuality = 50
)
var (
2020-10-27 14:42:42 +00:00
ResizeDimensions = []ResizeDimension{80, 240}
// DimensionSizeLimit the size limits imposed on each resize dimension
// Figures are based on the following sample data https://github.com/status-im/status-react/issues/11047#issuecomment-694970473
2020-10-22 15:59:01 +00:00
DimensionSizeLimit = map[ResizeDimension]DimensionLimits{
80: {
Ideal: 2560, // Base on the largest sample image at quality 60% (2,554 bytes ∴ 1024 * 2.5)
Max: 5632, // Base on the largest sample image at quality 80% + 50% margin (3,683 bytes * 1.5 ≈ 5500 ∴ 1024 * 5.5)
},
240: {
Ideal: 16384, // Base on the largest sample image at quality 60% (16,143 bytes ∴ 1024 * 16)
Max: 38400, // Base on the largest sample image at quality 80% + 50% margin (24,290 bytes * 1.5 ≈ 37500 ∴ 1024 * 37.5)
},
}
)
2020-10-22 15:59:01 +00:00
type DimensionLimits struct {
Ideal int
Max int
}
2020-10-26 15:16:41 +00:00
type ImageType uint
2020-10-22 15:59:01 +00:00
type ResizeDimension uint