목록안드로이드/Image (26)
설.현.아빠
Bitmap -> Drawable Bitmap bitmap = new Bitmap (...); Drawable drawable = new BitmapDrawable(bitmap); Drawable -> Bitmap Bitmap bitmap = Bitmap.createBitmap(width, height, true); Drawable iconDrawable = packageManager.getActivityIcon(resolveInfo.activityInfo); Canvas canvas = new Canvas(bitmap); drawable.setBounds(0, 0, width, height); drawable.draw(canvas); 에러날때는 아래를 참조 http://blog.vizpei.kr/105..
http://blog.naver.com/kippee?Redirect=Log&logNo=130039658244
Layout의 background를 변경하려고 할때 image파일의 uri를 가지고 bitmap으로 변경하여 Layout의 Background를 변경할 수 있다. 질문 ] 사진을 찍은 후 비트맵으로 저장하구 이 비트맵을 byte[] 형태로 담아 서버로 전송하는것은 구현하였는데 앨범에서 가져올시 비트맵으로 저장이 되지 않구 Uri로 저장이 가능한데요.... 혹시 Uri를 통해 얻은 이미지를 byte[] 혹은 Bitmap 으로 받을 수 있을까요? 바로 byte[]가 된다면 좋을텐데 안된다면 Bitmap으로라도 가능하다면 Bitmap->byte[] 는 구현해둔 상태라 괜찮은데... 답변 부탁드립니다 ^^ 답변 ] Bitmap bm = Images.Media.getBitmap(getContentResolver(..
public class PhotoActivity extends Activity implements View.OnClickListener{ public static final int REQ_IMAGE_SELECT = 0; public static final int REQ_CAMERA_SELECT = 0; public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.photo); Button camera = (Button)findViewById(R.id.camera); Button gallary = (Button)findViewById(R.id.gallery); camera..
/* * Copyright (C) 2010 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed..
drawable에 있는 이미지가 아닌 외부 이미지를 사용하는 방법을 소개합니다. 1. WebView 를 이용하는 방법 2. BitMap 을 이용한 방법 3. Drawable 을 이용한 방법 4. URL 을 이용한 방법 http://www.androes.com/59
http://blog.naver.com/kippee/130045057666
이미지 크기를 줄인후 45도로 회전시키기 // load the origial BitMap (500 x 500 px) Bitmap bitmapOrg = BitmapFactory.decodeResource(getResources(), R.drawable.android); int width = bitmapOrg.width(); int height = bitmapOrg.height(); int newWidth = 200; int newHeight = 200; // calculate the scale - in this case = 0.4f float scaleWidth = ((float) newWidth) / width; float scaleHeight = ((float) newHeight) / height; /..