photoprism/internal/crop/names.go

22 lines
462 B
Go
Raw Normal View History

2021-09-05 15:10:52 +00:00
package crop
import "github.com/photoprism/photoprism/pkg/fs"
// Name represents a crop size name.
type Name string
// Jpeg returns the crop name with a jpeg file extension suffix as string.
func (n Name) Jpeg() string {
return string(n) + fs.JpegExt
}
// Names of standard crop sizes.
const (
Tile50 Name = "tile_50"
Tile100 Name = "tile_100"
2021-09-05 15:10:52 +00:00
Tile160 Name = "tile_160"
Tile224 Name = "tile_224"
2021-09-05 15:10:52 +00:00
Tile320 Name = "tile_320"
Tile500 Name = "tile_500"
2021-09-05 15:10:52 +00:00
)