package
module
Version:
v0.0.0-...-5ab4bd5
Opens a new window with list of versions in this module.
Published: Oct 27, 2021
License: MIT
Opens a new window with license information.
Imports: 9
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
README
¶
ipin-go
How to use
$ go get -u -v github.com/bslizon/ipin-go
package main
import (
"os"
ipingo "github.com/bslizon/ipin-go"
)
func main() {
b, err := ipingo.GetNormalizedPNG("/tmp/from.png")
if err != nil {
panic(err)
}
f, err := os.Create("/tmp/to.png")
if err != nil {
panic(err)
}
defer f.Close()
if _, err := f.Write(b); err != nil {
panic(err)
}
}
Documentation
¶
Source Files
¶
Click to show internal directories.
Click to hide internal directories.