You are reading an old version of the documentation (v2.2.5). For the latest version see https://matplotlib.org/stable/gallery/images_contours_and_fields/figimage_demo.html
Version 2.2.5
matplotlib
Fork me on GitHub

Table of Contents

Related Topics

Figimage Demo

This illustrates placing images directly in the figure, with no Axes objects.

import numpy as np
import matplotlib
import matplotlib.cm as cm
import matplotlib.pyplot as plt


fig = plt.figure()
Z = np.arange(10000).reshape((100, 100))
Z[:, 50:] = 1

im1 = fig.figimage(Z, xo=50, yo=0, origin='lower')
im2 = fig.figimage(Z, xo=100, yo=100, alpha=.8, origin='lower')

plt.show()
../../_images/sphx_glr_figimage_demo_001.png

References

The use of the following functions, methods, classes and modules is shown in this example:

Out:

<function figimage at 0x7fd7572c7670>

Keywords: matplotlib code example, codex, python plot, pyplot Gallery generated by Sphinx-Gallery