summaryrefslogtreecommitdiff
path: root/xpr.h
blob: 42a3f59ab642c2ad1d0faeecdda6bd8bb1b346a4 (plain)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64

#ifndef XPR_H
#define XPR_H 1

#include <stdio.h>
#include <string.h>
#include <stdlib.h>

/* 3812 PagePrinter macros */
#define PPI                 240
#define inch2pel(inches)    ((int) ((inches) * PPI))
#define DEFAULT_WIDTH       8.5
#define X_MAX_PELS          inch2pel(DEFAULT_WIDTH)
#define DEFAULT_LENGTH      11
#define Y_MAX_PELS          inch2pel(DEFAULT_LENGTH)

#define INTENSITY(color) (30L*(int)(color)->red + \
                          59L*(int)(color)->green + \
                          11L*(int)(color)->blue)

#define INTENSITYPER(per) (((1<<16)-1)*((long)(per)))
#define HALFINTENSITY INTENSITYPER(50)

enum orientation {
    UNSPECIFIED    = -1,
    PORTRAIT       = 0,
    LANDSCAPE      = 1,
    UPSIDE_DOWN    = 2,
    LANDSCAPE_LEFT = 3
  };

enum device {PS, PP, LJET, PJET, PJETXL};

/* Global variables */
extern const char *progname;
extern int debug;

/* Global prototypes */
/* x2jet.c */
void x2jet(
  FILE *in, FILE *out,
  int scale, int density,
  int width, int height, int left, int top,  /* in 300ths of an inch */
  const char *header, const char *trailer,
  enum orientation orient,
  int invert, int initial_formfeed, int position_on_page, int slide,
  enum device device,
  unsigned int cutoff,
  float gamma,
  int render);
/* x2pmp.c */
void x2pmp(FILE *in, FILE *out,
  int scale,
  int p_width, int p_length, int x_pos, int y_pos, /* in pels (units of PPI) */
  char *head, char *foot,
  enum orientation orient,
  int invert);
/* xpr.c */
void _invbits(register unsigned char *b,   register long n);
void _swapbits(register unsigned char *b,  register long n);
void _swapshort(register char *bp, register long n);
void _swaplong(register char *bp,  register long n);

#endif /* !XPR_H */