Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的应用程序中,用户使用图库导入了一张图片,然后在插入图片的图片视图中插入了两个搜索栏
第一个搜索栏控制图片亮度,另一个控制图片色调
当我使用它们时,它们正在工作,但问题是它们不像..那样保存
我导入了图片,然后让它的亮度很好,但是当我设置图片色调时,我制作的亮度消失了,色调开始了
不在那里
iv.save;
或类似的东西?
笔记*
final ImageView iv = (ImageView) findViewById(R.id.picture);
就在这里。
final ImageView iv = (ImageView) findViewById(R.id.picture); iv.setDrawingCacheEnabled(true); Bitmap bmp=iv.getDrawingCache();
现在您可以将此位图以 jpg 或 png 格式保存到您的 sdcard 中。