fixed display bug for image search preview

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@3107 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
orbiter 19 years ago
parent 2beea44465
commit 2dbea612c9

@ -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

@ -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) {

Loading…
Cancel
Save