You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
LICE_IBitmap* LICE_LoadImage(constchar* filename, LICE_IBitmap* bmp=NULL, bool tryIgnoreExtension=false);
char *LICE_GetImageExtensionList(bool wantAllSup=true, bool wantAllFiles=true); // returns doublenull terminated GetOpenFileName() style list -- free() when done.boolLICE_ImageIsSupported(constchar *filename); // must be a filename that ends in .jpg, etc. if you want to check the extension, pass .extboolLICE_WriteGIF(constchar *filename, LICE_IBitmap *bmp, int transparent_alpha=0, bool dither=true); // if alpha<transparent_alpha then transparent. if transparent_alpha<0, then intra-frame checking is usedvoid *LICE_WriteGIFBegin(constchar *filename, LICE_IBitmap *firstframe, int transparent_alpha=0, int frame_delay=0, bool dither=true, int nreps=0); // nreps=0 for infinitevoid *LICE_WriteGIFBeginNoFrame(constchar *filename, int w, int h, int transparent_alpha=0, bool dither=true, bool is_append=false);
boolLICE_WriteGIFFrame(void *handle, LICE_IBitmap *frame, int xpos, int ypos, bool perImageColorMap=false, int frame_delay=0, int nreps=0); // nreps only used on the first frame, 0=infiniteboolLICE_WriteGIFEnd(void *handle);
intLICE_SetGIFColorMapFromOctree(void *wr, void *octree, int numcolors); // can use after LICE_WriteGIFBeginNoFrame and before LICE_WriteGIFFramevoidLICE_RGB2HSV(int r, int g, int b, int* h, int* s, int* v); // rgb, sv: [0,256), h: [0,384)voidLICE_HSV2RGB(int h, int s, int v, int* r, int* g, int* b); // rgb, sv: [0,256), h: [0,384)
LICE_pixel LICE_HSV2Pix(int h, int s, int v, int alpha); // sv: [0,256), h: [0,384)
The text was updated successfully, but these errors were encountered:
I tried to do a file search for these things, I think I found some of them in cpp files not included in VS project (therefore not defined) but I could not find all of them, especially the colorspace stuff. I thought it was inside colorspace.cpp but apparently not...???
All of the following is undefined.
The text was updated successfully, but these errors were encountered: