aboutsummaryrefslogtreecommitdiff
path: root/go/images/resizing.go
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2016-06-02 18:09:14 -0700
committerChris Lu <chris.lu@gmail.com>2016-06-02 18:09:14 -0700
commit5ce6bbf07672bf3f3c8d26cd2ce0e3e853a47c44 (patch)
tree2e4dd2ad0a618ab2b7cdebcdb9c503526c31e2e8 /go/images/resizing.go
parentcaeffa3998adc060fa66c4cd77af971ff2d26c57 (diff)
downloadseaweedfs-5ce6bbf07672bf3f3c8d26cd2ce0e3e853a47c44.tar.xz
seaweedfs-5ce6bbf07672bf3f3c8d26cd2ce0e3e853a47c44.zip
directory structure change to work with glide
glide has its own requirements. My previous workaround caused me some code checkin errors. Need to fix this.
Diffstat (limited to 'go/images/resizing.go')
-rw-r--r--go/images/resizing.go46
1 files changed, 0 insertions, 46 deletions
diff --git a/go/images/resizing.go b/go/images/resizing.go
deleted file mode 100644
index 1f4b71fd4..000000000
--- a/go/images/resizing.go
+++ /dev/null
@@ -1,46 +0,0 @@
-package images
-
-import (
- "bytes"
- "image"
- "image/gif"
- "image/jpeg"
- "image/png"
-
- "github.com/chrislusf/seaweedfs/go/glog"
- "github.com/disintegration/imaging"
-)
-
-func Resized(ext string, data []byte, width, height int) (resized []byte, w int, h int) {
- if width == 0 && height == 0 {
- return data, 0, 0
- }
- srcImage, _, err := image.Decode(bytes.NewReader(data))
- if err == nil {
- bounds := srcImage.Bounds()
- var dstImage *image.NRGBA
- if bounds.Dx() > width && width != 0 || bounds.Dy() > height && height != 0 {
- if width == height && bounds.Dx() != bounds.Dy() {
- dstImage = imaging.Thumbnail(srcImage, width, height, imaging.Lanczos)
- w, h = width, height
- } else {
- dstImage = imaging.Resize(srcImage, width, height, imaging.Lanczos)
- }
- } else {
- return data, bounds.Dx(), bounds.Dy()
- }
- var buf bytes.Buffer
- switch ext {
- case ".png":
- png.Encode(&buf, dstImage)
- case ".jpg", ".jpeg":
- jpeg.Encode(&buf, dstImage, nil)
- case ".gif":
- gif.Encode(&buf, dstImage, nil)
- }
- return buf.Bytes(), dstImage.Bounds().Dx(), dstImage.Bounds().Dy()
- } else {
- glog.Error(err)
- }
- return data, 0, 0
-}