disable buggy transparency

This commit is contained in:
Thomas Rudin 2019-02-28 20:20:59 +01:00
parent df8d542549
commit dc3fe0d2d5
2 changed files with 9 additions and 8 deletions

View File

@ -4,11 +4,12 @@ import (
"bufio" "bufio"
"bytes" "bytes"
"errors" "errors"
"github.com/sirupsen/logrus"
"image/color" "image/color"
"mapserver/vfs" "mapserver/vfs"
"strconv" "strconv"
"strings" "strings"
"github.com/sirupsen/logrus"
) )
type ColorMapping struct { type ColorMapping struct {
@ -65,10 +66,10 @@ func (m *ColorMapping) LoadBytes(buffer []byte) (int, error) {
if len(parts) >= 5 { if len(parts) >= 5 {
//with alpha //with alpha
a, err = strconv.ParseInt(parts[4], 10, 32) //a, err = strconv.ParseInt(parts[4], 10, 32)
if err != nil { //if err != nil {
return 0, err // return 0, err
} //}
} }
c := color.RGBA{uint8(r), uint8(g), uint8(b), uint8(a)} c := color.RGBA{uint8(r), uint8(g), uint8(b), uint8(a)}

View File

@ -21,8 +21,8 @@ func TestNewMapping(t *testing.T) {
panic("no color") panic("no color")
} }
if c.A != 128 { //if c.A != 128 {
panic("wrong alpha") // panic("wrong alpha")
} //}
} }