savefig

mipylib.plotlib.miplot.savefig(fname, width=None, height=None, dpi=None, sleep=None)

Save the current figure.

Parameters
  • fname – (string) A string containing a path to a filename. The output format is deduced from the extension of the filename. Supported format: ‘png’, ‘bmp’, ‘jpg’, ‘eps’ and ‘pdf’.

  • width – (int) Optional, width of the output figure with pixel units. Default is None, the output figure size is same as figures window.

  • height – (int) Optional, height of the output figure with pixel units. Default is None, the output figure size is same as figures window.

  • dpi – (int) Optional, figure resolution.

  • sleep – (int) Optional, sleep seconds. For web map tiles loading.

Examples:

savefig('D:/Temp/test.png', width=800, height=600)
savefig('D:/Temp/test.png', width=800, height=600, dpi=300)