From 6c13dd46eabee023b9b852fa9e7897658017e4b8 Mon Sep 17 00:00:00 2001 From: Jakob Heher Date: Mon, 8 Aug 2022 14:52:00 +0200 Subject: remove "signature" overlay text from position screen --- .../at/asit/pdfover/gui/composites/SignaturePanel.java | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/pdf-over-gui/src/main/java/at/asit/pdfover/gui/composites/SignaturePanel.java b/pdf-over-gui/src/main/java/at/asit/pdfover/gui/composites/SignaturePanel.java index 02b1e21e..5cc1b749 100644 --- a/pdf-over-gui/src/main/java/at/asit/pdfover/gui/composites/SignaturePanel.java +++ b/pdf-over-gui/src/main/java/at/asit/pdfover/gui/composites/SignaturePanel.java @@ -383,21 +383,8 @@ public class SignaturePanel extends JPanel { this.sigPlaceholderScaled = new BufferedImage(this.sigScreenWidth, this.sigScreenHeight, BufferedImage.TYPE_INT_ARGB); Graphics g_phs = this.sigPlaceholderScaled.getGraphics(); g_phs.drawImage(placeholder, 0, 0, null); - - // Draw grey "Signature" overlay - String overlay = Messages.getString("positioning.signature"); - // Voodoo to get overlay font scale - float scale = (((float) this.sigScreenWidth) / this.sigPlaceholder.getWidth(null)) * 150; - g_phs.setFont(getFont().deriveFont(scale)); - g_phs.setColor(this.sigPlaceholderBorderColor); - Rectangle2D overlay_size = g_phs.getFontMetrics().getStringBounds(overlay, g_phs); - int width = (int) overlay_size.getWidth(); - int height = (int) overlay_size.getHeight(); - int x = this.sigScreenWidth / 2 - width / 2; - int y = this.sigScreenHeight / 2 - height / 2 + g_phs.getFontMetrics().getAscent(); - g_phs.drawString(overlay, x, y); - g_phs.dispose(); + int[] phpixels = new int[this.sigScreenWidth * this.sigScreenHeight]; phpixels = this.sigPlaceholderScaled.getRGB(0, 0, this.sigScreenWidth, this.sigScreenHeight, phpixels, 0, this.sigScreenWidth); for (int i = 0; i < phpixels.length; ++i) { -- cgit v1.2.3