Searched refs:crop (Results 1 - 4 of 4) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
H A DImageUtilsTest.java42 BufferedImage crop = ImageUtils.cropBlank(image, null);
43 assertNull(crop);
53 BufferedImage crop = ImageUtils.cropBlank(image, new Rect(5, 5, 80, 80));
54 assertNull(crop);
64 BufferedImage crop = ImageUtils.cropBlank(image, null);
65 assertNotNull(crop);
66 assertEquals(image.getWidth(), crop.getWidth());
67 assertEquals(image.getHeight(), crop.getHeight());
79 BufferedImage crop = ImageUtils.cropBlank(image, null);
80 assertNotNull(crop);
[all...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
H A DImageUtils.java129 * crop off pixels that are blank (meaning they have an alpha value = 0). Note that
134 * crop to continue. This can be used to crop an image where you already
148 * crop off pixels that are blank (meaning they have an alpha value = 0). Note that
153 * crop to continue. This can be used to crop an image where you already
162 public boolean crop(BufferedImage bufferedImage, int x, int y) {
169 return crop(image, filter, initialCrop, imageType);
180 * crop to continue. This can be used to crop a
231 boolean crop(BufferedImage image, int x, int y); method in interface:ImageUtils.CropFilter
234 private static BufferedImage crop(BufferedImage image, CropFilter filter, Rect initialCrop, method in class:ImageUtils
[all...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/assetstudio/
H A DCreateAssetSetWizardState.java88 public boolean crop; field in class:CreateAssetSetWizardState
H A DConfigureAssetSetPage.java705 mValues.crop = true;
709 mValues.crop = false;
1121 launcherOptions.crop = mValues.crop;

Completed in 222 milliseconds