将画布绘制为位图

时间:2014-02-22 16:50:36

标签: android canvas bitmap

我想将canvas保存在bitmap中,以便我可以在其他画布上绘制该位图。 问题是我不知道如何将位图大小设置为整个画布(不是整个屏幕,我的布局大小)

如何设置bitmap大小?然后如何保存我的canvas

感谢您的帮助:D

1 个答案:

答案 0 :(得分:0)

我使用这个程序,您可以设置视图的宽度和高度,而不是bitmap.getWidth()和bitmap.getHeight(),因为我在重写位图

        Bitmap output = Bitmap.createBitmap(bitmap.getWidth(), bitmap.getHeight(), Config.ARGB_8888);
        Canvas canvas = new Canvas(output);

        final int color = 0xff424242;
        final Paint paint = new Paint();
        final Rect rect = new Rect(0, 0, bitmap.getWidth(), bitmap.getHeight());
        final RectF rectF = new RectF(rect);
        final float roundPx = pixels;

        paint.setAntiAlias(true);
        canvas.drawARGB(0, 0, 0, 0);
        paint.setColor(color);
        canvas.drawRoundRect(rectF, roundPx, roundPx, paint);

        paint.setXfermode(new PorterDuffXfermode(Mode.SRC_IN));
        canvas.drawBitmap(bitmap, rect, rect, paint);

希望这会有所帮助:)