Hello folks, In this short post, I will explain how to use pen input control with two simple examples: projecting the pen input as an image and collecting the pen input as a value.
Project the Pen Input to an image.
In the Power Apps studio, select + Insert – Input – Pet input

and then add an Image.

![]() |
![]() |
pen-input with Image in action
Save Pen Input into a Collection
As a continuation of the previous example, what I will add is a button and the below code in the OnSelect action.
| Info: To clear the collection before saving the record, I will use ClearCollect. |
ClearCollect(
signatures,
{
Sign: PenInput1.Image
}
)
Save a pen input into a collection in action


