Add an example script that turns all PNGs upside down.

This commit is contained in:
Aldo Cortesi 2011-08-26 19:01:33 +12:00
parent 4ac59a7859
commit b635112d36

View File

@ -0,0 +1,9 @@
import Image, cStringIO
def response(context, flow):
if flow.response.headers["content-type"] == ["image/png"]:
s = cStringIO.StringIO(flow.response.content)
img = Image.open(s)
img = img.rotate(180)
s2 = cStringIO.StringIO()
img.save(s2, "png")
flow.response.content = s2.getvalue()