gpt4 book ai didi

android - 保存的位图为黑色

转载 作者:行者123 更新时间:2023-12-05 00:02:27 25 4
gpt4 key购买 nike

我创建了一个带有文本的位图,我可以在 Imageview 中查看它,但是当我保存位图时,我只得到一个黑色图像。我花了三个小时研究类似的问题,但没有一个对我有用。这是代码。
谢谢你的帮助。

 public void createBitmap(){
Bitmap LabelBitmap;
FileOutputStream fos = null;
//create Text Bitmap
LabelBitmap = textAsBitmap(this,"BRO D 0813","fonts/arialbd.ttf", 4, Color.BLACK);
//load bitmap in to Imageview
ImageView myImageView = (ImageView) findViewById(R.id.imageView);
myImageView.setImageBitmap(LabelBitmap);
// save bitmap
String root = Environment.getExternalStorageDirectory().toString();
File myDir = new File(root + "/myfolder");
myDir.mkdirs();

ByteArrayOutputStream bytes = new ByteArrayOutputStream();

LabelBitmap.compress(Bitmap.CompressFormat.JPEG, 100, bytes);
if (!myDir.exists()) {
myDir.mkdir();
}

File myDirFile = new File(root +"/myfolder/mybitmap.jpg");

try {
if(myDirFile.exists()){
myDirFile.delete();
}
myDirFile.createNewFile();
} catch (IOException e) {
e.printStackTrace();
}

try {
fos = new FileOutputStream(myDirFile);
} catch (FileNotFoundException e) {
e.printStackTrace();
}
try {
fos.write(bytes.toByteArray());
fos.flush();
fos.close();
Toast.makeText(this, "Image saved", Toast.LENGTH_SHORT).show();
} catch (IOException e) {
e.printStackTrace();
}

}

最佳答案

JPEG图像默认为黑色背景,因此如果您的文本颜色也是黑色,您将获得黑色图像。如果您的图片没有背景颜色,则必须将其另存为 PNG .更改如下并试一试:

LabelBitmap.compress(Bitmap.CompressFormat.JPEG, 100, bytes);

至:
LabelBitmap.compress(Bitmap.CompressFormat.PNG, 100, bytes);

关于android - 保存的位图为黑色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28019010/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com