1
2
3
4
5
6
7
8
9
10
11
12
13
14\writestatus{loading}{ConTeXt Graphic Macros Raw Bitmaps}
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\registerctxluafile{grphraw}{autosuffix}
43
44\unprotect
45
46\permanent\protected\def\bitmapimage[#S#1]#2
47 {\hbox\bgroup
48 \getdummyparameters[\c!color=rgb,\c!width=,\c!height=,\c!x=,\c!y=,#1]
49 \clf_bitmapimage
50 data {#2}
51 colorspace {\directdummyparameter\c!color}
52
53 \ifchkdimexpr\directdummyparameter\c!width \or width \lastchkdimension \fi
54 \ifchkdimexpr\directdummyparameter\c!height\or height \lastchkdimension \fi
55 \ifchknumexpr\directdummyparameter\c!x \or xresolution \lastchknumber \fi
56 \ifchknumexpr\directdummyparameter\c!y \or yresolution \lastchknumber \fi
57 \relax
58 \egroup}
59
60\permanent\protected\def\startbitmapimage[#S#1]#2\stopbitmapimage
61 {\bitmapimage[#1]{#2}}
62
63\permanent\protected\lettonothing\stopbitmapimage
64
65\protect \endinput
66 |