mirror of
https://github.com/imgproxy/imgproxy.git
synced 2025-10-10 20:22:31 +02:00
Allow hex-coded background colors; Allow empty background argument
This commit is contained in:
@@ -11,6 +11,7 @@ import (
|
|||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"net/http"
|
"net/http"
|
||||||
|
"regexp"
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
)
|
)
|
||||||
@@ -78,6 +79,13 @@ var resizeTypes = map[string]resizeType{
|
|||||||
|
|
||||||
type color struct{ R, G, B uint8 }
|
type color struct{ R, G, B uint8 }
|
||||||
|
|
||||||
|
var hexColorRegex = regexp.MustCompile("^([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$")
|
||||||
|
|
||||||
|
const (
|
||||||
|
hexColorLongFormat = "%02x%02x%02x"
|
||||||
|
hexColorShortFormat = "%1x%1x%1x"
|
||||||
|
)
|
||||||
|
|
||||||
type processingOptions struct {
|
type processingOptions struct {
|
||||||
Resize resizeType
|
Resize resizeType
|
||||||
Width int
|
Width int
|
||||||
@@ -119,6 +127,25 @@ func (rt resizeType) String() string {
|
|||||||
return ""
|
return ""
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func colorFromHex(hexcolor string) (color, error) {
|
||||||
|
c := color{}
|
||||||
|
|
||||||
|
if !hexColorRegex.MatchString(hexcolor) {
|
||||||
|
return c, fmt.Errorf("Invalid hex color: %s", hexcolor)
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(hexcolor) == 3 {
|
||||||
|
fmt.Sscanf(hexcolor, hexColorShortFormat, &c.R, &c.G, &c.B)
|
||||||
|
c.R *= 17
|
||||||
|
c.G *= 17
|
||||||
|
c.B *= 17
|
||||||
|
} else {
|
||||||
|
fmt.Sscanf(hexcolor, hexColorLongFormat, &c.R, &c.G, &c.B)
|
||||||
|
}
|
||||||
|
|
||||||
|
return c, nil
|
||||||
|
}
|
||||||
|
|
||||||
func (po *processingOptions) isPresetUsed(name string) bool {
|
func (po *processingOptions) isPresetUsed(name string) bool {
|
||||||
for _, usedName := range po.UsedPresets {
|
for _, usedName := range po.UsedPresets {
|
||||||
if usedName == name {
|
if usedName == name {
|
||||||
@@ -282,30 +309,42 @@ func applyGravityOption(po *processingOptions, args []string) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func applyBackgroundOption(po *processingOptions, args []string) error {
|
func applyBackgroundOption(po *processingOptions, args []string) error {
|
||||||
if len(args) != 3 {
|
switch len(args) {
|
||||||
|
case 1:
|
||||||
|
if len(args[0]) == 0 {
|
||||||
|
po.Flatten = false
|
||||||
|
} else if c, err := colorFromHex(args[0]); err == nil {
|
||||||
|
po.Flatten = true
|
||||||
|
po.Background = c
|
||||||
|
} else {
|
||||||
|
return fmt.Errorf("Invalid background argument: %s", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
case 3:
|
||||||
|
po.Flatten = true
|
||||||
|
|
||||||
|
if r, err := strconv.ParseUint(args[0], 10, 8); err == nil && r >= 0 && r <= 255 {
|
||||||
|
po.Background.R = uint8(r)
|
||||||
|
} else {
|
||||||
|
return fmt.Errorf("Invalid background red channel: %s", args[0])
|
||||||
|
}
|
||||||
|
|
||||||
|
if g, err := strconv.ParseUint(args[1], 10, 8); err == nil && g >= 0 && g <= 255 {
|
||||||
|
po.Background.G = uint8(g)
|
||||||
|
} else {
|
||||||
|
return fmt.Errorf("Invalid background green channel: %s", args[1])
|
||||||
|
}
|
||||||
|
|
||||||
|
if b, err := strconv.ParseUint(args[2], 10, 8); err == nil && b >= 0 && b <= 255 {
|
||||||
|
po.Background.B = uint8(b)
|
||||||
|
} else {
|
||||||
|
return fmt.Errorf("Invalid background blue channel: %s", args[2])
|
||||||
|
}
|
||||||
|
|
||||||
|
default:
|
||||||
return fmt.Errorf("Invalid background arguments: %v", args)
|
return fmt.Errorf("Invalid background arguments: %v", args)
|
||||||
}
|
}
|
||||||
|
|
||||||
if r, err := strconv.ParseUint(args[0], 10, 8); err == nil && r >= 0 && r <= 255 {
|
|
||||||
po.Background.R = uint8(r)
|
|
||||||
} else {
|
|
||||||
return fmt.Errorf("Invalid background red channel: %s", args[1])
|
|
||||||
}
|
|
||||||
|
|
||||||
if g, err := strconv.ParseUint(args[1], 10, 8); err == nil && g >= 0 && g <= 255 {
|
|
||||||
po.Background.G = uint8(g)
|
|
||||||
} else {
|
|
||||||
return fmt.Errorf("Invalid background green channel: %s", args[1])
|
|
||||||
}
|
|
||||||
|
|
||||||
if b, err := strconv.ParseUint(args[2], 10, 8); err == nil && b >= 0 && b <= 255 {
|
|
||||||
po.Background.B = uint8(b)
|
|
||||||
} else {
|
|
||||||
return fmt.Errorf("Invalid background blue channel: %s", args[2])
|
|
||||||
}
|
|
||||||
|
|
||||||
po.Flatten = true
|
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user