我正在尝试从用户那里获取文本输入,并使用Canvas
将其绘制在图像上,但是该图像被保存了而没有被绘制出来。现在,在担心字体,颜色,样式等之前,我只是尝试在图像上获取文本。
这是我的代码:
public void createBitmapAndSave(ImageView img){
BitmapDrawable bitmapDrawable = ((BitmapDrawable) img.getDrawable());
Bitmap bitmap = bitmapDrawable.getBitmap();
Bitmap mutableBitmap = bitmap.copy(Bitmap.Config.ARGB_8888, true);
Canvas canvas = new Canvas(mutableBitmap);
Paint paint = new Paint();
paint.setColor(Color.BLUE);
paint.setTextSize(200);
paint.setStyle(Paint.Style.FILL);
paint.setShadowLayer(10f, 10f, 10f, Color.BLACK);
String topText = topTextView.getText().toString();
String bottomText = bottomTextView.getText().toString();
canvas.drawText(topText, 0, 0, paint);
canvas.drawText(bottomText, 50, 50, paint);
File file;
Intent mediaScanIntent = new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE);
String path = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DCIM).getPath();
file = new File(path + "/SimpliMeme/" + timeStamp + "-" + counter + ".jpg");
file.getParentFile().mkdir();
try{
OutputStream stream = new FileOutputStream(file);
bitmap.compress(Bitmap.CompressFormat.JPEG,100,stream);
stream.flush();
stream.close();
Toast.makeText(getContext(), "Meme Saved", Toast.LENGTH_SHORT).show();
}
catch (IOException e){ e.printStackTrace();}
Uri contentUri = Uri.fromFile(file);
mediaScanIntent.setData(contentUri);
Objects.requireNonNull(getContext()).sendBroadcast(mediaScanIntent);
counter++;
}
基于我在其他SO帖子中看到的示例,目前我只有2个.drawText()
实现。我的假设是该文本不可见,并且对图像没有任何更改,因为我没有为paint
对象提供任何属性。
答案 0 :(得分:1)
为什么看不到任何更改的主要问题是您对mutableBitmap
进行了更改,但将原始的bitmap
保存到了磁盘上。
可以通过将前两个(甚至三个)语句连接在一起来避免这种情况:
final Bitmap bitmap = bitmapDrawable.getBitmap()
.copy(Bitmap.Config.ARGB_8888, true);
您在其他任何地方都不需要原始位图,这可以有效地防止您犯错。不要做你不需要做的事。
一些提示:
StaticLayout
。