摘要: 1 public static Bitmap TileClipPath(Bitmap src,Path path,int w,int h) 2 { 3 BitmapDrawable drawable = new BitmapDrawable(src); 4 drawable.setTileModeXY(TileMode.REPEAT , TileMode.REPEAT ); 5 drawable.setDither(true); 6 7 Bitmap.Config config = drawable.g... 阅读全文
posted @ 2013-03-05 09:49 狂热与执着 阅读(601) 评论(0) 推荐(0) 编辑