44 lines
1.4 KiB
Python
44 lines
1.4 KiB
Python
_CANVAS_WIDTH = 200
|
|
_CANVAS_HEIGHT = 150
|
|
LV_IMG_ZOOM_NONE = 256
|
|
|
|
rect_dsc = lv.draw_rect_dsc_t()
|
|
rect_dsc.init()
|
|
rect_dsc.radius = 10
|
|
rect_dsc.bg_opa = lv.OPA.COVER
|
|
rect_dsc.bg_grad.dir = lv.GRAD_DIR.HOR
|
|
rect_dsc.bg_grad.stops[0].color = lv.palette_main(lv.PALETTE.RED)
|
|
rect_dsc.bg_grad.stops[1].color = lv.palette_main(lv.PALETTE.BLUE)
|
|
rect_dsc.border_width = 2
|
|
rect_dsc.border_opa = lv.OPA._90
|
|
rect_dsc.border_color = lv.color_white()
|
|
rect_dsc.shadow_width = 5
|
|
rect_dsc.shadow_ofs_x = 5
|
|
rect_dsc.shadow_ofs_y = 5
|
|
|
|
label_dsc = lv.draw_label_dsc_t()
|
|
label_dsc.init()
|
|
label_dsc.color = lv.palette_main(lv.PALETTE.YELLOW)
|
|
|
|
cbuf = bytearray(_CANVAS_WIDTH * _CANVAS_HEIGHT * 4)
|
|
|
|
canvas = lv.canvas(lv.scr_act())
|
|
canvas.set_buffer(cbuf, _CANVAS_WIDTH, _CANVAS_HEIGHT, lv.img.CF.TRUE_COLOR)
|
|
canvas.center()
|
|
canvas.fill_bg(lv.palette_lighten(lv.PALETTE.GREY, 3), lv.OPA.COVER)
|
|
|
|
canvas.draw_rect(70, 60, 100, 70, rect_dsc)
|
|
canvas.draw_text(40, 20, 100, label_dsc, "Some text on text canvas")
|
|
|
|
# Test the rotation. It requires another buffer where the original image is stored.
|
|
# So copy the current image to buffer and rotate it to the canvas
|
|
|
|
img = lv.img_dsc_t()
|
|
img.data = cbuf[:]
|
|
img.header.cf = lv.img.CF.TRUE_COLOR
|
|
img.header.w = _CANVAS_WIDTH
|
|
img.header.h = _CANVAS_HEIGHT
|
|
|
|
canvas.fill_bg(lv.palette_lighten(lv.PALETTE.GREY, 3), lv.OPA.COVER)
|
|
canvas.transform(img, 30, LV_IMG_ZOOM_NONE, 0, 0, _CANVAS_WIDTH // 2, _CANVAS_HEIGHT // 2, True)
|