> For the complete documentation index, see [llms.txt](https://doc.open-tx.org/opentx-lua-reference-guide/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://doc.open-tx.org/opentx-lua-reference-guide/part_iii_-_opentx_lua_api_reference/lcd_functions/drawpixmap.md).

# lcd.drawPixmap(x, y, name)

Draws a bitmap at (x,y)

@status current Introduced in 2.0.0

### Parameters

* `x,y` (positive numbers) starting coordinate
* `name` (string) full path to the bitmap on SD card (i.e. “/BMP/test.bmp”)

### Return value

none

## Examples

[lcd/drawPixmap-example](https://raw.githubusercontent.com/opentx/lua-reference-guide/master/lcd/drawPixmap-example.lua)

```lua
local function run(event)
  lcd.clear()
  lcd.drawText(1,1,"drawPixmap() example", 0)
  lcd.drawPixmap(96, 0, "/bmp/lua.bmp")
end

return{run=run}
```

![](https://2443226175-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-MRzpA5IZ0ZG8wYxAV6k%2Fsync%2F6def3add62130aa4c0fe1112a7a8749d168fc4c7.png?generation=1611683701518256\&alt=media)
