|
@@ -62,6 +62,8 @@ def upload_post(filepath):
|
|
|
os.makedirs(wpath)
|
|
|
if not os.path.exists(owpath):
|
|
|
os.makedirs(owpath)
|
|
|
+ if not os.path.exists(sitepath):
|
|
|
+ os.makedirs(sitepath)
|
|
|
#file.save(fullpath)
|
|
|
image_object = Image.open(file)
|
|
|
image_object.save(owpath+owfname, oimgtypeName)
|
|
@@ -122,6 +124,8 @@ def get_image(filepath):
|
|
|
os.makedirs(wpath)
|
|
|
if not os.path.exists(owpath):
|
|
|
os.makedirs(owpath)
|
|
|
+ if not os.path.exists(sitepath):
|
|
|
+ os.makedirs(sitepath)
|
|
|
image_object = Image.open(requests.get(request.get_json()['url'],stream=True).raw)
|
|
|
image_object.save(owpath+owfname, oimgtypeName)
|
|
|
if image_object.size[0] > 1000:
|