Get an exception error if there are no parameters on %%BoundingBox:
My next lines are always additional comment blocks.
I changed the code in GhostscriptViewPsFormatHandler.cs
The original code is: (Line 196)
if (llx.Text != "(atend)")
I changed my copy to :
if (llx.Text != "(atend)" && ! llx.Text.StartsWith("%"))
A change should probably done for the previous case statement as well
if (token.Text != "(atend)")
My next lines are always additional comment blocks.
I changed the code in GhostscriptViewPsFormatHandler.cs
The original code is: (Line 196)
if (llx.Text != "(atend)")
I changed my copy to :
if (llx.Text != "(atend)" && ! llx.Text.StartsWith("%"))
A change should probably done for the previous case statement as well
if (token.Text != "(atend)")