File: write_png.h

package info (click to toggle)
pygame-sdl2 8.4.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 31,192 kB
  • sloc: ansic: 9,677; python: 1,953; makefile: 6
file content (9 lines) | stat: -rw-r--r-- 224 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
#ifndef WRITE_PNG_H
#define WRITE_PNG_H

#include <SDL.h>

int Pygame_SDL2_SavePNG(const char *file, SDL_Surface *surf,int compression);
int Pygame_SDL2_SavePNG_RW(SDL_RWops *src, SDL_Surface *surf,int compression);

#endif