|
|
@ -1,4 +1,5 @@ |
|
|
|
#include "common.h" |
|
|
|
#include "common.h" |
|
|
|
|
|
|
|
#include "bitmap.h" |
|
|
|
#include "database.h" |
|
|
|
#include "database.h" |
|
|
|
#include "sample.h" |
|
|
|
#include "sample.h" |
|
|
|
|
|
|
|
|
|
|
@ -11,7 +12,7 @@ imdb_sample(imdb_rec_t * const rec, |
|
|
|
MagickWand *wand = NULL; |
|
|
|
MagickWand *wand = NULL; |
|
|
|
MagickPassFail status = MagickPass; |
|
|
|
MagickPassFail status = MagickPass; |
|
|
|
ExceptionType severity = 0; |
|
|
|
ExceptionType severity = 0; |
|
|
|
unsigned long w = 0, h = 0; |
|
|
|
uint16_t w = 0, h = 0; |
|
|
|
char *description = NULL; |
|
|
|
char *description = NULL; |
|
|
|
size_t buf_size = 64 * sizeof(char); |
|
|
|
size_t buf_size = 64 * sizeof(char); |
|
|
|
unsigned char *buf = NULL; |
|
|
|
unsigned char *buf = NULL; |
|
|
@ -82,9 +83,9 @@ imdb_sample(imdb_rec_t * const rec, |
|
|
|
if (status == MagickPass) { |
|
|
|
if (status == MagickPass) { |
|
|
|
memset(rec, 0x0, sizeof(imdb_rec_t)); |
|
|
|
memset(rec, 0x0, sizeof(imdb_rec_t)); |
|
|
|
rec->data[REC_OFF_RU] = 0xFF; |
|
|
|
rec->data[REC_OFF_RU] = 0xFF; |
|
|
|
*((uint16_t *) &rec->data[REC_OFF_IW]) = (uint16_t) w; |
|
|
|
memcpy(&rec->data[REC_OFF_IW], &w, sizeof(uint16_t)); |
|
|
|
*((uint16_t *) &rec->data[REC_OFF_IH]) = (uint16_t) h; |
|
|
|
memcpy(&rec->data[REC_OFF_IH], &h, sizeof(uint16_t)); |
|
|
|
memcpy(&rec->data[REC_OFF_BM], buf, 32); |
|
|
|
memcpy(&rec->data[REC_OFF_BM], buf, BITMAP_SIZE); |
|
|
|
} else { |
|
|
|
} else { |
|
|
|
description = MagickGetException(wand, &severity); |
|
|
|
description = MagickGetException(wand, &severity); |
|
|
|
fprintf(stderr, "%03d %.1024s\n", severity, description); /* FIXME */ |
|
|
|
fprintf(stderr, "%03d %.1024s\n", severity, description); /* FIXME */ |
|
|
|