#include <string.h>
#include <magick/MagickCore.h>
#include "kds_s2000w_image_converter.h"
+#include "kds_s2000w_debug.h"
void kds_s2000w_convert_init()
{
+ debug_printf(ALL, "kds_s2000w_convert_init");
IsMagickCoreInstantiated();
}
void kds_s2000w_convert_terminate()
{
+ debug_printf(ALL, "kds_s2000w_convert_terminate");
MagickCoreTerminus();
}
void kds_s2000w_convert_jpg_to_pnm(blobdata* in, blobdata* out)
{
+ debug_printf(ALL, "kds_s2000w_convert_jpg_to_pnm");
kds_s2000w_convert_jpg_to_pnm_With_depth(in, out, -1);
}
void kds_s2000w_convert_jpg_to_pnm_With_depth(blobdata* in, blobdata* out, int depth)
{
+ debug_printf(ALL, "kds_s2000w_convert_jpg_to_pnm_With_depth");
ExceptionInfo* exception = NULL;
Image* input_image = NULL;
ImageInfo* image_info = NULL;