tags:

views:

59

answers:

2

I have a working program in C++ that generates data for a Mandelbrot Set. I am able to get the color map image of the Mandelbrot set using gnuplot. In order to save the image, I just take a screenshot which doesn't give a very accurate image.

how I can use a Python script in order to produce and save the image.

A: 

The Python Imaging Library is the standard means to produce 2D images and image files in Python.

msw
A: 

Source code Draw a Mandelbrot Set (Python)

PIL and NumPy ofcourse ;)

TheMachineCharmer