123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- package renderer
- import (
- "errors"
- "image"
- "image/jpeg"
- "os"
- "path/filepath"
- "github.com/nfnt/resize"
- "github.com/oliamb/cutter"
- _ "github.com/oov/psd"
- )
- func generateThumbnailForPSD(inputFile string, outputFolder string) error {
- if _, err := os.Stat(inputFile); os.IsNotExist(err) {
- return errors.New("Input file does not exist")
- }
- outputFile := filepath.Join(outputFolder, filepath.Base(inputFile)+".jpg")
- f, err := os.Open(outputFile)
- if err != nil {
- return err
- }
- //Decode the image content with PSD decoder
- img, _, err := image.Decode(f)
- if err != nil {
- return err
- }
- f.Close()
- //Check boundary to decide resize mode
- b := img.Bounds()
- imgWidth := b.Max.X
- imgHeight := b.Max.Y
- var m image.Image
- if imgWidth > imgHeight {
- m = resize.Resize(0, 480, img, resize.Lanczos3)
- } else {
- m = resize.Resize(480, 0, img, resize.Lanczos3)
- }
- //Crop out the center
- croppedImg, err := cutter.Crop(m, cutter.Config{
- Width: 480,
- Height: 480,
- Mode: cutter.Centered,
- })
- outf, err := os.Create(outputFile)
- if err != nil {
- return err
- }
- opt := jpeg.Options{
- Quality: 90,
- }
- err = jpeg.Encode(outf, croppedImg, &opt)
- if err != nil {
- return err
- }
- outf.Close()
- return nil
- }
|