| 1 |
#!/usr/bin/python |
#!/usr/bin/python |
| 2 |
|
|
| 3 |
import cgi, Image, ImageDraw, sys, math |
import cgi, Image, ImageDraw, sys, math, signal, errno, os |
| 4 |
from string import atoi, atof |
from string import atoi, atof |
| 5 |
|
|
| 6 |
|
def handler(signum, frame): |
| 7 |
|
raise os.error, (errno.ETIME, "Timer expired") |
| 8 |
|
|
| 9 |
|
signal.alarm(55) |
| 10 |
|
signal.signal(signal.SIGALRM, handler) |
| 11 |
|
|
| 12 |
# This is to get backtrace output |
# This is to get backtrace output |
| 13 |
sys.stderr = sys.stdout |
sys.stderr = sys.stdout |
| 14 |
|
|
| 34 |
if form.has_key('cx'): |
if form.has_key('cx'): |
| 35 |
cx= atof(form['cx'].value) |
cx= atof(form['cx'].value) |
| 36 |
else: |
else: |
| 37 |
cx= 0 |
cx= 0.0 |
| 38 |
|
|
| 39 |
if form.has_key('cy'): |
if form.has_key('cy'): |
| 40 |
cy= atof(form['cy'].value) |
cy= atof(form['cy'].value) |
| 41 |
else: |
else: |
| 42 |
cy= 0 |
cy= 0.0 |
| 43 |
|
|
| 44 |
if form.has_key('diag'): |
if form.has_key('diag'): |
| 45 |
diag= atof(form['diag'].value) |
diag= atof(form['diag'].value) |
| 46 |
else: |
else: |
| 47 |
diag= math.sqrt(8) |
diag= math.sqrt(32) # sqrt(4**2 + 4**2) |
| 48 |
|
|
| 49 |
debug= form.has_key('debug') |
debug= form.has_key('debug') |
| 50 |
|
|
| 51 |
if form.has_key('iter'): |
if form.has_key('iter'): |
| 52 |
maxiter= atoi(form['iter'].value) |
maxiter= atoi(form['iter'].value) |
| 53 |
else: |
else: |
| 54 |
maxiter= 240 |
maxiter= 270 |
| 55 |
|
|
| 56 |
# If type!=image, then output an HTML page, not an image |
# If type!=image, then output an HTML page, not an image |
| 57 |
if not (form.has_key('type') and form['type'].value == "image"): |
if not (form.has_key('type') and form['type'].value == "image"): |
| 59 |
|
|
| 60 |
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> |
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> |
| 61 |
<HTML><HEAD> |
<HTML><HEAD> |
| 62 |
<TITLE>Mandel Set Zoomer</TITLE> |
<TITLE>Mandelbrot Set Zoomer</TITLE> |
| 63 |
</HEAD> |
</HEAD> |
| 64 |
<BODY> |
<BODY> |
| 65 |
<H1>Mandel Set Zoomer</H1> |
<H1>Mandelbrot Set Zoomer</H1> |
| 66 |
|
|
| 67 |
<FORM ACTION="mandelzoom.cgi" METHOD=GET> |
<FORM ACTION="mandelzoom.cgi" METHOD=GET> |
| 68 |
|
|
| 74 |
ds="&debug=on" |
ds="&debug=on" |
| 75 |
else: |
else: |
| 76 |
ds="" |
ds="" |
| 77 |
|
if form.has_key('image.x') and form.has_key('image.y'): |
| 78 |
|
# Adjust cx and cy |
| 79 |
|
ix= atof(form['image.x'].value) |
| 80 |
|
iy= atof(form['image.y'].value) |
| 81 |
|
owidth= atof(form['owidth'].value) |
| 82 |
|
oheight= atof(form['oheight'].value) |
| 83 |
|
diagp= math.sqrt(owidth**2 + oheight**2) |
| 84 |
|
scale= diagp/diag |
| 85 |
|
cx= (ix/scale) + (cx - (owidth / (scale*2))) |
| 86 |
|
cy= ((oheight-iy)/scale) + (cy - (oheight / (scale*2))) |
| 87 |
if form.has_key('zoom'): |
if form.has_key('zoom'): |
| 88 |
zoom=atoi(form['zoom'].value) |
zoom=atof(form['zoom'].value) |
| 89 |
diag=diag/zoom |
diag=diag/zoom |
| 90 |
else: |
else: |
| 91 |
# If no zoom provided, don't actually zoom |
# If no zoom provided, don't actually zoom |
| 92 |
zoom= 2 |
zoom= 2.0 |
| 93 |
print 'SRC="mandelzoom.cgi?type=image&width=%s&height=%s&iter=%s%s&diag=%s&cx=%s&cy=%s"' % (str(width), str(height), str(maxiter), ds, str(diag), str(cx), str(cy)), |
print 'SRC="mandelzoom.cgi?type=image&width=%s&height=%s&iter=%s%s&diag=%s&cx=%s&cy=%s"' % (str(width), str(height), str(maxiter), ds, str(diag), str(cx), str(cy)), |
| 94 |
print 'ALIGN=BOTTOM HEIGHT="%s"' % (str(height)), |
print 'ALIGN=BOTTOM HEIGHT="%s"' % (str(height)), |
| 95 |
print 'WIDTH="%s"><P>' % (str(width)) |
print 'WIDTH="%s"><P>' % (str(width)) |
| 96 |
print 'Zoom: <SELECT NAME="zoom">' |
print 'Zoom: <SELECT NAME="zoom">' |
| 97 |
for zv in [1.0/5, 1.0/3, 1.0/2, 1.0/1.5, 1, 1.5, 2, 3, 5]: |
for zv in [1.0/5, 1.0/3, 1.0/2, 1.0/1.5, 1.0, 1.5, 2.0, 3.0, 5.0]: |
| 98 |
print '<OPTION', |
print '<OPTION', |
| 99 |
if zv==zoom: |
if str(zv)==str(zoom): |
| 100 |
print 'SELECTED', |
print 'SELECTED', |
| 101 |
print 'VALUE="%s"' % (str(zv)) |
print 'VALUE="%s"' % (str(zv)) |
| 102 |
if zv == 1: |
if zv == 1: |
| 103 |
print '>Pan' |
print '>Pan' |
| 104 |
elif zv < 1: |
elif zv < 1: |
| 105 |
if int(1/zv) == 1/zv: |
print '>Out ÷%s' % (str(1/zv)) |
|
print '>Out ÷%s' % (str(int(1/zv))) |
|
|
else: |
|
|
print '>Out ÷%s' % (str(1/zv)) |
|
| 106 |
else: |
else: |
| 107 |
print '>In ×%s' % (str(zv)) |
print '>In ×%s' % (str(zv)) |
| 108 |
print '</SELECT>' |
print '</SELECT>' |
| 118 |
else: |
else: |
| 119 |
print '>' |
print '>' |
| 120 |
print '<INPUT TYPE=SUBMIT VALUE="Apply">' |
print '<INPUT TYPE=SUBMIT VALUE="Apply">' |
| 121 |
#for key in form.keys(): |
for var in (("diag", diag), ("cx", cx), ("cy", cy), ("owidth", width), |
| 122 |
# if key not in ["zoom", "type", "debug", "image.x", "image.y", "iter", "height", "width"]: |
("oheight", height)): |
| 123 |
# print '<INPUT TYPE=HIDDEN NAME="%s" VALUE="%s">' % (key, form[key].value) |
print '<INPUT TYPE=HIDDEN NAME="%s" VALUE="%s">' % var |
|
#for var in [("diag", diag), ("cx", cx), ("cy", cy)]: |
|
|
|
|
| 124 |
print '<INPUT TYPE=HIDDEN NAME=type VALUE="html">' |
print '<INPUT TYPE=HIDDEN NAME=type VALUE="html">' |
| 125 |
|
|
| 126 |
print """</FORM> |
print """</FORM><P> |
| 127 |
|
After changing any settings, don't forget to change the "Zoom" setting |
| 128 |
|
to "Pan" if you don't want to zoom when applying them. |
| 129 |
</BODY></HTML>""" |
</BODY></HTML>""" |
| 130 |
sys.exit(0) |
sys.exit(0) |
| 131 |
|
|
| 132 |
c1, c2 = (-2+2j), (2-2j) # Corner coordinates |
# Figure out c1 and c2 from width, height, diag, cx, and cy. |
| 133 |
|
# Diagonal in pixels |
| 134 |
|
diagp= math.sqrt(width**2 + height**2) |
| 135 |
|
# Scale between pixels and coordinates |
| 136 |
|
scale= diagp/diag |
| 137 |
|
x= (width/2.0)/scale |
| 138 |
|
y= (height/2.0)/scale |
| 139 |
|
|
| 140 |
|
c1= cx - x + (cy - y) * (0+1j) |
| 141 |
|
c2= cx + x + (cy + y) * (0+1j) |
| 142 |
|
|
| 143 |
|
#print width, height, diag, cx, cy, diagp, scale, x, y, c1, c2 |
| 144 |
|
#sys.exit(0) |
| 145 |
|
|
| 146 |
|
#c1, c2 = (-2+2j), (2-2j) # Corner coordinates |
| 147 |
|
|
| 148 |
# Force c1 to be upper left and c2 to be lower right |
# Force c1 to be upper left and c2 to be lower right |
| 149 |
c1, c2= complex(min(c1.real, c2.real), max(c1.imag, c2.imag)), \ |
c1, c2= complex(min(c1.real, c2.real), max(c1.imag, c2.imag)), \ |
| 255 |
else: |
else: |
| 256 |
yto= yorig # End at x axis |
yto= yorig # End at x axis |
| 257 |
|
|
| 258 |
drawrect((0, yfrom), (xmax, yto)) |
try: |
| 259 |
|
drawrect((0, yfrom), (xmax, yto)) |
| 260 |
|
except os.error, the_error: |
| 261 |
|
if the_error[0] != errno.ETIME: |
| 262 |
|
raise os.error, the_error |
| 263 |
|
|
| 264 |
|
signal.alarm(0) |
| 265 |
|
|
| 266 |
print "Content-type: image/png" |
print "Content-type: image/png" |
| 267 |
print |
print |