我正在使用以下位置获取位图:
View v1 = (View) wpm.getParent().getParent();
Bitmap cs = null;
v1.setDrawingCacheEnabled(true);
v1.buildDrawingCache(true);
cs = Bitmap.createBitmap(v1.getDrawingCache(true));
Canvas canvas = new Canvas(cs);
v1.draw(canvas);
canvas.save();
v1.setDrawingCacheEnabled(false);
String path = Images.Media.insertImage(getContext().getContentResolver(), cs, "MyImage", null);
Uri file = Uri.parse(path);
OutputStream outStream = null;
try {
outStream = getContext().getContentResolver().openOutputStream(file);
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
cs.compress(Bitmap.CompressFormat.JPEG, 100, outStream);
//file senden
Intent sharingIntent = new Intent(Intent.ACTION_SEND);
sharingIntent.putExtra(Intent.EXTRA_STREAM, file);
sharingIntent.setType("image/jpeg");
getContext().startActivity(Intent.createChooser(sharingIntent,"Erfolg teilen!"));
当我通过Facebook,Whatsapp发送它时......质量非常糟糕。但是,如果我把它复制到我的电脑上它看起来正常,在我通过Facebook发送它之前我可以检查它的外观和它看起来通常也是如此。只有在发送后它看起来很糟糕。 我怎么能改变这个?
答案 0 :(得分:0)
尝试设置:
yourView.setDrawingCacheQuality(View.DRAWING_CACHE_QUALITY_HIGH);
如果您的起始位图质量不好,则无法使用bitmap.compress使其更好。
记住,质量更好需要更多内存。
答案 1 :(得分:-1)
问题来自以下几行:
cs.compress(Bitmap.CompressFormat.JPEG, 100, outStream);
质量100太高,生成的jpg文件的大小太大而无法被Facebook接受。所以Facebook压缩这个图像并降低其质量。使用以下代码可以解决您的问题:
cs.compress(Bitmap.CompressFormat.JPEG, 70, outStream);