aboutsummaryrefslogtreecommitdiffstats
path: root/examples/upsidedownternet.py
blob: 28d34ca92342f89970e9ca8dc3bfa510a254ed37 (plain)
1
2
3
4
5
6
7
8
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()