mirror of
https://github.com/golang/go
synced 2024-11-18 05:44:47 -07:00
image: add an example that shows how to get the metadata of an image
This is a simple but everyday use case in image libraries. Currently, there is one example in this library and it is lengthy and involved.
This commit is contained in:
parent
6070e432d2
commit
f5743c8ef3
@ -21,6 +21,15 @@ import (
|
||||
_ "image/jpeg"
|
||||
)
|
||||
|
||||
func Example_decodeConfig() {
|
||||
reader := base64.NewDecoder(base64.StdEncoding, strings.NewReader(data))
|
||||
config, format, err := image.DecodeConfig(reader)
|
||||
if err != nil {
|
||||
log.Fatal(err)
|
||||
}
|
||||
fmt.Println("Width:", config.Width, "Height:", config.Height, "Format:", format)
|
||||
}
|
||||
|
||||
func Example() {
|
||||
// Decode the JPEG data. If reading from file, create a reader with
|
||||
//
|
||||
|
Loading…
Reference in New Issue
Block a user