From 7a3be46c189c763e045fc3fe7472c1ae00471218 Mon Sep 17 00:00:00 2001 From: orbiter Date: Fri, 28 Oct 2005 13:03:30 +0000 Subject: [PATCH] bugfix for last commit git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@999 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- htroot/imagetest.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/htroot/imagetest.java b/htroot/imagetest.java index 765d9024a..299c1dbf9 100644 --- a/htroot/imagetest.java +++ b/htroot/imagetest.java @@ -100,8 +100,8 @@ public class imagetest { img.setMode(ImagePainter.MODE_ADD); img.setColor(ImagePainter.ADDITIVE_BLACK); - for (int y = 0; y < 600; y = y + 50) img.print(0, 6 + y, "" + y, true); - for (int x = 0; x < 800; x = x + 50) img.print(x, 6 , "" + x, true); + for (int y = 0; y < 600; y = y + 50) img.print(0, 6 + y, 0, "" + y, true); + for (int x = 0; x < 800; x = x + 50) img.print(x, 6 , 0, "" + x, true); img.setColor(ImagePainter.ADDITIVE_RED); img.dot(550, 110, 90, true); img.setColor(ImagePainter.ADDITIVE_GREEN); @@ -114,9 +114,9 @@ public class imagetest { img.arc(220, 110, 50, 90, 30, 110); img.arc(210, 120, 50, 90, 30, 110); img.setColor(ImagePainter.ADDITIVE_BLACK); - img.print(50, 110, "BROADCAST MESSAGE #772: NODE %882 BLACK abcefghijklmnopqrstuvwxyz", true); + img.print(50, 110, 0, "BROADCAST MESSAGE #772: NODE %882 BLACK abcefghijklmnopqrstuvwxyz", true); img.setColor(ImagePainter.ADDITIVE_GREEN); - img.print(50, 120, "BROADCAST MESSAGE #772: NODE %882 GREEN abcefghijklmnopqrstuvwxyz", true); + img.print(50, 120, 0, "BROADCAST MESSAGE #772: NODE %882 GREEN abcefghijklmnopqrstuvwxyz", true); for (long i = 0; i < 256; i++) { img.setColor(i); img.dot(10 + 14 * (int) (i / 16), 200 + 14 * (int) (i % 16), 6, true);