私のアプリケーションはカメラから画像を取得して保存した後、ImageView
に表示しますが、次のステップは、ユーザーが画像を表示するときに表示される画像の上に円を描くことです画面に触れ、「変更された画像」を保存する。画像の上に円を描く方法
イメージエディタが好きな方は、問題は画像編集でどこから始めるのかわかりません。私はこれを試しました
@Override
public boolean onTouch(View v, MotionEvent event) {
circleView.setVisibility(View.VISIBLE);
circleView.setX(event.getX()-125);
circleView.setY(event.getY()-125);
try{
Bitmap bitmap = Bitmap.createBitmap(relativeLayout.getWidth(),relativeLayout.getHeight(),Bitmap.Config.ARGB_8888);
Canvas canvas = new Canvas(bitmap);
v.draw(canvas);
mImageView.setImageBitmap(bitmap);
FileOutputStream output = new FileOutputStream(Environment.getExternalStorageDirectory());
bitmap.compress(Bitmap.CompressFormat.PNG,100,output);
output.close();
}catch(FileNotFoundException e){
e.printStackTrace();
}catch (IOException e){
e.printStackTrace();
}
return true;
}//ENDOF onTouch
私は画像を保存するために何ができますか?