올해는 머신러닝이다.
canvas 내용 파일저장하기 본문
private void saveView( View view )
{
String path =
Environment.getExternalStorageDirectory().getAbsolutePath();
Bitmap b = Bitmap.createBitmap(
view.getWidth(), view.getHeight(), Bitmap.Config.RGB_565);
if(b!=null){
try {
File f = new File(path+"/notes");
f.mkdir();
File f2 = new File(path + "/notes/"+title+".png");
Canvas c = new Canvas( b );
view.draw( c );
FileOutputStream fos = new FileOutputStream(f2);
if ( fos != null )
{
b.compress(Bitmap.CompressFormat.PNG, 100, fos );
fos.close();
}
//setWallpaper( b );
} catch( Exception e ){
Log.e("testSaveView", "Exception: " + e.toString() );
}
}
}'Android > Tip&Tech' 카테고리의 다른 글
android 해상도 및 화면중앙 구하기 (0) | 2011.05.13 |
---|---|
[펌]Android]Convert Drawable to Bitmap (0) | 2011.05.12 |
image를 canvas이용해서 그리기 (0) | 2011.05.11 |
갤러리를 이용한 페이지 컨트롤 구현 (0) | 2011.05.11 |
GestureDetector 관한 설명[펌] (0) | 2011.05.10 |