
Originally Posted by
shynet
I will try to explain my self better, I'm trying to show image after image, but when I use the method I mentioned it open each image with a bit delay, what I want to do is to "preload" the image to the ram for example so when I will tell python to draw the picture it will be shown immediately, so the final result will look like an animation of switching images (or just animation is good enough I think) by the way talking about C++ for symbian, is it much harder to develop in it for symbian? Thanks again!!
This is how I loaded a bunch of images:
Code:
global photolist
photolist = []
def load_images():
global photolist
for i in range(9):
photolist.append(Image.open(u"e:\\July2008\\p%i.jpg" %(i+1)))
Then you can call each one with something like:
Code:
canvas.blit(photolist[9])