42

短い質問があります:

変更する必要がある(変更可能な)ビットマップがあるとします(画像、テキストなどを追加します...)。

キャンバスに描画するための多くの特別なクラス (ペイント、キャンバス、マトリックスなど) をいじる代わりに、このタスクに Android の組み込みクラスを使用しない理由を考えていました。キャンバスを使用しますか?

したがって、たとえば、ビットマップ上に任意の種類のビュー (もちろん、親を持たないビュー) を表示するには、次の関数を呼び出すことができます。

public void drawViewToBitmap(Bitmap b, View v, Rect rect) {
    Canvas c = new Canvas(b);
    // <= use rect to let the view to draw only into this boundary inside the bitmap
    view.draw(c);
}

そのようなことは可能ですか?たぶんそれが舞台裏で機能する方法でさえありますか?

描いてからキャンバスを作るまでの間は何を書けばいいですか?


編集:次のコードを試しましたが、うまくいきませんでした:

public void drawFromViewToCanvas(final View view, final Rect rect, final Canvas canvas) {
    final int widthSpec = View.MeasureSpec.makeMeasureSpec(rect.width(), View.MeasureSpec.EXACTLY);
    final int heightSpec = View.MeasureSpec.makeMeasureSpec(rect.height(), View.MeasureSpec.EXACTLY);
    view.measure(widthSpec, heightSpec);
    // Lay the view out with the known dimensions
    view.layout(0, 0, rect.width(), rect.height());
    // Translate the canvas so the view is drawn at the proper coordinates
    canvas.save();
    canvas.translate(rect.left, rect.top);
    // Draw the View and clear the translation
    view.draw(canvas);
    canvas.restore();
}

使用例:

final int imageSize = 50;
rect = new Rect(35, 344 , 35 + imageSize, 344  + imageSize);
final ImageView imageView = new ImageView(mContext);
imageView.setImageBitmap(bitmap);
imageView.setScaleType(ScaleType.CENTER_CROP);
drawFromViewToCanvas(imageView, getRect(), canvas);

編集:ソニーのウェブサイトにサンプルがあります:

int measureWidth = View.MeasureSpec.makeMeasureSpec(bitmapWidth, View.MeasureSpec.EXACTLY);
int measuredHeight = View.MeasureSpec.makeMeasureSpec(bitmapHeight, View.MeasureSpec.EXACTLY);
view.measure(measureWidth, measuredHeight);
view.layout(0, 0, bitmapWidth, bitmapHeight);
view.draw(canvas);

それが機能するかどうか疑問に思います。

4

1 に答える 1