From 2dbea612c9e469eaaf21b2c973a13c1c8d026fdd Mon Sep 17 00:00:00 2001 From: orbiter Date: Wed, 20 Dec 2006 23:31:57 +0000 Subject: [PATCH] fixed display bug for image search preview git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@3107 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- htroot/ViewImage.java | 30 ++++++++++++-------- source/de/anomic/plasma/plasmaCondenser.java | 2 +- 2 files changed, 19 insertions(+), 13 deletions(-) diff --git a/htroot/ViewImage.java b/htroot/ViewImage.java index 7b9158f08..7e6d5b1d4 100644 --- a/htroot/ViewImage.java +++ b/htroot/ViewImage.java @@ -89,7 +89,6 @@ public class ViewImage { try { imgStream.close(); } catch (Exception e) {/* ignore this */} } - // create image MediaTracker mediaTracker = new MediaTracker(new Container()); Image original = Toolkit.getDefaultToolkit().createImage(imgb); @@ -99,28 +98,35 @@ public class ViewImage { boolean auth = ((String) header.get("CLIENTIP", "")).equals("localhost") || sb.verifyAuthentication(header, false); // handle access rights if ((auth) && ((width == 0) || (height == 0)) && (maxwidth == 0) && (maxheight == 0)) return original; + // find original size + int h = original.getHeight(null); + int w = original.getWidth(null); + + //System.out.println("DEBUG: get access to image " + url.toNormalform() + " is " + ((auth) ? "authorized" : "NOT authorized")); + // in case of not-authorized access shrink the image to prevent copyright problems // so that images are not larger than thumbnails if (!auth) { - maxwidth = 64; - maxheight = 64; + maxwidth = (int) Math.min(64.0, w * 0.6); + maxheight = (int) Math.min(64.0, h * 0.6); } // calculate width & height from maxwidth & maxheight if ((maxwidth != 0) || (maxheight != 0)) { - int h = original.getHeight(null); - int w = original.getWidth(null); - double hs = (w <= maxwidth) ? 1.0 : ((double) w) / ((double) maxwidth); - double vs = (h <= maxheight) ? 1.0 : ((double) h) / ((double) maxheight); - double scale = Math.max(hs, vs); - if ((scale > 1.0) && (!auth)) scale = 0.6; // this is for copyright purpose - if (scale > 1.0) { - width = (int) (((double) w) / scale); - height = (int) (((double) h) / scale); + double hs = (w <= maxwidth) ? 1.0 : ((double) maxwidth) / ((double) w); + double vs = (h <= maxheight) ? 1.0 : ((double) maxheight) / ((double) h); + double scale = Math.min(hs, vs); + if (!auth) scale = Math.min(scale, 0.6); // this is for copyright purpose + if (scale < 1.0) { + width = (int) (((double) w) * scale); + height = (int) (((double) h) * scale); } else { width = w; height = h; } + } else { + width = w; + height = h; } // check for minimum values diff --git a/source/de/anomic/plasma/plasmaCondenser.java b/source/de/anomic/plasma/plasmaCondenser.java index 7e0ba93a2..b4f182578 100644 --- a/source/de/anomic/plasma/plasmaCondenser.java +++ b/source/de/anomic/plasma/plasmaCondenser.java @@ -126,7 +126,7 @@ public final class plasmaCondenser { this.words = new TreeMap(); this.sentences = new HashMap(); - System.out.println("DEBUG: condensing " + document.getMainLongTitle() + ", indexText=" + Boolean.toString(indexText) + ", indexMedia=" + Boolean.toString(indexMedia)); + //System.out.println("DEBUG: condensing " + document.getMainLongTitle() + ", indexText=" + Boolean.toString(indexText) + ", indexMedia=" + Boolean.toString(indexMedia)); Map.Entry entry; if (indexText) {