pygame is
Python
Simple DirectMedia Layer
 
 
pygame.org is
Site Swing
Wiki

MmapSurfaces

      
Search:  
 
 
# Use mmap to create pygame surfaces in files.
 
import mmap
import os
 
import pygame
 
width, height = 64,64
size = width * height * 3
 
test_file_name = "map_test.txt"
 
if not os.path.exist(test_file_name):
    f = open(test_file_name, "wb")
    f.close()
 
f = open(test_file_name, "r+")
 
 
 
# memory-map the file, size 0 means whole file
amap = mmap.mmap(f.fileno(), size, access=mmap.ACCESS_WRITE )
 
s = pygame.image.frombuffer(amap, (width,height), "RGB")
 
print s.get_at((0,0))
print s.set_at((0,0), (33,33,33,255))
spotlight

 
our projects
pygame.org welcomes all python game, art, music, sound, video and multimedia projects. If they use pygame or not.
 
recent releases
May 21, 2013

May 19, 2013

May 18, 2013


May 17, 2013

May 16, 2013

May 15, 2013


May 11, 2013

May 8, 2013

Apr 26, 2013

Apr 24, 2013

... more!
 
for pygame related questions, comments, and suggestions, please see help (lists, irc)