How to draw a pixel in Julia Graphics?

How to draw a pixel in Julia Graphics?
eg - in C programming we draw a pixel by function putpixel(x,y)

which modules or Pkg i need to install please help me

I am using Plots Pkg and GR as backend

What do you mean by a pixel?
You can draw a point at position (1, 2) with

using Plots

scatter([1], [2])
1 Like