Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
7858 views
1
#ifndef MUPDF_FITZ_OUTPUT_SVG_H
2
#define MUPDF_FITZ_OUTPUT_SVG_H
3
4
#include "mupdf/fitz/system.h"
5
#include "mupdf/fitz/context.h"
6
#include "mupdf/fitz/device.h"
7
#include "mupdf/fitz/output.h"
8
9
fz_device *fz_new_svg_device(fz_context *ctx, fz_output *out, float page_width, float page_height);
10
11
#endif
12
13