blob: 181a40c2304eb6de1070655d86fdf6b12f1c04af (
plain)
1
2
3
4
5
6
7
8
9
10
|
import cStringIO
from PIL import Image
def response(context, flow):
if flow.response.headers["content-type"] == ["image/png"]:
s = cStringIO.StringIO(flow.response.content)
img = Image.open(s).rotate(180)
s2 = cStringIO.StringIO()
img.save(s2, "png")
flow.response.content = s2.getvalue()
|