Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Image By Building byte array in Expression (BIRT)"

(Description)
(Description)
Line 16: Line 16:
 
  importPackage(Packages.java.io);
 
  importPackage(Packages.java.io);
 
  importPackage(Packages.java.lang);
 
  importPackage(Packages.java.lang);
+
 
 
  var file = new File("c:/temp/test.png");
 
  var file = new File("c:/temp/test.png");
 
  var ist = new FileInputStream(file);
 
  var ist = new FileInputStream(file);
 
  var lengthi = file.length();
 
  var lengthi = file.length();
+
 
 
  bytesa = new ByteArrayOutputStream( lengthi);
 
  bytesa = new ByteArrayOutputStream( lengthi);
 
  var c;
 
  var c;
 
  while((c=ist.read()) != -1){
 
  while((c=ist.read()) != -1){
bytesa.write(c);
+
  bytesa.write(c);
 
  }    
 
  }    
 
  ist.close();
 
  ist.close();
Line 37: Line 37:
 
  importPackage(Packages.org.eclipse.swt.graphics);
 
  importPackage(Packages.org.eclipse.swt.graphics);
 
  importPackage(Packages.org.eclipse.swt);
 
  importPackage(Packages.org.eclipse.swt);
 
+
 
  imgl = new ImageLoader();
 
  imgl = new ImageLoader();
 
  imgl.load("c:/temp/test.png");
 
  imgl.load("c:/temp/test.png");
 
  baos = new ByteArrayOutputStream();
 
  baos = new ByteArrayOutputStream();
+
 
  imgl.save(baos, SWT.IMAGE_PNG);
 
  imgl.save(baos, SWT.IMAGE_PNG);
 
  myout = baos.toByteArray();
 
  myout = baos.toByteArray();

Revision as of 14:08, 16 May 2007

< To: Report Developer Examples (BIRT)
This example has no Bugzilla entry.

Introduction

This example demonstrates how to include an image by creating a byte array in an expression.

BIRT Version Compatibility

This example was built and tested with BIRT 2.1.2.

Example Files

This example has no example attachment.

Description

BIRT Image elements support URLs, Embedded images within the report, Images from resource folders, and Dynamic images (BLOB) types usually from databases. Another way of using the Dynamic image is construct your own byte array within the birt expression. This can also be done within a Java Event Handler on the image element.
When selecting the Dynamic image radial in the Image editor, the expression return value needs to be a byte array which contains the data for the image. As an example the following expression will return a working image.

importPackage(Packages.java.io);
importPackage(Packages.java.lang);
 
var file = new File("c:/temp/test.png");
var ist = new FileInputStream(file);
var lengthi = file.length();
 
bytesa = new ByteArrayOutputStream( lengthi);
var c;
while((c=ist.read()) != -1){
 		bytesa.write(c);
}	  
ist.close();
bytesa.toByteArray();


If you are using an SWT ImageLoader you can build an expression similar to:

importPackage(Packages.java.io);
importPackage(Packages.java.lang);
importPackage(Packages.org.eclipse.swt.widgets);
importPackage(Packages.org.eclipse.swt.graphics);
importPackage(Packages.org.eclipse.swt);

imgl = new ImageLoader();
imgl.load("c:/temp/test.png");
baos = new ByteArrayOutputStream();
		
imgl.save(baos, SWT.IMAGE_PNG);
myout = baos.toByteArray();

Comments

Please enter comments below by selecting the edit icon to the right. You will need a Bugzilla account to add comments.


Back to the top