Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
7640 views
1
#include "mupdf/fitz.h"
2
3
/* TODO: implement JPEG-XR support */
4
5
fz_pixmap *
6
fz_load_jxr(fz_context *ctx, unsigned char *data, int size)
7
{
8
fz_throw(ctx, FZ_ERROR_GENERIC, "JPEG-XR codec is not available");
9
}
10
11
void
12
fz_load_jxr_info(fz_context *ctx, unsigned char *data, int size, int *wp, int *hp, int *xresp, int *yresp, fz_colorspace **cspacep)
13
{
14
fz_throw(ctx, FZ_ERROR_GENERIC, "JPEG-XR codec is not available");
15
}
16
17