-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
doc.go
52 lines (40 loc) · 1.35 KB
/
doc.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/*
stackblur-go is a Go port of the Stackblur algorithm.
Stackblur is a compromise between Gaussian blur and Box blur, but it creates much better looking blurs than Box blur and it is ~7x faster than Gaussian blur.
The API is very simple and easy to integrate into any project. You only need to invoke the Process function which receive an image and a radius as parameters and returns the blurred version of the provided image.
func Process(src image.Image, radius uint32) (*image.NRGBA, error)
Below is a very simple example of how you can use this package.
package main
import (
"image"
"image/jpeg"
"log"
"os"
"github.com/esimov/stackblur-go"
)
func main() {
var radius uint32 = 5
f, err := os.Open("sample.png")
if err != nil {
log.Fatalf("could not open source file: %v", err)
}
defer f.Close()
img, _, err := image.Decode(f)
if err != nil {
log.Fatalf("could not decode source file: %v", err)
}
src, err := stackblur.Process(img, radius)
if err != nil {
log.Fatal(err)
}
output, err := os.OpenFile("output.jpg", os.O_CREATE|os.O_RDWR, 0755)
if err != nil {
log.Fatalf("could not open destination file: %v", err)
}
defer output.Close()
if err = jpeg.Encode(output, src, &jpeg.Options{Quality: 100}); err != nil {
log.Fatalf("could not encode destination image: %v", err)
}
}
*/
package stackblur