if form.accepts(request.vars,session):
recordsID= form.vars.id
import platform
is_windows=(platform.system().lower().find("win") > -1)
is_linux=(platform.system().lower().find("lin") > -1)
is_mac=(platform.system().lower().find("mac") > -1)
if (is_windows == True):
#print "is windows"
foto_path = (request.folder + "static\\user_uploads\\" + upload_pic)
infile = foto_path
thumbnail_filename = ("%s" % recordsID + ".thumbnail.jpg")
outfile = (request.folder + "static\\thumbs\\" + thumbnail_filename )
thumbpath = os.path.join(request.folder, 'static', 'thumbs\\') + thumbnail_filename
elif (is_linux == True):
#print "is linux"
foto_path = (request.folder + "static/user_uploads/" + upload_pic)
infile = foto_path
thumbnail_filename = ("%s" % recordsID + ".thumbnail.jpg")
#outfile = (request.folder + "static/thumbs/" + thumbnail_filename )
thumbpath = os.path.join(request.folder, 'static', 'thumbs/') + thumbnail_filename
outfile = (thumbpath) ## Changed on AUG 25
db(db.fotoz.id==recordsID).update(imgthumb=thumbnail_filename, imgthumbpath=thumbpath) ##outfile
if infile != outfile:
try:
im = Image.open(infile)
im.thumbnail(size)
#Check for image format
image_format = (im.format)
#print ("Image format: ", image_format)
### ================ Watermark stuff ======================
width, height = im.size
draw = ImageDraw.Draw(im)
watermark_text = "WATERMARK"
watermark_font = ImageFont.truetype('arial.ttf', 20)
textwidth, textheight = draw.textsize(watermark_text, watermark_font)
# calculate the x,y coordinates of the text
margin = 5
x = width - textwidth - margin
y = height - textheight - margin
# draw watermark in the bottom right corner
## Specify this to fill font with red color , fill=(128,0,0,128)) OR #, fill=shadowcolor) OR fill="red" or fill="#ff0000" -- work
draw.text((x, y), watermark_text, font=watermark_font, opacity=0.25)
## --- Watermark text ends ---
#Process various image formats for making thumbnails. Currently supporting JPG/JPEG, GIF and PNG
if (image_format == "JPEG"):
im.save(outfile, "JPEG")
if (image_format == "GIF"):
im.save(outfile, "GIF")
if (image_format == "PNG"):
im.save(outfile, "PNG")
except IOError:
print("Cannot create thumbnail (un-recognized format) for ", infile)
pass
outfile = (thumbpath)
but this is still not working. Any more suggestions ?
Hi Dave,upload_pic is the form variable that user specifies for uploading the file from local disk. Basically it is the filename. I removed the braces foroutfile = (thumbpath)
but this is still not working. Any more suggestions ?
RegardsRahul
foto_path = infile = os.path.join(request.folder,
"static",
"user_uploads",
upload_pic)
thumbnail_filename = "%s.thumbnail.jpg" % recordsID
thumbpath = outfile = os.path.join(request.folder,
'static',
'thumbs',
thumbnail_filename)
Hi Val and Dave,Have a look at the code below - the line foto_path=... below works but it uploads the photos to "web2py\applications\artpicstatic\user_uploads" folder instead of web2py\applications\artpic\static\user_uploads folder. It also generates the thumbnail file. Now if I use foto_path = os.path.join(request.folder + "static/user_uploads/" + upload_pic) it shows the right path after normalization but does not upload the photo at all. And since it does not upload the photo the rest of the code fails to generate thumbnails etc and throws this error . m using windows 10 with python 2.7.13- <type 'exceptions.IOError'> [Errno 2] No such file or directory: 'E:\\web2py_src\\web2py\\applications\\artpic\\static\\user_uploads\\fotoz.upload_photo.82bfeee5a1affabd.3033372e4a5047.JPG'CODE:
-------
#foto_path = (request.folder + "static/user_uploads/" + upload_pic)
print ("----------------")
foto_path = (request.folder + "static/user_uploads/" + upload_pic)
form = SOLIDFORM(db.fotoz , fields=fields, submit_button='Upload Foto')
#if form.accepts(request.vars, session):
if form.process().accepted:
upload_pic = form.vars.upload_photo
recordsID= form.vars.id
#Thumbnail code
print ("----------------")
infile = os.path.join(request.folder, "static", "user_uploads", upload_pic)
print "infile: " , infile
thumbnail_filename = "%s.thumbnail.jpg" % recordsID
print "thumbnail_filename: ", thumbnail_filename
thumbpath = outfile = os.path.join(request.folder, "static", "thumbs" , thumbnail_filename)
print "thumbpath and outfile: ", outfile
#Insert thumbnail and thumbnail path in db imgthumb field.
db(db.fotoz.id==recordsID).update(imgthumb=thumbnail_filename, imgthumbpath=thumbpath) ##outfile
if infile != outfile:
try:
im = Image.open(infile)
im.thumbnail(size)
#Check for image format
image_format = (im.format)
#print ("Image format: ", image_format)
### ================ Watermark stuff ======================
## Watermark Text --
width, height = im.size
draw = ImageDraw.Draw(im)
watermark_text = "WATER"
watermark_font = ImageFont.truetype('arial.ttf', 20)
textwidth, textheight = draw.textsize(watermark_text, watermark_font)
# calculate the x,y coordinates of the text
margin = 5
x = width - textwidth - margin
y = height - textheight - margin
# draw watermark in the bottom right corner
## Specify this to fill font with red color , fill=(128,0,0,128)) OR #, fill=shadowcolor) OR fill="red" or fill="#ff0000" -- work
draw.text((x, y), watermark_text, font=watermark_font, opacity=0.25)
## --- Watermark text ends ---
#Process various image formats for making thumbnails. Currently supporting JPG/JPEG, GIF and PNG
if (image_format == "JPEG"):
im.save(outfile, "JPEG")
if (image_format == "JPG"):
im.save(outfile, "JPG")
if (image_format == "GIF"):
im.save(outfile, "GIF")
if (image_format == "PNG"):
im.save(outfile, "PNG")
except IOError:
print "Cannot create thumbnail (un-recognized format) for: ", infile
#pass
response.flash='Photo uploaded'
Hi Dave and Everyone,I followed your advice -- Thanks for the code cleanup - However the issues still existISSUE#1 - The photo is still being saved in [E:\web2py_src\web2py\applications\artpicstatic\user_uploads]Correct path where it should be saved is [infile: E:\web2py_src\web2py\applications\artpic\static\user_uploads\]I simply do not understand why the application is saving the file in above path and not in the correct path in green. We have removed the problem causing code [foto_path = (request.folder + "static/user_uploads/" + upload_pic) ] from this method so where is it pulling it from and saving the files to this location only. Where is this magic happening from? Is it web2py
#Thumbnail code
print ("----------------")
infile = os.path.join(request.folder, "static", "user_uploads", upload_pic)
print "infile: " , infile
thumbnail_filename = "%s.thumbnail.jpg" % recordsID
print "thumbnail_filename: ", thumbnail_filename
thumbpath = outfile = os.path.join(request.folder, "static", "thumbs" , thumbnail_filename)
print "thumbpath and outfile: ", outfile
#Insert thumbnail and thumbnail path in db imgthumb field.
db(db.fotoz.id==recordsID).update(imgthumb=thumbnail_filename, imgthumbpath=thumbpath) ##outfile
if infile != outfile:
try:
im = Image.open(infile)
im.thumbnail(size)
#Check for image format
image_format = (im.format)
#print ("Image format: ", image_format)
width, height = im.size
draw = ImageDraw.Draw(im)
watermark_text = "WATER"
watermark_font = ImageFont.truetype('arial.ttf', 20)
textwidth, textheight = draw.textsize(watermark_text, watermark_font)
# calculate the x,y coordinates of the text
margin = 5
x = width - textwidth - margin
y = height - textheight - margin
# draw watermark in the bottom right corner
## Specify this to fill font with red color , fill=(128,0,0,128)) OR #, fill=shadowcolor) OR fill="red" or fill="#ff0000" -- work
draw.text((x, y), watermark_text, font=watermark_font, opacity=0.25)
## --- Watermark text ends ---
#Process various image formats for making thumbnails. Currently supporting JPG/JPEG, GIF and PNG
if (image_format == "JPEG"):
im.save(outfile, "JPEG")
if (image_format == "JPG"):
im.save(outfile, "JPG")
if (image_format == "GIF"):
im.save(outfile, "GIF")
if (image_format == "PNG"):
im.save(outfile, "PNG")
except IOError:
print "Cannot create thumbnail (un-recognized format) for: ", infile
upload_folder_path= os.path.join(request.folder, "static", "user_uploads") #This was corrected
db.define_table('fotoz',
Field('uploaded_by', 'string'),
Field('caption' , requires=IS_NOT_EMPTY()),
Field('category', requires=IS_IN_SET(pix_cat)),
Field('description', 'text'),
Field('upload_photo', 'upload' , requires=IS_IMAGE(), uploadfolder=upload_folder_path, autodelete=True,),
Field('profile_pic', 'upload', uploadfolder=profpix_path, requires=IS_LENGTH(262144), autodelete=True, label='Profile Pic (256K)'),
Hi Dave,I finally found the issue where the magic was with default folder path specified in db.py. I rectified it in code where-ever I had defined for other upload types aswell and it works properly. Now the files do get saved to the desired path.
but the THUMBNAIL file saving issue still persists on linux. Again this works properly in Windows.
[...]
[Sat Aug 31 18:00:20.813518 2019] [wsgi:error] [pid 3806] [client 42.108.232.228:38975] Cannot create thumbnail (un-recognized format) for: /home/www-data/web2py/applications/artpic/stati$
[Sat Aug 31 18:02:09.456898 2019] [wsgi:error] [pid 3810] [client 95.163.255.151:41074] WARNING:root:Unable to write to file /home/www-data/web2py/applications/artpic/languages/ru.py
[Sat Aug 31 18:02:09.685699 2019] [wsgi:error] [pid 3810] [client 95.163.255.151:41074] WARNING:root:Unable to write to file /home/www-data/web2py/applications/artpic/languages/ru.py
[Sat Aug 31 18:02:10.900764 2019] [wsgi:error] [pid 3810] [client 95.163.255.151:41074] WARNING:root:Unable to write to file /home/www-data/web2py/applications/artpic/languages/ru.py
[Sat Aug 31 18:02:10.901023 2019] [wsgi:error] [pid 3810] [client 95.163.255.151:41074] WARNING:root:Unable to write to file /home/www-data/web2py/applications/artpic/languages/ru.py
[...]
[Sat Aug 31 18:27:17.451565 2019] [wsgi:error] [pid 5696] [client 42.108.232.228:34651] ----------------, referer: http://artpic.in/upload-fotoz
[Sat Aug 31 18:27:17.451647 2019] [wsgi:error] [pid 5696] [client 42.108.232.228:34651] infile: /home/www-data/web2py/applications/artpic/static/user_uploads/fotoz.upload_photo.b404a9b372$
[Sat Aug 31 18:27:17.451668 2019] [wsgi:error] [pid 5696] [client 42.108.232.228:34651] thumbnail_filename: 133.thumbnail.jpg, referer: http://artpic.in/upload-fotoz
[Sat Aug 31 18:27:17.451690 2019] [wsgi:error] [pid 5696] [client 42.108.232.228:34651] thumbpath and outfile: /home/www-data/web2py/applications/artpic/static/thumbs/133.thumbnail.jpg, r$
[Sat Aug 31 18:27:19.289744 2019] [wsgi:error] [pid 5696] [client 42.108.232.228:34651] Cannot create thumbnail (un-recognized format) for: /home/www-data/web2py/applications/artpic/stati$
CODE - FOR THUMBNAIL
[...]
except IOError:
print "Cannot create thumbnail (un-recognized format) for: ", infile
Please suggest on how to get the thumbnail to save in debian box - I'll try it again after removing the try and catch blocks and get
raw ticket if any tomorrow
--
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
---
You received this message because you are subscribed to a topic in the Google Groups "web2py-users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/web2py/Gn-cqZjDURk/unsubscribe.
To unsubscribe from this group and all its topics, send an email to web2py+un...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/web2py/b6bf42c1-6d57-4b53-ae8e-c963d116bdfc%40googlegroups.com.
[Sat Aug 31 18:02:10.901023 2019] [wsgi:error] [pid 3810] [client 95.163.255.151:41074] WARNING:root:Unable to write to file /home/www-data/web2py/applications/artpic/languages/ru.py
--
To Add -[Sat Aug 31 18:02:10.901023 2019] [wsgi:error] [pid 3810] [client 95.163.255.151:41074] WARNING:root:Unable to write to file /home/www-data/web2py/applications/artpic/languages/ru.py
What's trying to write to this file?[Rahul] This is not me. I am not trying to write anything to this file as I dont use it - I donk know about it. I gave the write permissions to language folder to resolve the issue. It got resolved and it is not showing that error in the logs
I am not sure about the r artifact - I did not put anything like that.
Rahul
To unsubscribe from this group and all its topics, send an email to web...@googlegroups.com.
Hi Dave,
Sorry for the delay - I got busy but - Thanks for pushing me I worked on it today and now it is finally RESOLVED!! Yay!!There were two errors -1] <type 'exceptions.IOError'>(cannot open resource)2] NameError: global name 'watermark_font' is not definedThese were because the system could not find the font I specified in the code. As usual it worked flawlessly on windows but failed on Linux - I applied the previous os checks and specified default fonts from the system and then it worked. I re-instated my try-except blocks back and tested it. It is working properly now. One major error resolved.THANK YOU FOR ALL THE SUGGESTIONS AND GUIDANCE :-)Regards,Rahul