This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 비동기로 비트맵 이미지에 Blur효과를 설정하고 필요한 후 처리들을 한다. | |
* | |
* @author KangSung-Woo | |
*/ | |
public class AsyncBlurTask | |
extends AsyncTask<Bitmap, Integer, Bitmap> { | |
// 이미지 리사이징 할 최소 사이즈 | |
public static final int DEFAULT_SIZE_PX = 30; | |
private static final String TAG = AsyncBlurTask.class.getSimpleName(); |
NewerOlder