Compare commits

..

10 Commits

Author SHA1 Message Date
2709034fc3 Update go.mod 2024-12-24 17:40:15 +04:00
aadc89bca0 README update 2024-09-05 14:13:00 +03:00
11aa6e044b now all tests work correctly 2024-09-05 13:50:59 +03:00
c577804946 concat test 2024-09-03 23:07:15 +03:00
7c1911bbda genprof 2024-09-03 19:49:27 +03:00
a49ce499e2 singel pixel test 2024-09-03 10:01:55 +03:00
a78768aeb8 description change 2024-08-20 19:05:56 +03:00
e6889deab6 unexpected stupidity 2024-08-20 10:11:29 +03:00
73d114ef5b readme 2024-08-20 10:07:01 +03:00
d4aec6bcaf tests 2024-08-20 09:04:11 +03:00
9 changed files with 109 additions and 7 deletions

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
child_porn
imageutils.test
cpu.out
profile.out

3
README Normal file
View File

@ -0,0 +1,3 @@
(with a dummy as fuck image rescaling)
utilities work in theory, but doing everything very slow.
i really love Go's image.Image interface type, but its really hard to do something with it well.

View File

@ -21,9 +21,9 @@ type pair struct {
}
// Takes color.Model of the first Image.
func (p pair) ColorModel() color.Model { return p.first.ColorModel() }
func (p *pair) ColorModel() color.Model { return p.first.ColorModel() }
func (p pair) Bounds() image.Rectangle {
func (p *pair) Bounds() image.Rectangle {
var (
b1 = p.first.Bounds()
b2 = p.second.Bounds()
@ -52,7 +52,7 @@ func (p pair) Bounds() image.Rectangle {
}
}
func (p pair) At(x, y int) color.Color {
func (p *pair) At(x, y int) color.Color {
img := image.NewRGBA(p.Bounds())
point := image.Point{}
@ -86,7 +86,7 @@ func (p pair) At(x, y int) color.Color {
return img.At(x, y)
}
func render(p pair) image.Image {
func render(p *pair) image.Image {
img := image.NewRGBA(p.Bounds())
point := image.Point{}
@ -122,5 +122,5 @@ func render(p pair) image.Image {
// Concat concatenates second image on a given side.
func Concat(i1, i2 image.Image, s Side) image.Image {
return render(pair{i1, i2, s})
return render(&pair{i1, i2, s})
}

24
concat_test.go Normal file
View File

@ -0,0 +1,24 @@
package imageutils
import (
"image"
"image/png"
"io"
"testing"
)
func BenchmarkConcat(b *testing.B) {
var instance image.Image = image.NewRGBA(image.Rect(0, 0, 0, 0))
pixel := SinglePixel{}
for i := 0; i < b.N; i++ {
instance = Concat(instance, pixel, Right)
}
err := png.Encode(
io.Discard,
instance,
)
if err != nil {
panic(err)
}
}

2
genprof Executable file
View File

@ -0,0 +1,2 @@
go test -cpuprofile=profile.out -bench=$1 &&
go tool pprof -text profile.out

6
go.mod
View File

@ -1,3 +1,5 @@
module github.com/potassium5703/imageutils
module git.niplace.ru/XoxJlopeZi4BB/imageutils
go 1.21.4
go 1.22.6
require github.com/potassium5703/texture v0.0.0-20240820054037-fce43fc4b0f0 // indirect

2
go.sum Normal file
View File

@ -0,0 +1,2 @@
github.com/potassium5703/texture v0.0.0-20240820054037-fce43fc4b0f0 h1:sowjIIVme5ovcdB0kjP3w+4xbVNrlOPdx7Up4LIGJz8=
github.com/potassium5703/texture v0.0.0-20240820054037-fce43fc4b0f0/go.mod h1:KwM7hMpZhr3XySWuK/SZ7s1BXVQe8p1IyZftYg9KtWY=

45
scale_test.go Normal file
View File

@ -0,0 +1,45 @@
package imageutils
import (
"image"
"image/color"
"image/draw"
"image/png"
"io"
"testing"
"github.com/potassium5703/texture"
)
func Render(img image.Image, rect image.Rectangle) image.Image {
newimg := image.NewRGBA(rect)
draw.Draw(newimg, rect, image.White, image.ZP, draw.Src)
draw.Draw(newimg, rect, img, image.ZP, draw.Over)
return newimg
}
func BenchmarkScale(b *testing.B) {
for i := 0; i < b.N; i++ {
err := png.Encode(io.Discard,
Scale(Render(
texture.New(color.White,
color.Black, 2),
image.Rect(0, 0, 64, 64),
), 64),
)
if err != nil {
panic(err)
}
}
}
func BenchmarkSinglePixel(b *testing.B) {
instance := SinglePixel{}
err := png.Encode(io.Discard,
Scale(instance, b.N),
)
if err != nil {
panic(err)
}
}

20
util.go Normal file
View File

@ -0,0 +1,20 @@
package imageutils
import (
"image"
"image/color"
)
type SinglePixel struct{}
func (s SinglePixel) At(x, y int) color.Color {
return color.White
}
func (s SinglePixel) ColorModel() color.Model {
return color.RGBAModel
}
func (s SinglePixel) Bounds() image.Rectangle {
return image.Rect(0, 0, 1, 1)
}