mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 08:11:00 +00:00
9 lines
318 B
Python
9 lines
318 B
Python
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).rotate(180)
|
|
s2 = cStringIO.StringIO()
|
|
img.save(s2, "png")
|
|
flow.response.content = s2.getvalue()
|