Dear All, could someone help me with this? Regards
Massimiliano ---------- Forwarded message ---------- From: Massimiliano <[email protected]> Date: 2010/10/22 Subject: Image Upload To: [email protected] Dear All, I'm building a gallery and I'm allowing users to upload their images, but I want all the images with a specific width in the blobstore. I'm trying to using the Image Api, but I can't understand how. This is my code, could someone help me? class UploadHandler(blobstore_handlers.BlobstoreUploadHandler): def post(self): upload_files = self.get_uploads('File') blob_info = upload_files[0] self.request.get('Nick') frasi = FRASI() frasi.frase = self.request.get('Nick') frasi.link = blob_info.key() frasi.put() self.redirect("/") Thanks Max -- My email: [email protected] My Google Wave: [email protected] -- My email: [email protected] My Google Wave: [email protected] -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
