GithubHelp home page GithubHelp logo

jfree / orsonpdf Goto Github PK

View Code? Open in Web Editor NEW
26.0 7.0 14.0 5.11 MB

A fast, lightweight PDF generator for the Java platform

Home Page: https://github.com/jfree/orsonpdf

License: Other

Java 99.81% HTML 0.19%
pdf java-library java2d graphics2d

orsonpdf's People

Contributors

jfree avatar mhschmieder avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

orsonpdf's Issues

Transformation (scaling) issue after g2.create()

After calling Graphics2D tempGraphics = (Graphics2D) g2d.create(); and doing transformations on the tempGraphics object (see method code below), there is some unexpected behaviour.
When drawing again on the original g2d object, the drawing is done at wrong scale (and place).

In other words: the "Transform" of the original Graphics2D object gets changed by its copy.

   private void drawString(Graphics2D g2d, String lb, double mmX, double mmY) {
        float sf = 10; //fontscalefactor
        AffineTransform scaled = AffineTransform.getScaleInstance(1d / sf, 1d / sf);
        Graphics2D tempGraphics = (Graphics2D) g2d.create();
        tempGraphics.transform(scaled);
        tempGraphics.drawString(lb, (float)mmX * sf, (float)mmY * sf);
        tempGraphics.dispose(); // Release system ressources
    }

It seems that PDFGraphics2D.create() passes over the GraphicsStream object gs to the new Graphics object. So the original and new Graphics objects share gs. Maybe this is the reason transformations apply to both objects.

Note: jFreeSvg does not have this issue

JFreeChart ChartPanel renders as Raster rather than Vector

In OrsonPDF Version 1.7 (downloaded from Object Refinery ), I tried to run the demo programs (under src/main/java/com/orsonpdf/demo) to verify that JFreeCharts indeed render as vector format pdfs.

PDFBarChartDemo1 seems to render a very beautiful PDF, so what I did is I copied the createChart() and createDataset() methods from it and put them in SwingUIToPDFDemo. Then I modified the createContent() method, and changed the following line:

tabs.add("Tab 2", new JButton("Second Tab"));

to look as follows:

tabs.add("Tab 2", new ChartPanel(createChart(createDataset())));

When I run the SwingUIToPDFDemo now, on Tab 2 I get the same JFreeChart as I got when running the Bar Chart demo, yet when I press the "Save to PDF" button, the pdf that I get renders the chart as a raster chart rather than a vector chart.

Is there a workaround for this?

Unable to render non-English letters supported by the font

I can't get Orson PDF to display non-English letters contained in the text when not rendering the text as vector graphic. I only get '???' where it should say "ØÆÅ". I have checked that the Font supports this letter using Font#canDisplay() and it is of course installed on the system (checked using Font#getFamily() being not equal to DIALOGUE).

    Font f = new Font("DejaVu Serif", PLAIN, 16);
    graphics2D.setFont(f);
    System.out.println("family" + f.getFamily() + " " + f.getName());
    System.out.println("Can display Ø:" + f.canDisplay('Ø') );

    //vector works
    graphics2D.setRenderingHint(PDFHints.KEY_DRAW_STRING_TYPE, PDFHints.VALUE_DRAW_STRING_TYPE_VECTOR);
    graphics2D.drawString("VECTOR: æøå ØÅÆ", 0, 20);

    //normal text doesn't
    graphics2D.setRenderingHint(PDFHints.KEY_DRAW_STRING_TYPE, PDFHints.VALUE_DRAW_STRING_TYPE_STANDARD);
    graphics2D.drawString("TEXT: æøå ØÅÆ", 300, 20);

Embedding exotic fonts into PDF

Hello,

I have an issue with fonts. Generally I use Dialog font but also some system fonts that are not default Java fonts but this library seems to support only default fonts (12 of 14 in fact). Exotic fonts are replaced by Courier, that is not good for me.

There is a way to embed them automatically ?

In code, The Pages.findOrCreateFontReference() method and its call to FontMApper.mapToBaseFont() seems to be the origin of font selection but I don't know how PDF format works.

Best regards,

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.