mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 08:11:00 +00:00
18 lines
657 B
Python
18 lines
657 B
Python
import cStringIO
|
|
from PIL import Image
|
|
from libmproxy.models import decoded
|
|
|
|
|
|
def response(context, flow):
|
|
if flow.response.headers.get("content-type", "").startswith("image"):
|
|
with decoded(flow.response): # automatically decode gzipped responses.
|
|
try:
|
|
s = cStringIO.StringIO(flow.response.content)
|
|
img = Image.open(s).rotate(180)
|
|
s2 = cStringIO.StringIO()
|
|
img.save(s2, "png")
|
|
flow.response.content = s2.getvalue()
|
|
flow.response.headers["content-type"] = "image/png"
|
|
except: # Unknown image types etc.
|
|
pass
|