>
> > It's mostly in PageDrawer.java search for things line width and clip.


Attempts to affect the line width are ineffective.

For example, there's a function in PagDrawer which ensures that the
threshold for lineWidth is at least 0.25.  I've changed this to 2.0f, 10.0f
and no perceivable differences.  Most of the lines are reporting as *0.708f*,
but I'm unsure how to know if they represent the lines in question.

        // minimum line width as used by Adobe Reader
        - if (lineWidth < 0.25)
        + if (lineWidth < 10)
        {
        -     lineWidth = 0.25f;
        +    lineWidth = 10f;
        }

Per suggestion, I've looked into references to clip as well, but I can't
find any obvious areas to change, most of them seem to be slight bugfixes
or direct passing to the Graphics object.  I was unable to find a way to
modify the PDF behavior using clip.

Do you have any other pointers to how to modify the behavior of this PDF?

I understand that the issue is likely in the native JVM. components, but I
was hoping to at least impact the behavior through code changes to better
understand the problem.


-Tres

Reply via email to