Note
Go to the end to download the full example code.
Image#
Image is a plotter that displays static images.
from marsilea.plotter import Image
import numpy as np
import matplotlib.pyplot as plt
_, ax = plt.subplots()
Image([
"https://www.iconfinder.com/icons/4375050/download/png/512",
"https://www.iconfinder.com/icons/8666426/download/png/512",
"https://www.iconfinder.com/icons/652581/download/png/512"
], align="right").render(ax)

Total running time of the script: (0 minutes 1.150 seconds)