1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265
|
// ==========================================================
// MNG Loader
//
// Design and implementation by
// - Floris van den Berg (flvdberg@wxs.nl)
//
// This file is part of FreeImage 3
//
// COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTY
// OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES
// THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE
// OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED
// CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT
// THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY
// SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL
// PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER
// THIS DISCLAIMER.
//
// Use at your own risk!
// ==========================================================
#include "FreeImage.h"
#include "Utilities.h"
#include "../LibMNG/libmng.h"
// ----------------------------------------------------------
// Constants + headers
// ----------------------------------------------------------
typedef struct {
FIBITMAP *bitmap; // pointer to the bitmap data
FreeImageIO *io; // pointer to the io functions
fi_handle file; // pointer to the file we're decoding
} mngstuff;
// ----------------------------------------------------------
// Callbacks for the mng decoder
// ----------------------------------------------------------
mng_ptr
mymngalloc(mng_size_t size) {
return (mng_ptr)calloc(1, size);
}
void
mymngfree(mng_ptr p, mng_size_t size) {
free(p);
}
mng_bool
mymngopenstream(mng_handle mng) {
// since the user is responsible for opening and closing the file,
// we leave the default implementation open
return MNG_TRUE;
}
mng_bool
mymngclosestream(mng_handle mng) {
// since the user is responsible for opening and closing the file,
// we leave the default implementation open
return MNG_TRUE;
}
mng_bool
mymngreadstream(mng_handle mng, mng_ptr buffer, mng_uint32 size, mng_uint32 *bytesread) {
mngstuff *mymng = (mngstuff *)mng_get_userdata(mng);
*bytesread = mymng->io->read_proc(buffer, 1, size, mymng->file);
return MNG_TRUE;
}
mng_bool
mymngprocessheader(mng_handle mng, mng_uint32 width, mng_uint32 height) {
// allocate a bitmap with the given dimensions
((mngstuff *)mng_get_userdata(mng))->bitmap = FreeImage_Allocate(width, height, 24, FI_RGBA_RED_MASK, FI_RGBA_GREEN_MASK, FI_RGBA_BLUE_MASK);
// tell the mng decoder about our bit-depth choice
#if FREEIMAGE_COLORORDER == FREEIMAGE_COLORORDER_RGB
mng_set_canvasstyle(mng, MNG_CANVAS_RGB8);
#else
mng_set_canvasstyle(mng, MNG_CANVAS_BGR8);
#endif
return MNG_TRUE;
}
mng_ptr
mymnggetcanvasline(mng_handle mng, mng_uint32 line) {
FIBITMAP *bitmap = ((mngstuff *)mng_get_userdata(mng))->bitmap;
return FreeImage_GetScanLine(bitmap, FreeImage_GetHeight(bitmap) - line - 1);
}
mng_bool
mymngrefresh(mng_handle mng, mng_uint32 x, mng_uint32 y, mng_uint32 w, mng_uint32 h) {
return MNG_TRUE;
}
mng_uint32
mymnggetticks(mng_handle mng) {
return 0;
}
mng_bool
mymngsettimer(mng_handle mng, mng_uint32 msecs) {
return MNG_TRUE;
}
mng_bool
mymngerror(mng_handle mng, mng_int32 code, mng_int8 severity, mng_chunkid chunktype, mng_uint32 chunkseq, mng_int32 extra1, mng_int32 extra2, mng_pchar text) {
char msg[256];
if((code == MNG_SEQUENCEERROR) && (chunktype == MNG_UINT_TERM))
// ignore sequence error for TERM
return MNG_TRUE;
if(text) {
// text can be null depending on compiler options
sprintf(msg, "Error reported by libmng (%d)\r\n\r\n%s", code, text);
} else {
sprintf(msg, "Error %d reported by libmng", code);
}
throw (const char *)msg;
//return MNG_TRUE; // not really neccessary but keeps VC5 happy
}
// ==========================================================
// Plugin Interface
// ==========================================================
static int s_format_id;
// ==========================================================
// Plugin Implementation
// ==========================================================
static const char * DLL_CALLCONV
Format() {
return "MNG";
}
static const char * DLL_CALLCONV
Description() {
return "Multiple Network Graphics";
}
static const char * DLL_CALLCONV
Extension() {
return "mng";
}
static const char * DLL_CALLCONV
RegExpr() {
return NULL;
}
static const char * DLL_CALLCONV
MimeType() {
return "video/x-mng";
}
static BOOL DLL_CALLCONV
SupportsExportDepth(int depth) {
return FALSE;
}
static BOOL DLL_CALLCONV
SupportsExportType(FREE_IMAGE_TYPE type) {
return FALSE;
}
// ----------------------------------------------------------
static void * DLL_CALLCONV
Open(FreeImageIO *io, fi_handle handle, BOOL read) {
mngstuff *mymng = (mngstuff *)calloc(1, sizeof(*mymng));
mymng->io = io;
mymng->file = handle;
return mymng;
}
static void DLL_CALLCONV
Close(FreeImageIO *io, fi_handle handle, void *data) {
free((mngstuff *)data);
}
// ----------------------------------------------------------
static FIBITMAP * DLL_CALLCONV
Load(FreeImageIO *io, fi_handle handle, int page, int flags, void *data) {
if (handle != NULL) {
try {
// allocate our stream data structure
mngstuff *mymng = (mngstuff *)data;
// set up the mng decoder for our stream
mng_handle mng = mng_initialize(mymng, mymngalloc, mymngfree, MNG_NULL);
if (mng == MNG_NULL)
throw "could not initialize libmng";
// set the callbacks
mng_setcb_errorproc(mng, mymngerror);
mng_setcb_openstream(mng, mymngopenstream);
mng_setcb_closestream(mng, mymngclosestream);
mng_setcb_readdata(mng, mymngreadstream);
mng_setcb_processheader(mng, mymngprocessheader);
mng_setcb_getcanvasline(mng, mymnggetcanvasline);
mng_setcb_refresh(mng, mymngrefresh);
mng_setcb_gettickcount(mng, mymnggetticks);
mng_setcb_settimer(mng, mymngsettimer);
// read in the bitmap
mng_readdisplay(mng);
// temp store the newly created bitmap
FIBITMAP *bitmap = mymng->bitmap;
// cleanup and return the temp stored bitmap
mng_cleanup(&mng);
return bitmap;
} catch (const char *message) {
FreeImage_OutputMessageProc(s_format_id, message);
}
}
return NULL;
}
// ==========================================================
// Init
// ==========================================================
void DLL_CALLCONV
InitMNG(Plugin *plugin, int format_id) {
s_format_id = format_id;
plugin->format_proc = Format;
plugin->description_proc = Description;
plugin->extension_proc = Extension;
plugin->regexpr_proc = RegExpr;
plugin->open_proc = Open;
plugin->close_proc = Close;
plugin->pagecount_proc = NULL;
plugin->pagecapability_proc = NULL;
plugin->load_proc = Load;
plugin->save_proc = NULL;
plugin->validate_proc = NULL;
plugin->mime_proc = MimeType;
plugin->supports_export_bpp_proc = SupportsExportDepth;
plugin->supports_export_type_proc = SupportsExportType;
plugin->supports_icc_profiles_proc = NULL; // not implemented yet;
}
|