mirror of
https://github.com/go-vgo/robotgo.git
synced 2025-06-03 07:33:55 +00:00
add more image examples
This commit is contained in:
parent
6e237b8ca9
commit
98daa9a2af
1
.gitignore
vendored
1
.gitignore
vendored
@ -6,6 +6,7 @@
|
|||||||
examples/screen/screen
|
examples/screen/screen
|
||||||
examples/screen/saveCapture.png
|
examples/screen/saveCapture.png
|
||||||
examples/bitmap/test.png
|
examples/bitmap/test.png
|
||||||
|
examples/bitmap/test2.png
|
||||||
examples/bitmap/test.tif
|
examples/bitmap/test.tif
|
||||||
examples/bitmap/test31.tif
|
examples/bitmap/test31.tif
|
||||||
test/test.png
|
test/test.png
|
||||||
|
@ -12,8 +12,10 @@ package main
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"log"
|
||||||
|
|
||||||
"github.com/go-vgo/robotgo"
|
"github.com/go-vgo/robotgo"
|
||||||
|
"github.com/vcaesar/imgo"
|
||||||
// "go-vgo/robotgo"
|
// "go-vgo/robotgo"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -79,6 +81,15 @@ func main() {
|
|||||||
robotgo.SaveBitmap(bitmap, "test.png")
|
robotgo.SaveBitmap(bitmap, "test.png")
|
||||||
robotgo.SaveBitmap(bitmap, "test31.tif", 1)
|
robotgo.SaveBitmap(bitmap, "test31.tif", 1)
|
||||||
|
|
||||||
|
img, name, err := robotgo.DecodeImg("test.png")
|
||||||
|
if err != nil {
|
||||||
|
log.Println("decode image ", err)
|
||||||
|
}
|
||||||
|
fmt.Println("decode test.png", img, name)
|
||||||
|
|
||||||
|
byt := robotgo.OpenImg("test.png")
|
||||||
|
imgo.Save("test2.png", byt)
|
||||||
|
|
||||||
// convert image
|
// convert image
|
||||||
robotgo.Convert("test.png", "test.tif")
|
robotgo.Convert("test.png", "test.tif")
|
||||||
|
|
||||||
|
@ -12,8 +12,10 @@ package main
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"log"
|
||||||
|
|
||||||
"github.com/go-vgo/robotgo"
|
"github.com/go-vgo/robotgo"
|
||||||
|
"github.com/vcaesar/imgo"
|
||||||
// "go-vgo/robotgo"
|
// "go-vgo/robotgo"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -219,6 +221,15 @@ func bitmap() {
|
|||||||
robotgo.SaveBitmap(bitmap, "test.png")
|
robotgo.SaveBitmap(bitmap, "test.png")
|
||||||
robotgo.SaveBitmap(bitmap, "test31.tif", 1)
|
robotgo.SaveBitmap(bitmap, "test31.tif", 1)
|
||||||
|
|
||||||
|
img, name, err := robotgo.DecodeImg("test.png")
|
||||||
|
if err != nil {
|
||||||
|
log.Println("decode image ", err)
|
||||||
|
}
|
||||||
|
fmt.Println("decode test.png", img, name)
|
||||||
|
|
||||||
|
byt := robotgo.OpenImg("test.png")
|
||||||
|
imgo.Save("test2.png", byt)
|
||||||
|
|
||||||
// convert image
|
// convert image
|
||||||
robotgo.Convert("test.png", "test.tif")
|
robotgo.Convert("test.png", "test.tif")
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user