Lines 196-202
Link Here
|
196 |
def __ThumbToQuery(self, picId, pic): |
196 |
def __ThumbToQuery(self, picId, pic): |
197 |
pilThumb = PILBackend.GetThumbnail(pic, height=120) |
197 |
pilThumb = PILBackend.GetThumbnail(pic, height=120) |
198 |
thumbWidth, thumbHeight = pilThumb.size |
198 |
thumbWidth, thumbHeight = pilThumb.size |
199 |
thumbData = buffer(pilThumb.tostring()) |
199 |
thumbData = buffer(pilThumb.tobytes()) |
200 |
|
200 |
|
201 |
query = "INSERT INTO `thumbnail` (" \ |
201 |
query = "INSERT INTO `thumbnail` (" \ |
202 |
"picture_id, width, height, data" \ |
202 |
"picture_id, width, height, data" \ |