Ver código fonte

Avoid painting empty rectangles because that can lead to unwanted artifacts.

git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@344330 13f79535-47bb-0310-9956-ffa450edef68
tags/fop-0_90-alpha1
Jeremias Maerki 18 anos atrás
pai
commit
54ff093a1c

+ 3
- 1
src/java/org/apache/fop/render/pdf/PDFRenderer.java Ver arquivo

@@ -738,7 +738,9 @@ public class PDFRenderer extends AbstractPathOrientedRenderer {
* @see org.apache.fop.render.AbstractPathOrientedRenderer#fillRect(float, float, float, float)
*/
protected void fillRect(float x, float y, float w, float h) {
currentStream.add(x + " " + y + " " + w + " " + h + " re f\n");
if (w != 0 && h != 0) {
currentStream.add(x + " " + y + " " + w + " " + h + " re f\n");
}
}
/**

+ 7
- 5
src/java/org/apache/fop/render/ps/PSRenderer.java Ver arquivo

@@ -226,11 +226,13 @@ public class PSRenderer extends AbstractPathOrientedRenderer {
/** @see org.apache.fop.render.AbstractPathOrientedRenderer */
protected void fillRect(float x, float y, float width, float height) {
try {
gen.defineRect(x, y, width, height);
gen.writeln("fill");
} catch (IOException ioe) {
handleIOTrouble(ioe);
if (width != 0 && height != 0) {
try {
gen.defineRect(x, y, width, height);
gen.writeln("fill");
} catch (IOException ioe) {
handleIOTrouble(ioe);
}
}
}


Carregando…
Cancelar
Salvar