053a67f1e4
Signed-off-by: Michael Mayer <michael@photoprism.app>
46 lines
1 KiB
Go
46 lines
1 KiB
Go
package thumb
|
|
|
|
import (
|
|
"image"
|
|
"path/filepath"
|
|
|
|
"github.com/disintegration/imaging"
|
|
|
|
"github.com/photoprism/photoprism/pkg/clean"
|
|
"github.com/photoprism/photoprism/pkg/fs"
|
|
)
|
|
|
|
// Jpeg converts an image to JPEG, saves it, and returns it.
|
|
func Jpeg(srcFile, jpgFile string, orientation int) (img image.Image, err error) {
|
|
// Resolve symlinks.
|
|
if srcFile, err = fs.Resolve(srcFile); err != nil {
|
|
log.Debugf("jpeg: %s in %s (resolve filename)", err, clean.Log(srcFile))
|
|
return img, err
|
|
}
|
|
|
|
// Open source image.
|
|
img, err = imaging.Open(srcFile)
|
|
|
|
// Failed?
|
|
if err != nil {
|
|
log.Debugf("jpeg: failed to open %s", clean.Log(filepath.Base(srcFile)))
|
|
return img, err
|
|
}
|
|
|
|
// Adjust orientation.
|
|
if orientation > 1 {
|
|
img = Rotate(img, orientation)
|
|
}
|
|
|
|
// Get JPEG quality setting.
|
|
quality := JpegQuality.EncodeOption()
|
|
|
|
// Save JPEG file.
|
|
if err = imaging.Save(img, jpgFile, quality); err != nil {
|
|
log.Errorf("jpeg: failed to save %s", clean.Log(filepath.Base(jpgFile)))
|
|
return img, err
|
|
}
|
|
|
|
// Return JPEG image.
|
|
return img, nil
|
|
}
|