gorram it

This commit is contained in:
brent s 2017-03-25 02:52:52 -04:00
parent 9bc8dab727
commit c292949fd9

View File

@ -9,7 +9,7 @@ import base64
import subprocess import subprocess
import hashlib import hashlib
import datetime import datetime
import io from io import BytesIO
# You might need to install these modules; they aren't in stdlib. # You might need to install these modules; they aren't in stdlib.
import pymysql import pymysql
import magic import magic
@ -280,7 +280,7 @@ def imgConv(imgfile):
#else: #else:
# imgformat = 'PNG' # imgformat = 'PNG'
img_stream = BytesIO() img_stream = BytesIO()
p.save(img_stream, img_data.save(img_stream,
format = 'JPEG', format = 'JPEG',
dpi = img_data.info.get('dpi'), dpi = img_data.info.get('dpi'),
quality = 95, quality = 95,