Like every thing else, this is not my strong suit. I would just like to render/draw the built in images as @omz does with a tint_color
In the code Snippet below, you can see I have been trying some things. I am sure it's so easy if you know how. I really do try before asking here. Then the brain just gets full.
if self.image_name:
with ui.GState():
ui.set_color('blue')
#ui.set_shadow()
#ui.set_blend_mode(30)
#print(ui.BLEND_DESTINATION_IN)
img = ui.Image.named(self.image_name)
img_rect = ui.Rect(*bounds).inset(*self.image_margin)
if img:
img.draw(*img_rect)
Edit. Black and white pictures from Pythonista selection render fine, but only in black or white