回答編集履歴
2
インデント修正
test
CHANGED
@@ -10,7 +10,7 @@
|
|
10
10
|
|
11
11
|
im = Image.open('sample.bmp')
|
12
12
|
|
13
|
-
|
13
|
+
im.save('sample.jpg', format='JPEG', subsampling=0, quality=100)
|
14
14
|
|
15
15
|
```
|
16
16
|
|
1
ソースが誤っていたため修正
test
CHANGED
@@ -10,7 +10,7 @@
|
|
10
10
|
|
11
11
|
im = Image.open('sample.bmp')
|
12
12
|
|
13
|
-
im.save('sample.jpg', format='JPEG', quality=100)
|
13
|
+
im.save('sample.jpg', format='JPEG', subsampling=0, quality=100)
|
14
14
|
|
15
15
|
```
|
16
16
|
|