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