19.8. Images

Images are nested within columns (for iteration) or inside worksheets (for direct placement using the startColumn/startRow and rowSpan/columnSpan attributes). Span tags are optional, and the image will be inserted without resizing if they are omitted.
<e:image>
Attributes
  • startColumn — A number value denoting the column in which the image starts. The default is the internal counter. The number value is 0-based.
  • startRow — A number value denoting the row in which the image starts. The default is the internal counter. The number value is 0-based.
  • columnSpan — A float value denoting the column span of the image. The default uses the default width of the image.
  • rowSpan — A float value denoting the row span of the image. The default uses the default height of the image.
  • URI — A string value denoting the URI to the image.
Child elements
  • none
Facets
  • none
 
<e:workbook> 
  <e:worksheet> 
    <e:image startRow="0" startColumn="0" rowSpan="4" columnSpan="4" 
       URI="http://foo.org/logo.jpg"/> 
  </e:worksheet> 
</e:workbook>
This defines an image in A1:E5 based on the given data.