如何从左右切割矩形图像(600 x 300)以适合方形ImageView?我不想调整图像大小,我只想裁剪它,为300 x 300。
[溶液]
正如@blackbelt所说
Bitmap cropImg = Bitmap.createBitmap(src, startX, startY, dstWidth, dstHeight);
非常适合裁剪图像。那么如何自动裁剪不同尺寸的图像。我为此创建了这个简单的代码:
// From drawable
Bitmap src= BitmapFactory.decodeResource(context.getResources(), R.drawable.image);
// From URL
Bitmap src = null;
try {
String URL = "http://www.example.com/image.jpg";
InputStream in = new java.net.URL(URL).openStream();
src = BitmapFactory.decodeStream(in);
} catch (Exception e) {
e.printStackTrace();
}
int width = src.getWidth();
int height = src.getHeight();
int crop = (width - height) / 2;
Bitmap cropImg = Bitmap.createBitmap(src, crop, 0, height, height);
ImageView.setImageBitmap(cropImg);
答案 0 :(得分:22)
稍微扩展上面的答案
因为在某些情况下,您最终可能会遇到 例外 或 而不是预期结果 使用Bitmap.createBitmap(),就像下载:
java.lang.IllegalArgumentException:x + width必须是< = bitmap.width()
Heres是一个小功能,可以完成裁剪并处理一些公共案例。
编辑根据droidster的说法进行了更新。
public static Bitmap cropToSquare(Bitmap bitmap){
int width = bitmap.getWidth();
int height = bitmap.getHeight();
int newWidth = (height > width) ? width : height;
int newHeight = (height > width)? height - ( height - width) : height;
int cropW = (width - height) / 2;
cropW = (cropW < 0)? 0: cropW;
int cropH = (height - width) / 2;
cropH = (cropH < 0)? 0: cropH;
Bitmap cropImg = Bitmap.createBitmap(bitmap, cropW, cropH, newWidth, newHeight);
return cropImg;
}
我使用不同分辨率和大小的图像进行了多次测试,并且按预期工作。
它也可用于其他情况,例如当您尝试制作“完美”圆形图像并需要传递方形位图等时。
答案 1 :(得分:4)
设置固定图像视图高度,宽度,并将两个属性设置为图像视图
android:adjustViewBounds="true"
android:scaleType="centerCrop"
完成
答案 2 :(得分:3)
您可以使用
Bitmap dst = Bitmap.createBitmap(src, startX, startY, dstWidth, dstHeight);
来自文档:
从源的指定子集返回不可变位图 位图。新位图可以是与源相同的对象,也可以是副本 已经成了。它的初始化密度与相同 原始位图。
Here您可以找到文档
答案 3 :(得分:0)
现在xml具有类似
的属性 custom:cropAspectRatioX="2"
custom:cropAspectRatioY="1"
如果要进行方形裁剪,请将两者都设为1。现在是矩形
添加活动CropActivity
package agropost.post.agro.com.agropost.Activity;
import android.content.Intent;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.util.DisplayMetrics;
import android.widget.Button;
import com.theartofdev.edmodo.cropper.CropImageView;
import agropost.post.agro.com.agropost.R;
import agropost.post.agro.com.agropost.Utility.Constants;
import butterknife.BindView;
import butterknife.ButterKnife;
import butterknife.OnClick;
public class CropActivity extends AppCompatActivity {
public static boolean isCrop = false;
@BindView(R.id.img_crop)
CropImageView imgCrop;
@BindView(R.id.btn_done)
Button btnDone;
@BindView(R.id.btn_cancel)
Button btnCancel;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_crop);
ButterKnife.bind(this);
DisplayMetrics displayMetrics = new DisplayMetrics();
getWindowManager().getDefaultDisplay().getMetrics(displayMetrics);
int width = displayMetrics.widthPixels;
width = width - 80;
imgCrop.getLayoutParams().height = width;
imgCrop.getLayoutParams().width = width;
imgCrop.setBackground(null);
imgCrop.setScaleType(CropImageView.ScaleType.FIT_CENTER);
imgCrop.setImageBitmap(Constants.mDashboardActivity.thumbnail_r);
}
@OnClick(R.id.btn_done)
public void onViewClicked() {
isCrop = true;
Intent returnIntent = new Intent();
Constants.mDashboardActivity.thumbnail_r = imgCrop.getCroppedImage();
setResult(3, returnIntent);
finish();
}
@OnClick(R.id.btn_cancel)
public void onViewClickedCancel() {
byte[] byteArray = getIntent().getByteArrayExtra("default");
Bitmap bmp = BitmapFactory.decodeByteArray(byteArray, 0, byteArray.length);
Constants.mDashboardActivity.thumbnail_r = bmp;
isCrop = true;
Intent returnIntent = new Intent();
setResult(3, returnIntent);
finish();
}
@Override
public void onBackPressed() {
// super.onBackPressed();
}
}
活动的xml ..............
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/transparent"
android:gravity="center"
android:orientation="vertical"
tools:context=".Activity.CropActivity">
<com.theartofdev.edmodo.cropper.CropImageView xmlns:custom="http://schemas.android.com/apk/res-auto"
android:id="@+id/img_crop"
android:layout_width="100dp"
android:layout_height="100dp"
android:background="@drawable/drawer_bg"
android:scaleType="centerInside"
custom:cropAspectRatioX="2"
custom:cropAspectRatioY="1"
custom:cropFixAspectRatio="true"
custom:cropShape="rectangle" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button
android:id="@+id/btn_done"
android:layout_width="match_parent"
android:layout_height="60dp"
android:layout_marginLeft="@dimen/margin_40"
android:layout_marginRight="@dimen/margin_20"
android:layout_marginTop="@dimen/margin_20"
android:layout_weight="1"
android:background="@drawable/btn_bg_green_rounded"
android:text="Done"
android:textColor="@color/colorWhite"
android:textSize="@dimen/fontsize_normal" />
<Button
android:id="@+id/btn_cancel"
android:layout_width="match_parent"
android:layout_height="60dp"
android:layout_marginLeft="@dimen/margin_20"
android:layout_marginRight="@dimen/margin_40"
android:layout_marginTop="@dimen/margin_20"
android:layout_weight="1"
android:background="@drawable/btn_bg_green_rounded"
android:text="Cancel"
android:textColor="@color/colorWhite"
android:textSize="@dimen/fontsize_normal"
android:visibility="gone" />
</LinearLayout>
</LinearLayout>
添加依赖项
implementation 'com.theartofdev.edmodo:android-image-cropper:2.4.+'