Home | History | Annotate | Download | only in gle2

Lines Matching defs:cropped

128      * Crops blank pixels from the edges of the image and returns the cropped result. We
132 * @param image the image to be cropped
136 * @return a cropped version of the source image, or null if the whole image was blank
147 * Crops blank pixels from the edges of the image and returns the cropped result. We
151 * @param image the image to be cropped
156 * @return a cropped version of the source image, or null if the whole image was blank
173 * Crops pixels of a given color from the edges of the image and returns the cropped
176 * @param image the image to be cropped
182 * @return a cropped version of the source image, or null if the whole image was blank
194 * Crops pixels of a given color from the edges of the image and returns the cropped
197 * @param image the image to be cropped
204 * @return a cropped version of the source image, or null if the whole image was blank
220 * a pixel should be cropped or not.
224 * Returns true if the pixel is should be cropped.
229 * @return true if the pixel should be cropped (for example, is blank)
260 // a pixel that shouldn't be cropped. I could maybe try to make it smarter by
329 BufferedImage cropped = new BufferedImage(width, height, imageType);
330 Graphics g = cropped.getGraphics();
335 return cropped;