summaryrefslogtreecommitdiff
path: root/include/mupdf/fitz/output-tga.h
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2018-11-14 00:15:14 +0100
committerTor Andersson <tor.andersson@artifex.com>2018-11-14 00:15:14 +0100
commit813e78aefb939daffd8f071be0790470ab037f2c (patch)
tree487a6cf616227f96f7fbe1732fdd89698a1b8646 /include/mupdf/fitz/output-tga.h
parentadb68c17dcb8f92508eda3dde0077b0d87158075 (diff)
downloadmupdf-master.tar.xz
Remove TARGA output support.HEADmaster
It is not very useful.
Diffstat (limited to 'include/mupdf/fitz/output-tga.h')
-rw-r--r--include/mupdf/fitz/output-tga.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/include/mupdf/fitz/output-tga.h b/include/mupdf/fitz/output-tga.h
deleted file mode 100644
index e481b09e..00000000
--- a/include/mupdf/fitz/output-tga.h
+++ /dev/null
@@ -1,36 +0,0 @@
-#ifndef MUPDF_FITZ_OUTPUT_TGA_H
-#define MUPDF_FITZ_OUTPUT_TGA_H
-
-#include "mupdf/fitz/system.h"
-#include "mupdf/fitz/context.h"
-#include "mupdf/fitz/output.h"
-#include "mupdf/fitz/band-writer.h"
-#include "mupdf/fitz/pixmap.h"
-
-/*
- fz_save_pixmap_as_tga: Save a pixmap as a TGA image file.
- Can accept RGB, BGR or Grayscale pixmaps, with or without
- alpha.
-*/
-void fz_save_pixmap_as_tga(fz_context *ctx, fz_pixmap *pixmap, const char *filename);
-
-/*
- Write a pixmap to an output stream in TGA format.
- Can accept RGB, BGR or Grayscale pixmaps, with or without
- alpha.
-*/
-void fz_write_pixmap_as_tga(fz_context *ctx, fz_output *out, fz_pixmap *pixmap);
-
-/*
- fz_new_tga_band_writer: Generate a new band writer for TGA
- format images. Note that image must be generated vertically
- flipped for use with this writer!
-
- Can accept RGB, BGR or Grayscale pixmaps, with or without
- alpha.
-
- is_bgr: True, if the image is generated in bgr format.
-*/
-fz_band_writer *fz_new_tga_band_writer(fz_context *ctx, fz_output *out, int is_bgr);
-
-#endif