I have a model in which * I want * to contain an image frame. I have images on my local file system, but due to the nature of my application I need to get them in the data store. Here is my model:
class JeanImage(db.Model):
type = db.StringProperty(required=True, choices=set(["main","front","back","detail"]))
image = db.BlobProperty(required=True)
I have not tried anything yet, because I am not very good at understanding images.
How can / need to convert my images into drops so that I can get them in my csv bulkupload file?
Mark
source
share