> For the complete documentation index, see [llms.txt](https://imgo.gitbook.io/en/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://imgo.gitbook.io/en/api/toimage.md).

# ToImage

Return the instance of `image.Image` of the image.

## Parameters

None

## Return Values

The instance of `image.Image`.

## Examples

```go
package main

import (
    "fmt"
    "github.com/fishtailstudio/imgo"
)

func main() {
    img := imgo.Load("gopher.png").ToImage()
    fmt.Println(img.Bounds())
}
```

Output:

```
(0,0)-(189,256)
```
