mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-10-15 20:06:19 +08:00
fix image serving performance problem introduced in last release.
This commit is contained in:
@@ -125,15 +125,15 @@ func (vs *VolumeServer) GetOrHeadHandler(w http.ResponseWriter, r *http.Request,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if ext == ".png" || ext == ".jpg" || ext == ".gif" {
|
if ext == ".png" || ext == ".jpg" || ext == ".gif" {
|
||||||
if srcImage, _, err := image.Decode(bytes.NewReader(n.Data)); err == nil {
|
width, height := 0, 0
|
||||||
width, height := 0, 0
|
if r.FormValue("width") != "" {
|
||||||
if r.FormValue("width") != "" {
|
width, _ = strconv.Atoi(r.FormValue("width"))
|
||||||
width, _ = strconv.Atoi(r.FormValue("width"))
|
}
|
||||||
}
|
if r.FormValue("height") != "" {
|
||||||
if r.FormValue("height") != "" {
|
height, _ = strconv.Atoi(r.FormValue("height"))
|
||||||
height, _ = strconv.Atoi(r.FormValue("height"))
|
}
|
||||||
}
|
if width != 0 || height != 0 {
|
||||||
if width != 0 || height != 0 {
|
if srcImage, _, err := image.Decode(bytes.NewReader(n.Data)); err == nil {
|
||||||
bounds := srcImage.Bounds()
|
bounds := srcImage.Bounds()
|
||||||
var dstImage *image.NRGBA
|
var dstImage *image.NRGBA
|
||||||
if width == height && bounds.Dx() != bounds.Dy() {
|
if width == height && bounds.Dx() != bounds.Dy() {
|
||||||
|
Reference in New Issue
Block a user