0
ギャラリーから画像を選択してテキストを追加して保存します。あなたはどこで見るべきか、私が使っているライブラリーシュールを教えていただけますか?私は、2.2Androidスタジオ画像を使って作業する
ギャラリーから画像を選択してテキストを追加して保存します。あなたはどこで見るべきか、私が使っているライブラリーシュールを教えていただけますか?私は、2.2Androidスタジオ画像を使って作業する
まずAndroidのメーカーを使用していますが、それにのEditTextを入れて書くことができ、書き込み後には、最初に作成した画像のビットマップを追加することができます今すぐ
Bitmap bitmap = Bitmap.createBitmap(mEditText.getDrawingCache());
Bitmap combined = combineImages(bgBitmap,bitmap);
public Bitmap combineImages(Bitmap background, Bitmap foreground) {
int width = 0, height = 0;
Bitmap cs;
width = getWindowManager().getDefaultDisplay().getWidth();
height = getWindowManager().getDefaultDisplay().getHeight();
cs = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
Canvas comboImage = new Canvas(cs);
background = Bitmap.createScaledBitmap(background, width, height, true);
comboImage.drawBitmap(background, 0, 0, null);
comboImage.drawBitmap(foreground, matrix, null);
return cs;
}
のようなあなたの元のイメージに私はそれが役に立てば幸い。
リンクを参照できますか? –