We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8acc962 commit c2993dbCopy full SHA for c2993db
2015-10-02-dctf/misc_100_doesnt_matter/readme.md
@@ -9,7 +9,7 @@ W zadaniu dostajemy obrazek [png](./m100.png) z zepsutym nagłówkiem. Rozpakowu
9
from PIL import Image
10
with open('zlibdec.bin','rb') as f:
11
data=f.read()
12
-im = Image.frombytes('RGBA',(891,550),data)
+im = Image.frombytes('RGB',(891,550),data)
13
im.show()
14
```
15
i w wyniku otrzymujemy:
@@ -21,7 +21,7 @@ We get png picture with broken header checksum. With pixels extracted from file
21
22
23
24
25
26
27
as a result we get:
0 commit comments