在Android中使用自定义文本生成图像

时间:2012-02-03 07:03:28

标签: java android text bitmap

我正在尝试创建一个用于创建自定义卡片的应用。我想在自定义背景(jpg图像)上添加一些文字。

最好的方法是什么?在将卡发送到服务器之前,我需要向用户显示卡的预览。

由于

2 个答案:

答案 0 :(得分:28)

使用以下代码来达到您的要求

    Bitmap src = BitmapFactory.decodeResource(getResources(), R.drawable.yourimage); // the original file yourimage.jpg i added in resources
    Bitmap dest = Bitmap.createBitmap(src.getWidth(), src.getHeight(), Bitmap.Config.ARGB_8888);

    String yourText = "My custom Text adding to Image";

    Canvas cs = new Canvas(dest);
    Paint tPaint = new Paint();
    tPaint.setTextSize(35);
    tPaint.setColor(Color.BLUE);
    tPaint.setStyle(Style.FILL);
    cs.drawBitmap(src, 0f, 0f, null);
    float height = tPaint.measureText("yY");
    float width = tPaint.measureText(yourText);
    float x_coord = (src.getWidth() - width)/2;
    cs.drawText(yourText, x_coord, height+15f, tPaint); // 15f is to put space between top edge and the text, if you want to change it, you can
    try {
        dest.compress(Bitmap.CompressFormat.JPEG, 100, new FileOutputStream(new File("/sdcard/ImageAfterAddingText.jpg")));
        // dest is Bitmap, if you want to preview the final image, you can display it on screen also before saving
    } catch (FileNotFoundException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }

您必须在清单文件中使用以下权限。

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

对于我的设备,路径为/sdcard以访问外部SD卡,它可能因其他设备而异。某些设备可能有/mnt/sdcard可能是内部SD卡。在使用此代码之前,请检查它。

实际上我为其他一些问题编写了上述代码,这些问题需要从相机中捕获照片上的时间戳。我为您提供了相同的解决方案,并根据您的具体要求进行了一些修改。

我希望你能理解这一点。如果您对代码有任何疑问,请随时询问。

答案 1 :(得分:4)

我不确定这是最好的解决方案,但它可以帮到你。

步骤1:创建相对布局(在任何其他布局上)并将图像设置为背景。

步骤2:现在添加宽度和高度为text_view或match_parent的文本视图,并将重力添加为top | center_horizo​​ntal。

步骤3:现在添加另一个按钮或任何其他布局控件,它将触发用户确认。 (您应该将此控件放在Relative布局之外)。

步骤4:如果用户确认了图像,那么您可以通过以下代码获取相对布局的屏幕截图:

v1.setDrawingCacheEnabled(true);//v1 is the object of your Relative layout
            Bitmap bm = v1.getDrawingCache();
            if (bm != null) {

                //TODO:write the code for saving the image.

                Toast toast = Toast.makeText(YourActivity.this, "image saved",
                        Toast.LENGTH_LONG);
                toast.show();
            } else {
                Toast toast = Toast.makeText(YourActivity.this,
                        "No image saved.", Toast.LENGTH_LONG);
                toast.show();
            }