2020-01-06 14:32:15 +01:00
|
|
|
package thumb
|
|
|
|
|
|
|
|
var (
|
2022-04-01 13:25:25 +02:00
|
|
|
SizePrecached = 2048
|
|
|
|
SizeUncached = 7680
|
|
|
|
Filter = ResampleLanczos
|
2020-01-06 14:32:15 +01:00
|
|
|
)
|
|
|
|
|
2023-07-18 15:15:04 +02:00
|
|
|
// MaxSize returns the max supported size in pixels.
|
2020-05-05 15:42:54 +02:00
|
|
|
func MaxSize() int {
|
2021-09-05 12:32:08 +02:00
|
|
|
if SizePrecached > SizeUncached {
|
|
|
|
return SizePrecached
|
2020-05-05 15:42:54 +02:00
|
|
|
}
|
|
|
|
|
2020-07-18 17:33:02 +02:00
|
|
|
return SizeUncached
|
2020-05-05 15:42:54 +02:00
|
|
|
}
|
|
|
|
|
2023-07-18 15:15:04 +02:00
|
|
|
// InvalidSize tests if the size in pixels is invalid.
|
2020-05-05 15:42:54 +02:00
|
|
|
func InvalidSize(size int) bool {
|
|
|
|
return size < 0 || size > MaxSize()
|
|
|
|
}
|
|
|
|
|
2023-07-18 15:15:04 +02:00
|
|
|
// SizeList represents a list of sizes.
|
|
|
|
type SizeList []Size
|
|
|
|
|
2022-07-06 23:01:54 +02:00
|
|
|
// SizeMap maps size names to sizes.
|
2021-09-05 13:48:53 +02:00
|
|
|
type SizeMap map[Name]Size
|
2020-05-13 15:36:42 +02:00
|
|
|
|
2023-07-18 15:15:04 +02:00
|
|
|
// All returns a slice containing all sizes.
|
|
|
|
func (m SizeMap) All() SizeList {
|
|
|
|
result := make(SizeList, 0, len(m))
|
|
|
|
|
|
|
|
for _, s := range m {
|
|
|
|
result = append(result, s)
|
|
|
|
}
|
|
|
|
|
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
2021-09-05 13:48:53 +02:00
|
|
|
// Sizes contains the properties of all thumbnail sizes.
|
2021-09-05 12:32:08 +02:00
|
|
|
var Sizes = SizeMap{
|
2023-07-18 15:15:04 +02:00
|
|
|
Tile50: {Tile50, Tile500, "List View", 50, 50, false, false, []ResampleOption{ResampleFillCenter, ResampleDefault}},
|
|
|
|
Tile100: {Tile100, Tile500, "Places View", 100, 100, false, false, []ResampleOption{ResampleFillCenter, ResampleDefault}},
|
|
|
|
Tile224: {Tile224, Tile500, "TensorFlow, Mosaic View", 224, 224, false, false, []ResampleOption{ResampleFillCenter, ResampleDefault}},
|
|
|
|
Tile500: {Tile500, "", "Cards View", 500, 500, false, false, []ResampleOption{ResampleFillCenter, ResampleDefault}},
|
2022-07-06 23:01:54 +02:00
|
|
|
Colors: {Colors, Fit720, "Color Detection", 3, 3, false, false, []ResampleOption{ResampleResize, ResampleNearestNeighbor, ResamplePng}},
|
|
|
|
Left224: {Left224, Fit720, "TensorFlow", 224, 224, false, false, []ResampleOption{ResampleFillTopLeft, ResampleDefault}},
|
|
|
|
Right224: {Right224, Fit720, "TensorFlow", 224, 224, false, false, []ResampleOption{ResampleFillBottomRight, ResampleDefault}},
|
2023-07-18 15:15:04 +02:00
|
|
|
Fit720: {Fit720, "", "SD TV, Mobile", 720, 720, true, true, []ResampleOption{ResampleFit, ResampleDefault}},
|
|
|
|
Fit1280: {Fit1280, Fit2048, "HD TV, SXGA", 1280, 1024, true, true, []ResampleOption{ResampleFit, ResampleDefault}},
|
|
|
|
Fit1920: {Fit1920, Fit2048, "Full HD", 1920, 1200, true, true, []ResampleOption{ResampleFit, ResampleDefault}},
|
|
|
|
Fit2048: {Fit2048, "", "DCI 2K, Tablets", 2048, 2048, true, true, []ResampleOption{ResampleFit, ResampleDefault}},
|
|
|
|
Fit2560: {Fit2560, "", "Quad HD, Notebooks", 2560, 1600, true, true, []ResampleOption{ResampleFit, ResampleDefault}},
|
|
|
|
Fit3840: {Fit3840, "", "4K Ultra HD", 3840, 2400, true, true, []ResampleOption{ResampleFit, ResampleDefault}}, // Deprecated in favor of fit_4096
|
|
|
|
Fit4096: {Fit4096, "", "DCI 4K, Retina 4K", 4096, 4096, true, true, []ResampleOption{ResampleFit, ResampleDefault}},
|
|
|
|
Fit7680: {Fit7680, "", "8K Ultra HD 2", 7680, 4320, true, true, []ResampleOption{ResampleFit, ResampleDefault}},
|
2020-01-13 11:07:09 +01:00
|
|
|
}
|