bitmap相关


我们先来实现bitmap的剪切效果
可以直接使用函数

不过我们需要进行px和dp的转换才可以。
函数如下


/**
	 * 根据手机的分辨率从 dp 的单位 转成为 px(像素)
	 */
public static int dip2px(Context context, float dpValue) {
	final float scale = context.getResources().getDisplayMetrics().density;
	return (int) (dpValue * scale + 0.5f);
}

/**
	 * 根据手机的分辨率从 px(像素) 的单位 转成为 dp
	 */
public static int px2dip(Context context, float pxValue) {
	final float scale = context.getResources().getDisplayMetrics().density;
	return (int) (pxValue / scale + 0.5f);
}

文章作者: 小游
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。转载请注明来源 小游 !
  目录