gpt4 book ai didi

java - 在另一张图片上添加一些图片

转载 作者:行者123 更新时间:2023-12-01 10:21:58 26 4
gpt4 key购买 nike

我需要将一些图片(如花)添加到另一张图片(主图片)中。我想在用户捕获图片后实现这一点,然后他可以将图片添加到其中。有图书馆可以解决我的问题吗?就像这张图片一样:

enter image description here

最佳答案

您可以使用 FrameLayout 。

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"

>

<ImageView
android:id="@+id/image1"
android:layout_width="match_parent"
android:layout_height="match_parent" />

<ImageView
android:id="@+id/image1"
android:layout_width="match_parent"
android:layout_height="match_parent" />

</RelativeLayout>

或者使用

Bitmap bitmap = Bitmap.createBitmap(100, 100, Bitmap.Config.ARGB_8888);    
Canvas canvas = new Canvas(bitmap);
Paint paint = new Paint(Paint.ANTI_ALIAS_FLAG);
paint.setColor(Color.BLACK);
canvas.drawBitmap(yourBitmap, 0, 0, paint) ; //Draw bitmap
canvas.drawCircle(50, 50, 10, paint); //Draw Circle
imageView.setImageBitmap(bitmap);

或您可以使用此库'https://github.com/codepath/android_guides/wiki/Basic-Painting-with-Views '

关于java - 在另一张图片上添加一些图片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35535709/

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