Skip to content

Instantly share code, notes, and snippets.

@karaage0703
Created September 20, 2014 09:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save karaage0703/e530255b5db23c6302c1 to your computer and use it in GitHub Desktop.
Save karaage0703/e530255b5db23c6302c1 to your computer and use it in GitHub Desktop.
display image for Nakayoshi camera
#!/usr/bin/python
# -*0 coding: utf-8 -*-
import pygame
pygame.init()
size = (pygame.display.Info().current_w, pygame.display.Info().current_h)
print "Framebuffer size: %d x %d" % (size[0], size[1])
screen = pygame.display.set_mode(size, pygame.FULLSCREEN)
img = pygame.image.load("./data/cameratest.jpg").convert()
img = pygame.transform.scale(img, (pygame.display.Info().current_w, pygame.display.Info().current_h))
screen.blit(img, (0,0))
while True:
pygame.display.update()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment