--- title: Embedded Resources order: 35 layout: page --- [[components.embedded]] = Embedded Resources You can embed images in Vaadin UIs with the [classname]#Image# component, Adobe Flash graphics with [classname]#Flash#, and other web content with [classname]#BrowserFrame#. There is also a generic [classname]#Embedded# component for embedding other object types. The embedded content is referenced as _resources_, as described in <<../application/application-resources#application.resources,"Images and Other Resources">>. The following example displays an image as a class resource loaded with the class loader: [source, java] ---- Image image = new Image("Yes, logo:", new ClassResource("vaadin-logo.png")); main.addComponent(image); ---- The caption can be given as null to disable it. An empty string displays an empty caption which takes a bit space. The caption is managed by the containing layout. You can set an alternative text for an embedded resource with [methodname]#setAlternateText()#, which can be shown if images are disabled in the browser for some reason. The text can be used for accessibility purposes, such as for text-to-speech generation. [[components.embedded.image]] == Embedded [classname]#Image# The [classname]#Image# component allows embedding an image resource in a Vaadin UI. [source, java] ---- // Serve the image from the theme Resource res = new ThemeResource("img/myimage.png"); // Display the image without caption Image image = new Image(null, res); layout.addComponent(image); ---- The [classname]#Image# component has by default undefined size in both directions, so it will automatically fit the size of the embedded image. ((("scroll bars"))) If you want scrolling with scroll bars, you can put the image inside a [classname]#Panel# that has a defined size to enable scrolling, as described in <<../layout/layout-panel#layout.panel.scrolling,"Scrolling the Panel Content">>. You can also put it inside some other component container and set the [literal]#++overflow: auto++# CSS property for the container element in a theme to enable automatic scrollbars. (((overflow CSS property))) [[components.embedded.image.generated]] === Generating and Reloading Images You can also generate the image content dynamically using a [classname]#StreamResource#, as described in <<../application/application-resources#application.resources.stream,"Stream Resources">>, or with a [classname]#RequestHandler#. If the image changes, the browser needs to reload it. Simply updating the stream resource is not enough. Because of how caching is handled in some browsers, you can cause a reload easiest by renaming the filename of the resource with a unique name, such as one including a timestamp. You should set cache time to zero with [methodname]#setCacheTime()# for the resource object when you create it. // BUG #2470. [source, java] ---- // Create the stream resource with some initial filename StreamResource imageResource = new StreamResource(imageSource, "initial-filename.png"); // Instruct browser not to cache the image imageResource.setCacheTime(0); // Display the image Image image = new Image(null, imageResource); ---- When refreshing, you also need to call [methodname]#markAsDirty()# for the [classname]#Image# object. [source, java] ---- // This needs to be done, but is not sufficient image.markAsDirty(); // Generate a filename with a timestamp SimpleDateFormat df = new SimpleDateFormat("yyyyMMddHHmmssSSS"); String filename = "myfilename-" + df.format(new Date()) + ".png"; // Replace the filename in the resource imageResource.setFilename(makeImageFilename()); ---- [[components.embedded.browserframe]] == [classname]#BrowserFrame# The [classname]#BrowserFrame# allows embedding web content inside an HTML `<iframe>` element. You can refer to an external URL with [classname]#ExternalResource#. As the [classname]#BrowserFrame# has undefined size by default, it is critical that you define a meaningful size for it, either fixed or relative. [source, java] ---- BrowserFrame browser = new BrowserFrame("Browser", new ExternalResource("http://demo.vaadin.com/sampler/")); browser.setWidth("600px"); browser.setHeight("400px"); layout.addComponent(browser); ---- Notice that web pages can prevent embedding them in an <iframe>. [[components.embedded.embedded]] == Generic [classname]#Embedded# Objects The generic [classname]#Embedded# component allows embedding all sorts of objects, such as SVG graphics, Java applets, and PDF documents, in addition to the images, and browser frames which you can embed with the specialized components. Display an SVG image: [source, java] ---- // A resource reference to some object Resource res = new ThemeResource("img/reindeer.svg"); // Display the object Embedded object = new Embedded("My SVG", res); object.setMimeType("image/svg+xml"); // Unnecessary layout.addComponent(object); ---- The MIME type of the objects is usually detected automatically from the filename extension with the [classname]#FileTypeResolver# utility in Framework. If not, you can set it explicitly with [methodname]#setMimeType()#, as was done in the example above (where it was actually unnecessary). Some embeddable object types may require special support in the browser. You should make sure that there is a proper fallback mechanism if the browser does not support the embedded type. refslogtreecommitdiffstats
path: root/src/java/org/apache/fop/pdf/PDFArray.java
blob: 36ff57799574877047f9f109615056005b918a61 (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
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