mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
image/png: make the CompressionLevel constants negative, reserving
positive numbers to mean a numeric zlib compression level. LGTM=bradfitz, ruiu R=bradfitz, ruiu CC=golang-codereviews, jeff.allen https://golang.org/cl/138860043
This commit is contained in:
parent
a287567d3c
commit
686ecd83c0
1 changed files with 7 additions and 4 deletions
|
|
@ -33,10 +33,13 @@ type encoder struct {
|
|||
type CompressionLevel int
|
||||
|
||||
const (
|
||||
DefaultCompression CompressionLevel = iota
|
||||
NoCompression
|
||||
BestSpeed
|
||||
BestCompression
|
||||
DefaultCompression CompressionLevel = 0
|
||||
NoCompression CompressionLevel = -1
|
||||
BestSpeed CompressionLevel = -2
|
||||
BestCompression CompressionLevel = -3
|
||||
|
||||
// Positive CompressionLevel values are reserved to mean a numeric zlib
|
||||
// compression level, although that is not implemented yet.
|
||||
)
|
||||
|
||||
// Big-endian.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue