最近做微信分享遇到图片分享的问题:分享给朋友正常,分享到朋友圈图片就变黑了。查找资料后发现是因为
png的图背景为透明的原因引起的,将图片的背景色设置上就可以了。
/** * bitmap中的透明色用白色替换 * * @param bitmap * @return */ public static Bitmap changeColor(Bitmap bitmap) { if (bitmap == null) { return null; } int w = bitmap.getWidth(); int h = bitmap.getHeight(); int[] colorArray = new int[w * h]; int n = 0; for (int i = 0; i < h; i++) { for (int j = 0; j < w; j++) {