mirror of
https://github.com/photoprism/photoprism.git
synced 2026-01-23 02:24:24 +00:00
11 lines
211 B
Go
11 lines
211 B
Go
package thumb
|
|
|
|
// Lib identifies the image processing backend.
|
|
type Lib = string
|
|
|
|
// Supported image processing libraries.
|
|
const (
|
|
LibAuto Lib = "auto"
|
|
LibVips Lib = "vips"
|
|
LibImaging Lib = "imaging"
|
|
)
|