Jump to content
We've recently updated our Privacy Statement, available here ×

problem in inserting images to excel sheet


Recommended Posts

By: Deepak Borule - deepakborule

problem in inserting images to excel sheet

2003-11-19 02:18

Hi,

I am generating microsoft excel sheets using japser reports

I am required to insert image in excel. I am going so by

 

<image scaleImage="RetainShape" hAlign="Center" vAlign="Top">

<reportElement x="0" y="10" width="700" height="355"/>

<imageExpression>"abc.jpg"</imageExpression>

</image>

 

But nothing is getting inserted in the excel sheet.

 

Can anybody help me out.

 

Thanks

Deepak

 

 

 

 

By: Teodor Danciu - teodord

RE: problem in inserting images to excel shee

2003-11-29 00:16

 

Hi,

 

Images are not supported by the POI library we use

to generate XLS content.

 

Thank you,

Teodor

Link to comment
Share on other sites

  • 2 years later...
  • Replies 3
  • Created
  • Last Reply

Top Posters In This Topic

I am not using JRXML file rather just creating my design using java APIs only. But i am not able to get the picture in Excel sheet. Please help me on the code urgently.

 

JRDesignBand bandDetail = new JRDesignBand();

bandDetail.setHeight(fontMetric.getHeight() + 1);

bandDetail.setSplitAllowed(false);

JRDesignImage image = new JRDesignImage(jasperDesign);

image.setScaleImage(JRImage.SCALE_IMAGE_CLIP);


JRDesignExpression jrExpress = new JRDesignExpression();

JRDesignExpressionChunk expressChunk = new JRDesignExpressionChunk();

String str = "http://www.google.de/intl/de_de/images/logo.gif";

expressChunk.setText("""+str+""");

jrExpress.addChunk(expressChunk);

jrExpress.setValueClass(String.class);

image.setExpression(jrExpress);

 bandDetail.addElement(image);

 

Regards

~Aman

Link to comment
Share on other sites

  • 4 years later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×
×
  • Create New...