Android Bitmap Crop getTrimmedLeft(Bitmap img)

Here you can find the source of getTrimmedLeft(Bitmap img)

Description

returns blank area of the image to the left direction of the image

Parameter

Parameter Description
img a parameter

Return

blank area of the image to the left direction of the image

Declaration

public static int getTrimmedLeft(Bitmap img) 

Method Source Code

//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;
    }
}

Related

  1. crop(Bitmap bitmap, int x, int y, float newWidth, float newHeight)
  2. cropBitmapToSquare(Bitmap bitmap, int squareLength)
  3. cropBitmapToSquare(String bitmapPath, int squareLength)
  4. getTrimmedBottom(Bitmap img)
  5. getTrimmedBottom(Bitmap img, int border)
  6. getTrimmedLeft(Bitmap img, int border)
  7. getTrimmedRight(Bitmap img)
  8. getTrimmedRight(Bitmap img, int border)
  9. getTrimmedTop(Bitmap img)