You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
256 B

// +build !go1.7
package bimg
// Resize is used to transform a given image as byte buffer
// with the passed options.
// Used as proxy to resizer() only in Go <= 1.6 versions
func Resize(buf []byte, o Options) ([]byte, error) {
return resizer(buf, o)
}