seekia/imported/goeffects/image.go

13 lines
217 B
Go

package goeffects
// Package copied from https://github.com/markdaws/go-effects
import "image"
// Image wrapper around internal pixels
type Image struct {
img *image.RGBA
Bounds Rect
Width int
Height int
}