/* * Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions.
*/
/* * @test MirrorTest * @bug 8255387 * @summary Mirrored characters should be drawn correctly * @run main MirrorTest
*/
static Point getCenterOfGravity(BufferedImage img) { int count = 0; int sx = 0; int sy = 0; for (int y = 0; y < SIZE; y++) { for (int x = 0; x < SIZE; x++) { int c = img.getRGB(x, y) & 0xFFFFFF; if (c == 0) {
count++;
sx += x;
sy += y;
}
}
} if (count == 0) { returnnull;
} else { returnnew Point(sx/count, sy/count);
}
}
static BufferedImage drawNormal(Font font) {
BufferedImage image = new BufferedImage(SIZE, SIZE,
BufferedImage.TYPE_BYTE_BINARY);
Graphics2D g2d = image.createGraphics();
g2d.setColor(Color.white);
g2d.fillRect(0, 0, image.getWidth(), image.getHeight());
g2d.setColor(Color.black); //Set antialias on not to use embedded bitmap for reference
g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
RenderingHints.VALUE_ANTIALIAS_ON);
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.