Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
7858 views
1
#ifndef MUPDF_FITZ_OUTPUT_TGA_H
2
#define MUPDF_FITZ_OUTPUT_TGA_H
3
4
#include "mupdf/fitz/system.h"
5
#include "mupdf/fitz/context.h"
6
#include "mupdf/fitz/pixmap.h"
7
8
void fz_write_tga(fz_context *ctx, fz_pixmap *pixmap, const char *filename, int savealpha);
9
10
#endif
11
12