Here you can find the source of getTrimmedLeft(Bitmap img)
Parameter | Description |
---|---|
img | a parameter |
public static int getTrimmedLeft(Bitmap img)
//package com.java2s; import android.graphics.Bitmap; import android.graphics.Color; public class Main { /**//from w ww . j a v a2s .com * returns blank area of the image to the left direction of the image * @param img * @return blank area of the image to the left direction of the image */ public static int getTrimmedLeft(Bitmap img) { int width = img.getWidth(); int height = img.getHeight(); int data = width; for (int i = 0; i < height; ++i) { for (int j = 0; j < width; ++j) { if (img.getPixel(j, i) != Color.TRANSPARENT && j < data) { data = j; break; } } } return data; } /** * returns blank area of the image to the left direction of the image * @param img * @param border * @return blank area of the image to the left direction of the image */ public static int getTrimmedLeft(Bitmap img, int border) { int width = img.getWidth(); int height = img.getHeight(); int data = width; for (int i = 0; i < height; ++i) { for (int j = 0; j < width; ++j) { if (img.getPixel(j, i) != Color.TRANSPARENT && j < data) { data = j; break; } } } return data + border; } }