gpt4 book ai didi

android - 在 Android 应用程序中需要帮助来选择图像的一部分

转载 作者:行者123 更新时间:2023-11-29 00:31:00 25 4
gpt4 key购买 nike

然后您的应用程序将在屏幕上显示图像。

屏幕上还会显示一个可调整大小的小矩形框,用户可以使用触摸对其进行拖动。这将允许用户选择图像的任何矩形部分。

我该如何实现。我不知道如何进行。如何制作一个矩形框,使用触摸拖动它然后选择图像的那个部分

最佳答案

试试下面的代码,它非常适合我。有疑问可以私信我

Intent intent = new Intent("com.android.camera.action.CROP");
// this will open all images in the Galery
intent.setDataAndType(uriOfYOurImageThatToBeEdited, "image/*");
intent.putExtra("crop", "true");
// this defines the aspect ration
intent.putExtra("aspectX", widthOfImage);
intent.putExtra("aspectY", heightOfImage);
// this defines the output bitmap size
intent.putExtra("outputX", widthOfImage);
intent.putExtra("outputY", heightOfImage);
// true to return a Bitmap, false to directly save the cropped iamge
intent.putExtra("return-data", false);
//save output image in uri
intent.putExtra(MediaStore.EXTRA_OUTPUT, croppedImageUri);
System.out.println("CroppedImageUri : "+ croppedImageUri);
startActivityForResult(intent, 200);

关于android - 在 Android 应用程序中需要帮助来选择图像的一部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15715967/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com