mirror of
https://github.com/lvgl/lvgl.git
synced 2025-01-28 07:03:00 +08:00
32 lines
785 B
Python
32 lines
785 B
Python
CANVAS_WIDTH = 50
|
|
CANVAS_HEIGHT = 50
|
|
|
|
LV_COLOR_SIZE = 32
|
|
#
|
|
# Draw a rectangle to the canvas
|
|
#
|
|
# Create a buffer for the canvas
|
|
cbuf = bytearray((LV_COLOR_SIZE // 8) * CANVAS_WIDTH * CANVAS_HEIGHT)
|
|
|
|
# Create a canvas and initialize its palette*/
|
|
canvas = lv.canvas(lv.scr_act())
|
|
canvas.set_buffer(cbuf, CANVAS_WIDTH, CANVAS_HEIGHT, lv.img.CF.TRUE_COLOR)
|
|
|
|
canvas.fill_bg(lv.color_hex3(0xccc), lv.OPA.COVER)
|
|
canvas.center()
|
|
|
|
dsc = lv.draw_rect_dsc_t()
|
|
dsc.init()
|
|
|
|
dsc.bg_color = lv.palette_main(lv.PALETTE.RED)
|
|
dsc.border_color = lv.palette_main(lv.PALETTE.BLUE)
|
|
dsc.border_width = 3
|
|
dsc.outline_color = lv.palette_main(lv.PALETTE.GREEN)
|
|
dsc.outline_width = 2
|
|
dsc.outline_pad = 2
|
|
dsc.outline_opa = lv.OPA._50
|
|
dsc.radius = 5
|
|
dsc.border_width = 3
|
|
canvas.draw_rect(10, 10, 30, 20, dsc)
|
|
|