Addon image¶
The image addon contains functions to store the contents of a termpaint_surface into a file or memory buffer
and to load the contents from a file or memory buffer.
This addon is only available if your compilation environment supports c++.
Functions¶
See Safety for general rules for calling functions in termpaint.
-
_Bool
termpaint_image_save(termpaint_surface *surface, const char *name)¶ Save the contents if the surface
surfaceinto a file with the namename.
-
bool
termpaint_image_save_to_file(termpaint_surface *surface, FILE *file)¶ Save the contents if the surface
surfaceinto a file referred to by file pointerfile.
-
char *
termpaint_image_save_alloc_buffer(termpaint_surface *surface)¶ Save the contents if the surface
surfaceinto a freshly allocated nul-terminated buffer.After usage the returned buffer must be deallocated using termpaint_image_save_dealloc_buffer.
-
void
termpaint_image_save_dealloc_buffer(char *buffer)¶ Deallocate a buffer returned by termpaint_image_save_alloc_buffer.
-
termpaint_surface *
termpaint_image_load(termpaint_terminal *term, const char *name)¶ Load the contents of a surface from the file named
nameand return a newly allocated surface with the data from the file prepared to be used with the terminal objectterm.
-
termpaint_surface *
termpaint_image_load_from_file(termpaint_terminal *term, FILE *file)¶ Load the contents of a surface from the file referred to by file pointer
fileand return a newly allocated surface with the data from the file prepared to be used with the terminal objectterm.
-
termpaint_surface *
termpaint_image_load_from_buffer(termpaint_terminal *term, char *buffer, int length)¶ Load the contents of a surface from a memory buffer
bufferwith the lengthlengthand return a newly allocated surface with the data from the file prepared to be used with the terminal objectterm.