Add SaveJPG method

This commit is contained in:
Dave Bevan 2019-04-12 18:25:28 +01:00
parent 0403632d5b
commit 1236b6346f

View File

@ -140,6 +140,11 @@ func (dc *Context) SavePNG(path string) error {
return SavePNG(path, dc.im)
}
// SaveJPG encodes the image as a JPG and writes it to disk.
func (dc *Context) SaveJPG(path string, quality int) error {
return SaveJPG(path, dc.im, quality)
}
// EncodePNG encodes the image as a PNG and writes it to the provided io.Writer.
func (dc *Context) EncodePNG(w io.Writer) error {
return png.Encode(w, dc.im)