Hi Every one,
I am trying to generate Excel and PDF for my report through RE API .I am facing following problems:-
1)I am trying to dynamically insert image.When i try to resize the image no image is displayed in the pdf. without setting height and width image size is imporper.
Code I used is:-
ImageHandle imageHandle = designFactory.newImage(null);
imageHandle.setURL("
http://localhost:8080/reports/images/logo.jpg");
System.out.println(mDealsGlobalSettings.STR_APPLICATION_PATH + mDealsGlobalSettings.STR_IMAGE_FOLDER_FOR_ADVERTISER_LOGO+objmDealsAdvertiserReportDTO.getStrLogoName());
imageHandle.setHeight(90);
imageHandle.setWidth(200);
2)There are no images displayed in generated excel.What could be the reason for that.
Please help.
Regards,
Surabhi