Home | History | Annotate | Download | only in gle2

Lines Matching defs:cropped

826          * Width of the rendered preview image (before it is cropped), although the actual
832 * Height of the rendered preview image (before it is cropped), although the
1022 BufferedImage cropped;
1042 cropped = ImageUtils.cropBlank(image, initialCrop);
1061 cropped = ImageUtils.cropColor(image, edgeColor, initialCrop);
1064 if (cropped != null) {
1065 int width = initialCrop != null ? initialCrop.w : cropped.getWidth();
1066 int height = initialCrop != null ? initialCrop.h : cropped.getHeight();
1068 && !ImageUtils.containsDarkPixels(cropped);
1069 cropped = ImageUtils.createDropShadow(cropped,
1076 cropped = ImageUtils.scale(cropped, scale, scale);
1081 Image swtImage = SwtUtils.convertToSwt(display, cropped, true, alpha);