mirror of
https://github.com/talgo-cloud/talgo-libwebp.git
synced 2026-03-07 21:48:16 -08:00
Rename
This commit is contained in:
parent
9590520a78
commit
f6e482ce15
8 changed files with 21 additions and 21 deletions
2
Makefile
2
Makefile
|
|
@ -1,4 +1,4 @@
|
||||||
repo = github.com/gosuimg/gosu-libwebp
|
repo = github.com/talgo-cloud/talgo-libwebp
|
||||||
build_dir = /tmp
|
build_dir = /tmp
|
||||||
cur_dir = $(shell pwd)
|
cur_dir = $(shell pwd)
|
||||||
libwebp_so = ${LIBWEBP_PREFIX}/lib/libwebp.so
|
libwebp_so = ${LIBWEBP_PREFIX}/lib/libwebp.so
|
||||||
|
|
|
||||||
18
README.md
18
README.md
|
|
@ -1,9 +1,9 @@
|
||||||
gosu-libwebp
|
talgo-libwebp
|
||||||
==========
|
==========
|
||||||
|
|
||||||
A implementation of Go binding for [libwebp](https://developers.google.com/speed/webp/docs/api).
|
A implementation of Go binding for [libwebp](https://developers.google.com/speed/webp/docs/api).
|
||||||
|
|
||||||
Forked from [tidbyt/go-libwebp](https://github.com/harukasan/go-libwebp).
|
Forked from [tidbyt/go-libwebp](https://github.com/tidbyt/go-libwebp).
|
||||||
|
|
||||||
## Dependencies
|
## Dependencies
|
||||||
|
|
||||||
|
|
@ -19,8 +19,8 @@ The [examples](./examples) directory contains example codes and images.
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/gosuimg/gosu-libwebp/test/util"
|
"github.com/talgo-cloud/talgo-libwebp/test/util"
|
||||||
"github.com/gosuimg/gosu-libwebp/webp"
|
"github.com/talgo-cloud/talgo-libwebp/webp"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
|
@ -51,8 +51,8 @@ import (
|
||||||
"bufio"
|
"bufio"
|
||||||
"image"
|
"image"
|
||||||
|
|
||||||
"github.com/gosuimg/gosu-libwebp/test/util"
|
"github.com/talgo-cloud/talgo-libwebp/test/util"
|
||||||
"github.com/gosuimg/gosu-libwebp/webp"
|
"github.com/talgo-cloud/talgo-libwebp/webp"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
|
@ -85,8 +85,8 @@ import (
|
||||||
"image"
|
"image"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/gosuimg/gosu-libwebp/test/util"
|
"github.com/talgo-cloud/talgo-libwebp/test/util"
|
||||||
"github.com/gosuimg/gosu-libwebp/webp"
|
"github.com/talgo-cloud/talgo-libwebp/webp"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
|
@ -137,7 +137,7 @@ func main() {
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
Copyright (c) 2023 GosuImg. All rights reserved.
|
Copyright (c) 2023 Talgo. All rights reserved.
|
||||||
|
|
||||||
This library is released under The BSD 2-Clause License.
|
This library is released under The BSD 2-Clause License.
|
||||||
See [LICENSE](./LICENSE).
|
See [LICENSE](./LICENSE).
|
||||||
|
|
|
||||||
|
|
@ -2,8 +2,8 @@
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/gosuimg/gosu-libwebp/test/util"
|
"github.com/talgo-cloud/talgo-libwebp/test/util"
|
||||||
"github.com/gosuimg/gosu-libwebp/webp"
|
"github.com/talgo-cloud/talgo-libwebp/webp"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
|
|
||||||
|
|
@ -5,8 +5,8 @@ import (
|
||||||
"bufio"
|
"bufio"
|
||||||
"image"
|
"image"
|
||||||
|
|
||||||
"github.com/gosuimg/gosu-libwebp/test/util"
|
"github.com/talgo-cloud/talgo-libwebp/test/util"
|
||||||
"github.com/gosuimg/gosu-libwebp/webp"
|
"github.com/talgo-cloud/talgo-libwebp/webp"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
|
|
||||||
2
go.mod
2
go.mod
|
|
@ -1,3 +1,3 @@
|
||||||
module github.com/gosuimg/gosu-libwebp
|
module github.com/talgo-cloud/talgo-libwebp
|
||||||
|
|
||||||
go 1.20
|
go 1.20
|
||||||
|
|
|
||||||
|
|
@ -4,8 +4,8 @@ import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/gosuimg/gosu-libwebp/test/util"
|
"github.com/talgo-cloud/talgo-libwebp/test/util"
|
||||||
"github.com/gosuimg/gosu-libwebp/webp"
|
"github.com/talgo-cloud/talgo-libwebp/webp"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestDecodeAnimationInfo(t *testing.T) {
|
func TestDecodeAnimationInfo(t *testing.T) {
|
||||||
|
|
|
||||||
|
|
@ -5,8 +5,8 @@ import (
|
||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/gosuimg/gosu-libwebp/test/util"
|
"github.com/talgo-cloud/talgo-libwebp/test/util"
|
||||||
"github.com/gosuimg/gosu-libwebp/webp"
|
"github.com/talgo-cloud/talgo-libwebp/webp"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestEncodeAnimation(t *testing.T) {
|
func TestEncodeAnimation(t *testing.T) {
|
||||||
|
|
|
||||||
|
|
@ -8,8 +8,8 @@ import (
|
||||||
"os"
|
"os"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/gosuimg/gosu-libwebp/test/util"
|
"github.com/talgo-cloud/talgo-libwebp/test/util"
|
||||||
"github.com/gosuimg/gosu-libwebp/webp"
|
"github.com/talgo-cloud/talgo-libwebp/webp"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestMain(m *testing.M) {
|
func TestMain(m *testing.M) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue