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
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
|
if not modules then modules = { } end modules ['lpdf-mis'] = {
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"
}
-- Although we moved most pdf handling to the lua end, we didn't change
-- the overall approach. For instance we share all resources i.e. we
-- don't make subsets for each xform or page. The current approach is
-- quite efficient. A big difference between MkII and MkIV is that we
-- now use forward references. In this respect the MkII code shows that
-- it evolved over a long period, when backends didn't provide forward
-- referencing and references had to be tracked in multiple passes. Of
-- course there are a couple of more changes.
local next, tostring = next, tostring
local format, gsub, formatters = string.format, string.gsub, string.formatters
local texset, texget = tex.set, tex.get
local backends, lpdf, nodes = backends, lpdf, nodes
local nodeinjections = backends.pdf.nodeinjections
local codeinjections = backends.pdf.codeinjections
local registrations = backends.pdf.registrations
local copy_node = node.copy
local nodepool = nodes.pool
local pdfliteral = nodepool.pdfliteral
local register = nodepool.register
local pdfdictionary = lpdf.dictionary
local pdfarray = lpdf.array
local pdfconstant = lpdf.constant
local pdfreference = lpdf.reference
local pdfunicode = lpdf.unicode
local pdfverbose = lpdf.verbose
local pdfstring = lpdf.string
local pdfflushobject = lpdf.flushobject
local pdfflushstreamobject = lpdf.flushstreamobject
local pdfaction = lpdf.action
local formattedtimestamp = lpdf.pdftimestamp
local adddocumentextgstate = lpdf.adddocumentextgstate
local addtocatalog = lpdf.addtocatalog
local addtoinfo = lpdf.addtoinfo
local addtopageattributes = lpdf.addtopageattributes
local addtonames = lpdf.addtonames
local variables = interfaces.variables
local v_stop = variables.stop
local v_none = variables.none
local v_max = variables.max
local v_bookmark = variables.bookmark
local v_fit = variables.fit
local v_doublesided = variables.doublesided
local v_singlesided = variables.singlesided
local v_default = variables.default
local v_auto = variables.auto
local v_fixed = variables.fixed
local v_landscape = variables.landscape
local v_portrait = variables.portrait
local v_page = variables.page
local v_paper = variables.paper
local positive = register(pdfliteral("/GSpositive gs"))
local negative = register(pdfliteral("/GSnegative gs"))
local overprint = register(pdfliteral("/GSoverprint gs"))
local knockout = register(pdfliteral("/GSknockout gs"))
local function initializenegative()
local a = pdfarray { 0, 1 }
local g = pdfconstant("ExtGState")
local d = pdfdictionary {
FunctionType = 4,
Range = a,
Domain = a,
}
local negative = pdfdictionary { Type = g, TR = pdfreference(pdfflushstreamobject("{ 1 exch sub }",d)) }
local positive = pdfdictionary { Type = g, TR = pdfconstant("Identity") }
adddocumentextgstate("GSnegative", pdfreference(pdfflushobject(negative)))
adddocumentextgstate("GSpositive", pdfreference(pdfflushobject(positive)))
initializenegative = nil
end
local function initializeoverprint()
local g = pdfconstant("ExtGState")
local knockout = pdfdictionary { Type = g, OP = false, OPM = 0 }
local overprint = pdfdictionary { Type = g, OP = true, OPM = 1 }
adddocumentextgstate("GSknockout", pdfreference(pdfflushobject(knockout)))
adddocumentextgstate("GSoverprint", pdfreference(pdfflushobject(overprint)))
initializeoverprint = nil
end
function nodeinjections.overprint()
if initializeoverprint then initializeoverprint() end
return copy_node(overprint)
end
function nodeinjections.knockout ()
if initializeoverprint then initializeoverprint() end
return copy_node(knockout)
end
function nodeinjections.positive()
if initializenegative then initializenegative() end
return copy_node(positive)
end
function nodeinjections.negative()
if initializenegative then initializenegative() end
return copy_node(negative)
end
-- function codeinjections.addtransparencygroup()
-- -- png: /CS /DeviceRGB /I true
-- local d = pdfdictionary {
-- S = pdfconstant("Transparency"),
-- I = true,
-- K = true,
-- }
-- lpdf.registerpagefinalizer(function() addtopageattributes("Group",d) end) -- hm
-- end
-- actions (todo: store and update when changed)
local openpage, closepage, opendocument, closedocument
function codeinjections.registerdocumentopenaction(open)
opendocument = open
end
function codeinjections.registerdocumentcloseaction(close)
closedocument = close
end
function codeinjections.registerpageopenaction(open)
openpage = open
end
function codeinjections.registerpagecloseaction(close)
closepage = close
end
local function flushdocumentactions()
if opendocument then
addtocatalog("OpenAction",pdfaction(opendocument))
end
if closedocument then
addtocatalog("CloseAction",pdfaction(closedocument))
end
end
local function flushpageactions()
if openpage or closepage then
local d = pdfdictionary()
if openpage then
d.O = pdfaction(openpage)
end
if closepage then
d.C = pdfaction(closepage)
end
addtopageattributes("AA",d)
end
end
lpdf.registerpagefinalizer (flushpageactions, "page actions")
lpdf.registerdocumentfinalizer(flushdocumentactions,"document actions")
--- info : this can change and move elsewhere
local identity = { }
function codeinjections.setupidentity(specification)
for k, v in next, specification do
if v ~= "" then
identity[k] = v
end
end
end
local done = false -- using "setupidentity = function() end" fails as the meaning is frozen in register
local function setupidentity()
if not done then
local title = identity.title
if not title or title == "" then
title = tex.jobname
end
addtoinfo("Title", pdfunicode(title), title)
local subtitle = identity.subtitle or ""
if subtitle ~= "" then
addtoinfo("Subject", pdfunicode(subtitle), subtitle)
end
local author = identity.author or ""
if author ~= "" then
addtoinfo("Author", pdfunicode(author), author) -- '/Author' in /Info, 'Creator' in XMP
end
-- local creator = identity.creator or ""
local creator = "LuaTeX + ConTeXt MkIV" -- has to be the same in CreatorTool
if creator ~= "" then
addtoinfo("Creator", pdfunicode(creator), creator) -- '/Creator' in /Info, 'CreatorTool' in XMP
end
local currenttimestamp = lpdf.timestamp()
addtoinfo("CreationDate", pdfstring(formattedtimestamp(currenttimestamp)))
local date = identity.date or ""
local pdfdate = formattedtimestamp(date)
if pdfdate then
addtoinfo("ModDate", pdfstring(pdfdate), date)
else
-- users should enter the date in 2010-01-19T23:27:50+01:00 format
-- and if not provided that way we use the creation time instead
addtoinfo("ModDate", pdfstring(formattedtimestamp(currenttimestamp)), currenttimestamp)
end
local keywords = identity.keywords or ""
if keywords ~= "" then
keywords = gsub(keywords, "[%s,]+", " ")
addtoinfo("Keywords",pdfunicode(keywords), keywords)
end
local id = lpdf.id()
addtoinfo("ID", pdfstring(id), id) -- needed for pdf/x
--
addtoinfo("ConTeXt.Version", environment.version)
addtoinfo("ConTeXt.Time", os.date("%Y-%m-%d %H:%M"))
addtoinfo("ConTeXt.Jobname", environment.jobname or tex.jobname)
addtoinfo("ConTeXt.Url", "www.pragma-ade.com")
addtoinfo("ConTeXt.Support", "contextgarden.net")
--
done = true
else
-- no need for a message
end
end
lpdf.registerpagefinalizer(setupidentity,"identity")
-- or when we want to be able to set things after pag e1:
--
-- lpdf.registerdocumentfinalizer(setupidentity,1,"identity")
local function flushjavascripts()
local t = interactions.javascripts.flushpreambles()
if #t > 0 then
local a = pdfarray()
local pdf_javascript = pdfconstant("JavaScript")
for i=1,#t do
local name, script = t[i][1], t[i][2]
local j = pdfdictionary {
S = pdf_javascript,
JS = pdfreference(pdfflushstreamobject(script)),
}
a[#a+1] = pdfstring(name)
a[#a+1] = pdfreference(pdfflushobject(j))
end
addtonames("JavaScript",pdfreference(pdfflushobject(pdfdictionary{ Names = a })))
end
end
lpdf.registerdocumentfinalizer(flushjavascripts,"javascripts")
-- -- --
local pagespecs = {
[v_none] = {
},
[v_max] = {
mode = "FullScreen",
},
[v_bookmark] = {
mode = "UseOutlines",
},
[v_fit] = {
mode = "UseNone",
fit = true,
},
[v_doublesided] = {
mode = "UseNone",
layout = "TwoColumnRight",
fit = true,
},
[v_singlesided] = {
mode = "UseNone"
},
[v_default] = {
mode = "UseNone",
layout = "auto",
},
[v_auto] = {
mode = "UseNone",
layout = "auto",
},
[v_fixed] = {
mode = "UseNone",
layout = "auto",
fixed = true, -- noscale
},
[v_landscape] = {
mode = "UseNone",
layout = "auto",
fixed = true,
duplex = "DuplexFlipShortEdge",
},
[v_portrait] = {
mode = "UseNone",
layout = "auto",
fixed = true,
duplex = "DuplexFlipLongEdge",
},
[v_page] = {
mode = "UseNone",
layout = "auto",
fixed = true,
duplex = "Simplex",
},
[v_paper] = {
mode = "UseNone",
layout = "auto",
fixed = true,
duplex = "Simplex",
paper = true,
},
}
local plusspecs = {
[v_max] = {
mode = "FullScreen",
},
[v_bookmark] = {
mode = "UseOutlines",
},
[v_fit] = {
fit = true,
},
[v_doublesided] = {
layout = "TwoColumnRight",
},
[v_fixed] = {
fixed = true,
},
[v_landscape] = {
duplex = "DuplexFlipShortEdge",
},
[v_portrait] = {
duplex = "DuplexFlipLongEdge",
},
[v_page] = {
duplex = "Simplex" ,
},
[v_paper] = {
paper = true,
},
}
local pagespec, topoffset, leftoffset, height, width, doublesided = "default", 0, 0, 0, 0, false
local cropoffset, bleedoffset, trimoffset, artoffset = 0, 0, 0, 0
local copies = false
function codeinjections.setupcanvas(specification)
local paperheight = specification.paperheight
local paperwidth = specification.paperwidth
local paperdouble = specification.doublesided
if paperheight then
texset('global','pageheight',paperheight)
end
if paperwidth then
texset('global','pagewidth',paperwidth)
end
pagespec = specification.mode or pagespec
topoffset = specification.topoffset or 0
leftoffset = specification.leftoffset or 0
height = specification.height or texget("pageheight")
width = specification.width or texget("pagewidth")
--
copies = specification.copies
if copies and copies < 2 then
copies = false
end
--
cropoffset = specification.cropoffset or 0
trimoffset = cropoffset - (specification.trimoffset or 0)
bleedoffset = trimoffset - (specification.bleedoffset or 0)
artoffset = bleedoffset - (specification.artoffset or 0)
--
if paperdouble ~= nil then
doublesided = paperdouble
end
end
local function documentspecification()
if not pagespec or pagespec == "" then
pagespec = v_default
end
local settings = utilities.parsers.settings_to_array(pagespec)
-- so the first one detemines the defaults
local first = settings[1]
local defaults = pagespecs[first]
local spec = defaults or pagespecs[v_default]
-- successive keys can modify this
if spec.layout == "auto" then
if doublesided then
local s = pagespecs[v_doublesided] -- to be checked voor interfaces
for k, v in next, s do
spec[k] = v
end
else
spec.layout = false
end
end
-- we start at 2 when we have a valid first default set
for i=defaults and 2 or 1,#settings do
local s = plusspecs[settings[i]]
if s then
for k, v in next, s do
spec[k] = v
end
end
end
--
local layout = spec.layout
local mode = spec.mode
local fit = spec.fit
local fixed = spec.fixed
local duplex = spec.duplex
local paper = spec.paper
if layout then
addtocatalog("PageLayout",pdfconstant(layout))
end
if mode then
addtocatalog("PageMode",pdfconstant(mode))
end
if fit or fixed or duplex or copies or paper then
addtocatalog("ViewerPreferences",pdfdictionary {
FitWindow = fit and true or nil,
PrintScaling = fixed and pdfconstant("None") or nil,
Duplex = duplex and pdfconstant(duplex) or nil,
NumCopies = copies and copies or nil,
PickTrayByPDFSize = paper and true or nil,
})
end
addtoinfo ("Trapped", pdfconstant("False")) -- '/Trapped' in /Info, 'Trapped' in XMP
addtocatalog("Version", pdfconstant(format("1.%s",pdf.getminorversion())))
end
-- temp hack: the mediabox is not under our control and has a precision of 5 digits
local factor = number.dimenfactors.bp
local f_value = formatters["%0.5F"]
local function boxvalue(n) -- we could share them
return pdfverbose(f_value(factor * n))
end
local function pagespecification()
local llx = leftoffset
local lly = texget("pageheight") + topoffset - height
local urx = width - leftoffset
local ury = texget("pageheight") - topoffset
-- boxes can be cached
local function extrabox(WhatBox,offset,always)
if offset ~= 0 or always then
addtopageattributes(WhatBox, pdfarray {
boxvalue(llx + offset),
boxvalue(lly + offset),
boxvalue(urx - offset),
boxvalue(ury - offset),
})
end
end
extrabox("CropBox",cropoffset,true) -- mandate for rendering
extrabox("TrimBox",trimoffset,true) -- mandate for pdf/x
extrabox("BleedBox",bleedoffset) -- optional
-- extrabox("ArtBox",artoffset) -- optional .. unclear what this is meant to do
end
lpdf.registerpagefinalizer(pagespecification,"page specification")
lpdf.registerdocumentfinalizer(documentspecification,"document specification")
-- Page Label support ...
--
-- In principle we can also support /P (prefix) as we can just use the verbose form
-- and we can then forget about the /St (start) as we don't care about those few
-- extra bytes due to lack of collapsing. Anyhow, for that we need a stupid prefix
-- variant and that's not on the agenda now.
local map = {
numbers = "D",
Romannumerals = "R",
romannumerals = "r",
Characters = "A",
characters = "a",
}
-- local function featurecreep()
-- local pages, lastconversion, list = structures.pages.tobesaved, nil, pdfarray()
-- local getstructureset = structures.sets.get
-- for i=1,#pages do
-- local p = pages[i]
-- if not p then
-- return -- fatal error
-- else
-- local numberdata = p.numberdata
-- if numberdata then
-- local conversionset = numberdata.conversionset
-- if conversionset then
-- local conversion = getstructureset("structure:conversions",p.block,conversionset,1,"numbers")
-- if conversion ~= lastconversion then
-- lastconversion = conversion
-- list[#list+1] = i - 1 -- pdf starts numbering at 0
-- list[#list+1] = pdfdictionary { S = pdfconstant(map[conversion] or map.numbers) }
-- end
-- end
-- end
-- if not lastconversion then
-- lastconversion = "numbers"
-- list[#list+1] = i - 1 -- pdf starts numbering at 0
-- list[#list+1] = pdfdictionary { S = pdfconstant(map.numbers) }
-- end
-- end
-- end
-- addtocatalog("PageLabels", pdfdictionary { Nums = list })
-- end
local function featurecreep()
local pages = structures.pages.tobesaved
local list = pdfarray()
local getset = structures.sets.get
local stopped = false
local oldlabel = nil
local olconversion = nil
for i=1,#pages do
local p = pages[i]
if not p then
return -- fatal error
end
local label = p.viewerprefix or ""
if p.status == v_stop then
if not stopped then
list[#list+1] = i - 1 -- pdf starts numbering at 0
list[#list+1] = pdfdictionary {
P = pdfunicode(label),
}
stopped = true
end
oldlabel = nil
oldconversion = nil
stopped = false
else
local numberdata = p.numberdata
local conversion = nil
local number = p.number
if numberdata then
local conversionset = numberdata.conversionset
if conversionset then
conversion = getset("structure:conversions",p.block,conversionset,1,"numbers")
end
end
conversion = conversion and map[conversion] or map.numbers
if number == 1 or oldlabel ~= label or oldconversion ~= conversion then
list[#list+1] = i - 1 -- pdf starts numbering at 0
list[#list+1] = pdfdictionary {
S = pdfconstant(conversion),
St = number,
P = label ~= "" and pdfunicode(label) or nil,
}
end
oldlabel = label
oldconversion = conversion
stopped = false
end
end
addtocatalog("PageLabels", pdfdictionary { Nums = list })
end
lpdf.registerdocumentfinalizer(featurecreep,"featurecreep")
|