簡體   English   中英

Android:從位圖裁剪位圖並設置為ImageView src

[英]Android: Crop Bitmap from Bitmap and set as ImageView src

我正在嘗試從spritesheet中裁剪一個sprite,但是裁剪的圖像不是我指定的圖像的一部分。

該Spritesheet包含大小為32 x 32 px的Sprite,因此第一個Sprite應該位於像素0到32(水平)和0到32(垂直),假設最左上的像素為[0,0]。

Bitmap spritesheet = BitmapFactory.decodeResource(getResources(), R.drawable.spritesheet_32x32);
Bitmap sprite = Bitmap.createBitmap(spritesheet, 0, 0, 32, 32);

ImageView只是一個普通的ImageView,沒有設置src,寬度或高度。

ImageView view = (ImageView)findViewById(R.id.player1);
view.setImageBitmap(sprite);

但是顯示的圖像只是第一個精靈的很小一部分。 我要監督什么? view.setImageBitmap(sprite); 正確的方法嗎? 在設置位圖之前,ImageView是否需要固定的寬度和高度?

編輯:也許我應該對我的布局更加清楚。 在LinearLayout上安排了兩個ImageView。 這是XML:

<LinearLayout
        android:orientation="horizontal"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:baselineAligned="false">
    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:scaleX="-1"
        android:id="@+id/player1"
        android:layout_weight="1"
        android:layout_gravity="center_vertical" />
    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/player2"
        android:layout_weight="1"
        android:layout_gravity="center_vertical" />
</LinearLayout>
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;

public class ImageResizer {

public static Bitmap decodeSampledBitmapFromFile(String filename,
    int reqWidth, int reqHeight) {
// First decode with inJustDecodeBounds=true to check dimensions
final BitmapFactory.Options
        options = new BitmapFactory.Options();
options.inJustDecodeBounds = true;
BitmapFactory.decodeFile(filename, options);
// Calculate inSampleSize
options.inSampleSize = calculateInSampleSize(options, reqWidth, reqHeight);
// Decode bitmap with inSampleSize set
options.inJustDecodeBounds = false;
return BitmapFactory.decodeFile(filename, options);
}

public static int calculateInSampleSize(BitmapFactory.Options options,
    int reqWidth, int reqHeight) {
// BEGIN_INCLUDE (calculate_sample_size)
// Raw height and width of image
final int height = options.outHeight;
final int width = options.outWidth;
int inSampleSize = 1;

if (height > reqHeight || width > reqWidth) {

    final int halfHeight = height / 2;
    final int halfWidth = width / 2;

    // Calculate the largest inSampleSize value that is a power of 2 and keeps both
    // height and width larger than the requested height and width.
    while ((halfHeight / inSampleSize) > reqHeight
            && (halfWidth / inSampleSize) > reqWidth) {
        inSampleSize *= 2;
    }

    // This offers some additional logic in case the image has a strange
    // aspect ratio. For example, a panorama may have a much larger
    // width than height. In these cases the total pixels might still
    // end up being too large to fit comfortably in memory, so we should
    // be more aggressive with sample down the image (=larger inSampleSize).

    long totalPixels = width * height / inSampleSize;

    // Anything more than 2x the requested pixels we'll sample down further
    final long totalReqPixelsCap = reqWidth * reqHeight * 2;

    while (totalPixels > totalReqPixelsCap) {
        inSampleSize *= 2;
        totalPixels /= 2;
    }
}
return inSampleSize;
// END_INCLUDE (calculate_sample_size)
 }

}

調用方法

Bitmap bmp = ImageResizer.decodeSampledBitmapFromFile(new  File(filePath).getAbsolutePath(), 512, 342);               

我還沒有嘗試過,但是以下方法可能可以通過方法參數
imageView.getWidth(),imageView.getHeight()

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM