Skip to content

Instantly share code, notes, and snippets.

View akshayaurora's full-sized avatar
🌴
Looking for a change

Akshay Arora akshayaurora

🌴
Looking for a change
View GitHub Profile
from kivy.graphics.fbo import Fbo
from kivy.graphics import Rectangle, Color
from kivy.core.gl import glReadPixels, GL_RGBA, GL_UNSIGNED_BYTE
import pygame
def save_texture(texture, filename):
fbo = Fbo(size=texture.size)
fbo.add(Color(1, 1, 1))
fbo.add(Rectangle(size=texture.size, texture=texture))
fbo.draw()