File: imjpeg.h

package info (click to toggle)
libimager-perl 1.027%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 6,820 kB
  • sloc: perl: 32,971; ansic: 28,092; makefile: 52; cpp: 4
file content (28 lines) | stat: -rw-r--r-- 491 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#ifndef IMAGER_IMJPEG_H
#define IMAGER_IMJPEG_H

#include "imdatatypes.h"

i_img*
i_readjpeg_wiol(io_glue *data, int length, char** iptc_itext, int *itlength);

undef_int
i_writejpeg_wiol(i_img *im, io_glue *ig, int qfactor);

extern const char *
i_libjpeg_version(void);

extern int
is_turbojpeg(void);

extern int
is_mozjpeg(void);

/* whether arithmetic coding is available for encode/decode */
extern int
has_decode_arith_coding(void);
extern int
has_encode_arith_coding(void);


#endif