我正在尝试将图像插入静态图像(类似于框架内的图像)。我可以在一定程度上得到它,但无法将它正确地放在给定的图像中。
橙色边框是需要动态插入到我的地图标记中的框架和占位符。
这是我尝试过的:
Bitmap pic = BitmapFactory.decodeResource(getResources(),
R.drawable.bluepic);
Bitmap orangeframe = BitmapFactory.decodeResource(getResources(),R.drawable.orangeborder);
Bitmap out = combineImages(orangeframe, pic);
public Bitmap combineImages(Bitmap frame, Bitmap image)
{
Bitmap cs = null;
Bitmap rs = null;
rs = Bitmap.createScaledBitmap(frame, image.getWidth(),
image.getHeight(), true);
cs = Bitmap.createBitmap(rs.getWidth(), rs.getHeight(),
Bitmap.Config.RGB_565);
Canvas comboImage = new Canvas(cs);
comboImage.drawBitmap(image,0, 0, null);
comboImage.drawBitmap(rs, 0, 0, null);
if (rs != null) {
rs.recycle();
rs = null;
}
Runtime.getRuntime().gc();
return cs;
}
我得到这个:
占位符是动态的,橙色框架图像是静态的。我想以编程方式将图像直接插入橙色图像中。
这可能吗?