mirror of
https://github.com/photoprism/photoprism.git
synced 2025-12-12 00:34:13 +01:00
12 lines
211 B
Go
12 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"
|
|
)
|