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

teodord

Members
  • Posts

    5,346
  • Joined

  • Last visited

  • Days Won

    1

 Content Type 

Profiles

Forum

Events

Featured Visualizations

Knowledge Base

Documentation (PDF Downloads)

Blog

Documentation (Test Area)

Documentation

Dr. Jaspersoft Webinar Series

Downloads

Everything posted by teodord

  1. Changed Status from New to Feedback Requested Changed Assigned User from @User_306070 to @teodord Hi,I assume "row title" refers to the row group header cell content. Do you have an example JRXML and maybe its PDF output that would demonstrate the problem?Feel free to reopen this if you still experience the problem and can provide more details about it.Thank you,Teodor
  2. Changed Resolution from Open to Unable to Reproduce Changed Status from New to Resolved Changed Assigned User from @User_306070 to @teodord Hi,This is usually caused by the fact that the report uses some fonts that are not available to the application that actually runs those reports.Missing fonts are replaced with some defaults specific to the machine, with different metrics and the text does not fit in PDF exactly like it does in AWT at report fill time.Feel free to reopen this if you still experience the problem and can provide some JRXML for us to look into .Thank you,Teodor
  3. Changed Resolution from Open to Fixed Changed Status from Acknowledged to Resolved Hi,We decided to introduce custom properties in existing report elements to produce PDF form fields, instead of forcing users to rely on custom component sample outside the core library.This is now committed to Github master branch and will be part of the next release.We support text, combobox, list, checkboxes and radio groups.Thank you,Teodor
  4. Changed Resolution from Open to Won't Fix Changed Status from Acknowledged to Resolved Hi,The VDT-XML project does not seem to be active anymore and its GPL license makes it difficult for us to use in combination with JasperReports.Closing this.Thanks,Teodor
  5. Changed Resolution from Open to Won't Fix Changed Status from Acknowledged to Resolved Hi,There was not much interest in this type of data source, so I'm closing it. Feel free to reopen if you think we need to support this.Thanks,Teodor
  6. Changed Resolution from Open to Won't Fix Changed Status from Acknowledged to Resolved Hi,We'll leave it as it is.Thanks,Teodor
  7. Changed Resolution from Open to Fixed Changed Status from Acknowledged to Resolved Hi,For a long time JasperReports had an asynchronous report filler and this is explained in the JR Ultimate Guide.Thank you,Teodor
  8. Hi, TIFF is a multi-page image format and we can use the JRGraphics2DExporter in JasperReports to export reports to multi-page TIFF files. The TIFF files are created using the ImageIO API, which is part of the Java Virtual Machine. However, for Java 8, you would also need this plugin: https://github.com/haraldk/TwelveMonkeys or this other plugin: https://github.com/jai-imageio/jai-imageio-core Since Java 9, support for TIFF is present in the JVM, so the plugin is no longer needed. Here is some sample code that helps export reports to TIFF: ImageWriter writer = ImageIO.getImageWritersByFormatName("TIFF").next(); try (FileOutputStream out = new FileOutputStream(jasperPrint.getName() + ".tiff")) { try (ImageOutputStream output = ImageIO.createImageOutputStream(out)) { writer.setOutput(output); ImageWriteParam params = writer.getDefaultWriteParam(); params.setCompressionMode(ImageWriteParam.MODE_EXPLICIT); params.setCompressionType("Deflate"); float zoom = 3f; writer.prepareWriteSequence(null); int pageCount = jasperPrint.getPages().size(); for (int page = 0; page < pageCount; page++) { BufferedImage image = (BufferedImage) JRPrinterAWT.printPageToImage(jasperPrint, page, zoom); writer.writeToSequence(new IIOImage(image, null, null), params); } writer.endWriteSequence(); } out.close(); } catch (Exception e) { throw new RuntimeException(e); } finally { writer.dispose(); }[/code]Attached is a sample report exported to TIFF using the above code. I hope this helps. Teodor
  9. Changed Resolution from Open to Unable to Reproduce Changed Status from New to Resolved Changed Assigned User from - to @teodord Hi,I don't see any error log attached to this tracker. I have tested this property again in WEB-INF/classes/jasperreports.properties by turning it to false and the AllAccounts report using Calibri font which does not exist on MaxOs has crashed as expected.If you still have the problem and can provide more details about it, feel free to reopen this.Thank you,Teodor
  10. Changed Resolution from Open to Works as Designed Changed Status from New to Resolved Changed Assigned User from - to @teodord Hi,Since QR codes were introduced in JRL version 6.0.2, you cannot have them working in JRS version 6.0.1.Feel free to reopen this if you still experience the problem with a more recent version of JRS.Thank you,Teodor
  11. Changed Status from Feedback Requested to Resolved Feel free to reopen this if you can provide more details and can help us reproduce it.Thanks,Teodor
  12. Changed Resolution from Open to Unable to Reproduce Changed Status from New to Resolved Changed Assigned User from @anonymous to @teodord Hi,Feel free to reopen this one if you still have the problem and can provide a report for us to reproduce on our side.Thanks,Teodor
  13. Changed Resolution from Open to Fixed Changed Status from Acknowledged to Resolved Hi,The image rendering in exports has changed a lot since this was reported and I think it is now fixed, as I was able to export to ODT using the code provided.Thank you,Teodor
  14. Changed Assigned User from - to @shertage
  15. Changed Resolution from Open to Won't Fix Changed Status from Acknowledged to Resolved
  16. Hi, C-Box I am closing this because I think there are some reasonable workarounds for situations like this. Thanks, Teodor
  17. Changed Resolution from Open to Unable to Reproduce Changed Status from Feedback Requested to Resolved Hi,Feel free to reopen this in case you can provide the actual JRXML templates.Thank you,Teodor
  18. Changed Resolution from Open to Unable to Reproduce Changed Status from Feedback Requested to Closed Hi,Feel free to reopen if you experience this problem with a recent version of the library.Thank you,Teodor
  19. Hi, I have closed the tracker at: https://community.jaspersoft.com/jasperreports-library/issues/3056-0 by providing some workarounds, as this works as designed. Thank you, Teodor
  20. Changed Status from New to Feedback Requested Changed Assigned User from - to @teodord Hi,It would be good to see an actual document which raises the error and not a screenshot of the error.Thanks,Teodor
  21. Changed Resolution from Open to Fixed Changed Status from New to Resolved Changed Assigned User from @lucianc to @teodord Hi,This is implemented on this Git master branch and will be part of the next release.Table sections now have a printWhenExpression property/Thanks,Teodor
  22. Changed Resolution from Open to Fixed Changed Status from New to Resolved Hi,This is implemented on this Git master branch and will be part of the next release.Table sections now have a printWhenExpression property/Thanks,Teodor
  23. Changed Resolution from Open to No Change Required Changed Status from New to Closed Changed Assigned User from - to @teodord Hi,This is too old now and more recent versions of Tomcat are available. In any case, there is nothing to fix in JR lib to solve this server class loading issue.Thanks,Teodor
  24. BTW, having the summary on a new page can be achieved without break element but rather with the isSummaryNewPage flag of the report template. I hope this helps. Teodor
  25. Changed Status from New to Feedback Requested Hi,Wouldn't it be easier to just send us some files instead of describing them to us?Thanks,Teodor
×
×
  • Create New...