LLIPS
rev33
Light Library for Image ProcesS
|
About importing and exporting image from/to storage. More...
Go to the source code of this file.
Functions | |
CPU_VOID | init_img (t_img *img) |
Initialize and allocate memory for a potentional load_img() More... | |
CPU_CHAR | load_img (CPU_CHAR *imgname, t_img *img) |
Load a bmp file into an organized memory area. More... | |
CPU_CHAR | write_img (CPU_CHAR *imgname, t_img *img) |
Write an image buffer into a BMP file. More... | |
CPU_CHAR | copy_img (t_img *imgsrc, t_img *imgdest) |
Copy source image into destination image. More... | |
About importing and exporting image from/to storage.
Definition in file llips_io.h.
Copy source image into destination image.
imgsrc | t_img* - source image |
imgdest | t_img* - destination image |
Definition at line 206 of file llips_io.c.
Initialize and allocate memory for a potentional load_img()
img | t_img* - initialized image buffer |
Definition at line 29 of file llips_io.c.
Load a bmp file into an organized memory area.
imgname | CPU_CHAR* - Image name and path |
img | t_img* - initialized image buffer |
Definition at line 49 of file llips_io.c.
Write an image buffer into a BMP file.
imgname | CPU_CHAR* - Image name and path |
img | t_img* - image buffer |
Definition at line 155 of file llips_io.c.