Files
prevara/image.go

52 lines
1.1 KiB
Go

// SPDX-License-Identifier: Unlicense OR MIT
package gel
import (
"image"
"gioui.org/layout"
"gioui.org/op/clip"
"gioui.org/op/paint"
"gioui.org/unit"
)
// Image is a widget that displays an image.
type Image struct {
// src is the image to display.
src paint.ImageOp
// scale is the ratio of image pixels to dps. If scale is zero Image falls back to a scale that match a standard 72
// DPI.
scale float32
}
func (th *Theme) Image() *Image {
return &Image{}
}
func (i *Image) Src(img paint.ImageOp) *Image {
i.src = img
return i
}
func (i *Image) Scale(scale float32) *Image {
i.scale = scale
return i
}
func (i Image) Fn(gtx layout.Context) layout.Dimensions {
scale := i.scale
if scale == 0 {
scale = 160.0 / 72.0
}
size := i.src.Size()
wf, hf := float32(size.X), float32(size.Y)
w, h := gtx.Dp(unit.Dp(wf*scale)), gtx.Dp(unit.Dp(hf*scale))
cs := gtx.Constraints
d := cs.Constrain(image.Pt(w, h))
defer clip.Rect(image.Rectangle{Max: d}).Push(gtx.Ops).Pop()
i.src.Add(gtx.Ops)
paint.PaintOp{}.Add(gtx.Ops)
return layout.Dimensions{Size: size}
}