How to save VennDiagram as .png file in matplotlib_venn

brb

I would like to save a venn diagram as a .png (or some other file) to insert into a document. I am using matplotlib_venn.

Following the solution here:

How to save VennDiagram as PNG figure in matplotlib_venn

I just get an empty (white) .png file as follows:

enter image description here

My code is:

from matplotlib_venn import venn2
from matplotlib import pyplot as plt

venn2(subsets=(5,8,4))
plt.savefig(path+'venn1A.png')

EDIT:

I am using ATOM IDE and it displays the Venn diagram automatically (ie plt.show() implicitly). As per Anurag Dabas's solution below, submitting both lines of code together works. Thanks for the solution.

Anurag Dabas

write plt.savefig(path+'venn1A.png') before plt.show() because plt.show() free memory space taken by graph so if you write plt.savefig(path+'venn1A.png') after plt.show() then you will got an empty(white) image.

Note:-if you don't provide the .png extension then by default savefig() method saves images in png format

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to save VennDiagram as .png file in matplotlib_venn

From Dev

How to save VennDiagram as PNG figure in matplotlib_venn

From Dev

How to save a drawn signature into a png file in ios

From Dev

How to save a png file into database, FLASK?

From Dev

How to save an .EPS file to PNG with transparency in Python

From Dev

How to save Leaflet in R map as png or jpg file?

From Dev

How To Save PNG file From NSImage (retina issues) The Right Way?

From Dev

Save BitmapData/ByteArray as a PNG file

From Dev

How to save a canvas as PNG in Selenium?

From Dev

How to Save UIImage to a Transparent PNG?

From Dev

How to save a html element as a png

From Dev

Photoshop How to save selection to PNG

From Dev

How to Save Filters with PNG in Inkscape

From Dev

How to Save UIImage to a Transparent PNG?

From Dev

How to save a html element as a png

From Dev

How to force the labels to fit in VennDiagram?

From Dev

How to force the labels to fit in VennDiagram?

From Dev

Plot venn diagram with pandas and matplotlib_venn

From Dev

ValueError while trying to save a pixmap as a png file

From Dev

android, save view image as png file

From Dev

in NetworkX cannot save a graph as jpg or png file

From Dev

How can I save a byte array as a png file on disk using SaveFileDialog in C#?

From Dev

How can I save a byte array as a png file on disk using SaveFileDialog in C#?

From Dev

How to save severel image(.png,.jpg) file in same folder without SavefileDialog in C#

From Dev

R: don't write log file for VennDiagram

From Dev

Swift: how to save the whole scrollable UITableVIew to PNG

From Dev

How to save raw image data to png image?

From Dev

How to save current chart in ChartPanel as PNG programmatically?

From Dev

How to save a pandas DataFrame table as a png

Related Related

  1. 1

    How to save VennDiagram as .png file in matplotlib_venn

  2. 2

    How to save VennDiagram as PNG figure in matplotlib_venn

  3. 3

    How to save a drawn signature into a png file in ios

  4. 4

    How to save a png file into database, FLASK?

  5. 5

    How to save an .EPS file to PNG with transparency in Python

  6. 6

    How to save Leaflet in R map as png or jpg file?

  7. 7

    How To Save PNG file From NSImage (retina issues) The Right Way?

  8. 8

    Save BitmapData/ByteArray as a PNG file

  9. 9

    How to save a canvas as PNG in Selenium?

  10. 10

    How to Save UIImage to a Transparent PNG?

  11. 11

    How to save a html element as a png

  12. 12

    Photoshop How to save selection to PNG

  13. 13

    How to Save Filters with PNG in Inkscape

  14. 14

    How to Save UIImage to a Transparent PNG?

  15. 15

    How to save a html element as a png

  16. 16

    How to force the labels to fit in VennDiagram?

  17. 17

    How to force the labels to fit in VennDiagram?

  18. 18

    Plot venn diagram with pandas and matplotlib_venn

  19. 19

    ValueError while trying to save a pixmap as a png file

  20. 20

    android, save view image as png file

  21. 21

    in NetworkX cannot save a graph as jpg or png file

  22. 22

    How can I save a byte array as a png file on disk using SaveFileDialog in C#?

  23. 23

    How can I save a byte array as a png file on disk using SaveFileDialog in C#?

  24. 24

    How to save severel image(.png,.jpg) file in same folder without SavefileDialog in C#

  25. 25

    R: don't write log file for VennDiagram

  26. 26

    Swift: how to save the whole scrollable UITableVIew to PNG

  27. 27

    How to save raw image data to png image?

  28. 28

    How to save current chart in ChartPanel as PNG programmatically?

  29. 29

    How to save a pandas DataFrame table as a png

HotTag

Archive