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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
|
if not modules then modules = { } end modules ['lpdf-grp'] = {
version = 1.001,
comment = "companion to lpdf-ini.mkiv",
author = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
copyright = "PRAGMA ADE / ConTeXt Development Team",
license = "see context related readme files"
}
local type, tonumber = type, tonumber
local formatters, gsub = string.formatters, string.gsub
local concat = table.concat
local round = math.round
local backends, lpdf = backends, lpdf
local nodeinjections = backends.pdf.nodeinjections
local colors = attributes.colors
local basepoints = number.dimenfactors.bp
local nodeinjections = backends.pdf.nodeinjections
local codeinjections = backends.pdf.codeinjections
local registrations = backends.pdf.registrations
local pdfdictionary = lpdf.dictionary
local pdfarray = lpdf.array
local pdfconstant = lpdf.constant
local pdfboolean = lpdf.boolean
local pdfreference = lpdf.reference
local pdfflushobject = lpdf.flushobject
-- can also be done indirectly:
--
-- 12 : << /AntiAlias false /ColorSpace 8 0 R /Coords [ 0.0 0.0 1.0 0.0 ] /Domain [ 0.0 1.0 ] /Extend [ true true ] /Function 22 0 R /ShadingType 2 >>
-- 22 : << /Bounds [ ] /Domain [ 0.0 1.0 ] /Encode [ 0.0 1.0 ] /FunctionType 3 /Functions [ 31 0 R ] >>
-- 31 : << /C0 [ 1.0 0.0 ] /C1 [ 0.0 1.0 ] /Domain [ 0.0 1.0 ] /FunctionType 2 /N 1.0 >>
local function shade(stype,name,domain,color_a,color_b,n,colorspace,coordinates,separation,steps,fractions)
local func = nil
--
-- domain has to be consistently added in all dictionaries here otherwise
-- acrobat fails with a drawing error
--
domain = pdfarray(domain)
n = tonumber(n)
--
if steps then
local list = pdfarray()
local bounds = pdfarray()
local encode = pdfarray()
for i=1,steps do
if i < steps then
bounds[i] = fractions[i] or 1
end
encode[2*i-1] = 0
encode[2*i] = 1
list [i] = pdfdictionary {
FunctionType = 2,
Domain = domain,
C0 = pdfarray(color_a[i]),
C1 = pdfarray(color_b[i]),
N = n,
}
end
func = pdfdictionary {
FunctionType = 3,
Bounds = bounds,
Encode = encode,
Functions = list,
Domain = domain,
}
else
func = pdfdictionary {
FunctionType = 2,
Domain = domain,
C0 = pdfarray(color_a),
C1 = pdfarray(color_b),
N = n,
}
end
separation = separation and registrations.getspotcolorreference(separation)
local s = pdfdictionary {
ShadingType = stype,
ColorSpace = separation and pdfreference(separation) or pdfconstant(colorspace),
Domain = domain,
Function = pdfreference(pdfflushobject(func)),
Coords = pdfarray(coordinates),
Extend = pdfarray { true, true },
AntiAlias = pdfboolean(true),
}
lpdf.adddocumentshade(name,pdfreference(pdfflushobject(s)))
end
function lpdf.circularshade(name,domain,color_a,color_b,n,colorspace,coordinates,separation,steps,fractions)
shade(3,name,domain,color_a,color_b,n,colorspace,coordinates,separation,steps,fractions)
end
function lpdf.linearshade(name,domain,color_a,color_b,n,colorspace,coordinates,separation,steps,fractions)
shade(2,name,domain,color_a,color_b,n,colorspace,coordinates,separation,steps,fractions)
end
-- inline bitmaps but xform'd
--
-- we could derive the colorspace if we strip the data
-- and divide by x*y
local template = "q BI %s ID %s > EI Q"
local factor = 72/300
function nodeinjections.injectbitmap(t)
-- encoding is ascii hex, no checking here
local xresolution, yresolution = t.xresolution or 0, t.yresolution or 0
if xresolution == 0 or yresolution == 0 then
return -- fatal error
end
local colorspace = t.colorspace
if colorspace ~= "rgb" and colorspace ~= "cmyk" and colorspace ~= "gray" then
-- not that efficient but ok
local d = gsub(t.data,"[^0-9a-f]","")
local b = math.round(#d / (xresolution * yresolution))
if b == 2 then
colorspace = "gray"
elseif b == 6 then
colorspace = "rgb"
elseif b == 8 then
colorspace = "cmyk"
end
end
colorspace = lpdf.colorspaceconstants[colorspace]
if not colorspace then
return -- fatal error
end
local d = pdfdictionary {
W = xresolution,
H = yresolution,
CS = colorspace,
BPC = 8,
F = pdfconstant("AHx"),
-- CS = nil,
-- BPC = 1,
-- IM = true,
}
-- for some reasons it only works well if we take a 1bp boundingbox
local urx, ury = 1/basepoints, 1/basepoints
-- urx = (xresolution/300)/basepoints
-- ury = (yresolution/300)/basepoints
local width, height = t.width or 0, t.height or 0
if width == 0 and height == 0 then
width = factor * xresolution / basepoints
height = factor * yresolution / basepoints
elseif width == 0 then
width = height * xresolution / yresolution
elseif height == 0 then
height = width * yresolution / xresolution
end
local image = img.new {
stream = formatters[template](d(),t.data),
width = width,
height = height,
bbox = { 0, 0, urx, ury },
}
return img.node(image)
end
-- general graphic helpers
function codeinjections.setfigurealternative(data,figure)
local request = data.request
local display = request.display
if display and display ~= "" then
local nested = figures.push {
name = display,
page = request.page,
size = request.size,
prefix = request.prefix,
cache = request.cache,
width = request.width,
height = request.height,
}
figures.identify()
local displayfigure = figures.check()
if displayfigure then
-- figure.aform = true
img.immediatewrite(figure)
local a = pdfarray {
pdfdictionary {
Image = pdfreference(figure.objnum),
DefaultForPrinting = true,
}
}
local d = pdfdictionary {
Alternates = pdfreference(pdfflushobject(a)),
}
displayfigure.attr = d()
figures.pop()
return displayfigure, nested
else
figures.pop()
end
end
end
function codeinjections.getpreviewfigure(request)
local figure = figures.initialize(request)
if not figure then
return
end
figure = figures.identify(figure)
if not (figure and figure.status and figure.status.fullname) then
return
end
figure = figures.check(figure)
if not (figure and figure.status and figure.status.fullname) then
return
end
local image = figure.status.private
if image then
img.immediatewrite(image)
end
return figure
end
function codeinjections.setfiguremask(data,figure) -- mark
local request = data.request
local mask = request.mask
if mask and mask ~= "" then
figures.push {
name = mask,
page = request.page,
size = request.size,
prefix = request.prefix,
cache = request.cache,
width = request.width,
height = request.height,
}
figures.identify()
local maskfigure = figures.check()
if maskfigure then
local image = maskfigure.status.private
if image then
img.immediatewrite(image)
local d = pdfdictionary {
Interpolate = false,
SMask = pdfreference(image.objnum),
}
figure.attr = d()
end
end
figures.pop()
end
end
-- temp hack
function img.package(image) -- see lpdf-u3d **
local boundingbox = image.bbox
local imagetag = "Im" .. image.index
local resources = pdfdictionary {
ProcSet = pdfarray {
pdfconstant("PDF"),
pdfconstant("ImageC")
},
Resources = pdfdictionary {
XObject = pdfdictionary {
[imagetag] = pdfreference(image.objnum)
}
}
}
local width = boundingbox[3]
local height = boundingbox[4]
local xform = img.scan {
attr = resources(),
stream = formatters["%.6F 0 0 %.6F 0 0 cm /%s Do"](width,height,imagetag),
bbox = { 0, 0, width/basepoints, height/basepoints },
}
img.immediatewrite(xform)
return xform
end
-- experimental
local nofpatterns = 0
local f_pattern = formatters["q /Pattern cs /%s scn 0 0 %.6F %.6F re f Q"] -- q Q is not really needed
local texsavebox = tex.saveboxresource
function lpdf.registerpattern(specification)
nofpatterns = nofpatterns + 1
local d = pdfdictionary {
Type = pdfconstant("Pattern"),
PatternType = 1,
PaintType = 1,
TilingType = 2,
XStep = (specification.width or 10) * basepoints,
YStep = (specification.height or 10) * basepoints,
Matrix = {
1, 0, 0, 1,
(specification.hoffset or 0) * basepoints,
(specification.voffset or 0) * basepoints,
},
}
local resources = lpdf.collectedresources{ patterns = false }
local attributes = d()
local onlybounds = 1
local patternobj = texsavebox(specification.number,attributes,resources,true,onlybounds)
lpdf.adddocumentpattern("Pt" .. nofpatterns,lpdf.reference(patternobj ))
return nofpatterns
end
function lpdf.patternstream(n,width,height)
return f_pattern("Pt" .. n,width*basepoints,height*basepoints)
end
|