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
|
if not modules then modules = { } end modules ['lpdf-swf'] = {
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"
}
-- The following code is based on tests by Luigi Scarso. His prototype
-- was using tex code. This is the official implementation.
local format, gsub = string.format, string.gsub
local backends, lpdf = backends, lpdf
local pdfconstant = lpdf.constant
local pdfboolean = lpdf.boolean
local pdfstring = lpdf.string
local pdfunicode = lpdf.unicode
local pdfdictionary = lpdf.dictionary
local pdfarray = lpdf.array
local pdfnull = lpdf.null
local pdfreference = lpdf.reference
local pdfimmediateobject = lpdf.immediateobject
local checkedkey = lpdf.checkedkey
local codeinjections = backends.pdf.codeinjections
local nodeinjections = backends.pdf.nodeinjections
local pdfannotation_node = nodes.pool.pdfannotation
local activations = {
click = "XA",
page = "PO",
focus = "PV",
}
local deactivations = {
click = "XD",
page = "PI",
focus = "PC",
}
table.setmetatableindex(activations, function() return activations .click end)
table.setmetatableindex(deactivations,function() return deactivations.focus end)
local function insertswf(spec)
local width = spec.width
local height = spec.height
local filename = spec.foundname
local resources = spec.resources
local display = spec.display
local controls = spec.controls
local resources = resources and parametersets[resources]
local display = display and parametersets[display]
local controls = controls and parametersets[controls] -- not yet used
local preview = checkedkey(display,"preview","string")
local toolbar = checkedkey(display,"toolbar","boolean")
local embeddedreference = codeinjections.embedfile { file = filename }
local flash = pdfdictionary {
Subtype = pdfconstant("Flash"),
Instances = pdfarray {
pdfdictionary {
Asset = embeddedreference,
Params = pdfdictionary {
Binding = pdfconstant("Background") -- Foreground makes swf behave erratic
}
},
},
}
local flashreference = pdfreference(pdfimmediateobject(tostring(flash)))
local configuration = pdfdictionary {
Configurations = pdfarray { flashreference },
Assets = pdfdictionary {
Names = pdfarray {
pdfstring(filename),
embeddedreference,
}
},
}
if resources then
local names = configuration.Assets.Names
local function add(filename)
local filename = gsub(filename,"%./","")
local embeddedreference = codeinjections.embedfile { file = filename, keepdir = true }
names[#names+1] = pdfstring(filename)
names[#names+1] = embeddedreference
end
local paths = resources.paths
if paths then
for i=1,#paths do
local files = dir.glob(paths[i] .. "/**")
for i=1,#files do
add(files[i])
end
end
end
local files = resources.files
if files then
for i=1,#files do
add(files[i])
end
end
end
local configurationreference = pdfreference(pdfimmediateobject(tostring(configuration)))
local activation = pdfdictionary {
Type = pdfconstant("RichMediaActivation"),
Condition = pdfconstant(activations[display.open]),
Configuration = flashreference,
Animation = pdfdictionary {
Subtype = pdfconstant("Linear"),
Speed = 1,
Playcount = 1,
},
Presentation = pdfdictionary {
PassContextClick = false,
Style = pdfconstant("Embedded"),
Toolbar = toolbar,
NavigationPane = false,
Transparent = true,
Window = pdfdictionary {
Type = pdfconstant("RichMediaWindow"),
Width = pdfdictionary {
Default = 100,
Min = 100,
Max = 100,
},
Height = pdfdictionary {
Default = 100,
Min = 100,
Max = 100,
},
Position = pdfdictionary {
Type = pdfconstant("RichMediaPosition"),
HAlign = pdfconstant("Near"),
VAlign = pdfconstant("Near"),
HOffset = 0,
VOffset = 0,
}
}
},
-- View
-- Scripts
}
local deactivation = pdfdictionary {
Type = pdfconstant("RichMediaDeactivation"),
Condition = pdfconstant(deactivations[display.close]),
}
local richmediasettings = pdfdictionary {
Type = pdfconstant("RichMediaSettings"),
Activation = activation,
Deactivation = deactivation,
}
local settingsreference = pdfreference(pdfimmediateobject(tostring(richmediasettings)))
local appearance
if preview then
local figure = codeinjections.getpreviewfigure { name = preview, width = width, height = height }
if figure then
local image = img.package(figure.status.private)
appearance = pdfdictionary { N = pdfreference(image.objnum) }
end
end
local annotation = pdfdictionary {
Subtype = pdfconstant("RichMedia"),
RichMediaContent = configurationreference,
RichMediaSettings = settingsreference,
AP = appearance,
}
return annotation, nil, nil
end
function backends.pdf.nodeinjections.insertswf(spec)
local annotation, preview, ref = insertswf {
foundname = spec.foundname,
width = spec.width,
height = spec.height,
display = spec.display,
controls = spec.controls,
resources = spec.resources,
-- factor = spec.factor,
-- label = spec.label,
}
node.write(pdfannotation_node(spec.width,spec.height,0,annotation()))
end
|