una texto que propiedad para incluir img imagenes imagen función funciona explique emplea ejemplo con atributos atributo alternativo agregar android

android - texto - Imagen extraíble en un lienzo



propiedad alt imagen (7)

Debes cargar tu imagen como mapa de bits:

Resources res = getResources(); Bitmap bitmap = BitmapFactory.decodeResource(res, R.drawable.your_image);

A continuación, haga que el mapa de bits sea mutable y cree un lienzo sobre él:

Canvas canvas = new Canvas(bitmap.copy(Bitmap.Config.ARGB_8888, true));

Entonces puedes dibujar en el lienzo.

¿Cómo puedo obtener una imagen en el lienzo para dibujar en esa imagen?


La buena manera de dibujar un Drawable en un lienzo no es decodificarlo usted mismo sino dejar que el sistema lo haga:

Drawable d = getResources().getDrawable(R.drawable.foobar); d.setBounds(left, top, right, bottom); d.draw(canvas);

Esto funcionará con todo tipo de objetos arrastrables, no solo mapas de bits. Y también significa que puede reutilizar ese mismo dibujo nuevamente si solo cambia el tamaño.



prueba esto

Bitmap mBitmap = Bitmap.createScaledBitmap(Bitmap src, int dstWidth, int dstHeight, boolean filter); protected void onDraw(Canvas canvas) { canvas.drawColor(0xFFAAAAAA); canvas.drawBitmap(mBitmap, 0, 0, mBitmapPaint); }


también puedes usar de esta manera. Cambiará su gran ajuste de su lienzo:

Resources res = getResources(); Bitmap bitmap = BitmapFactory.decodeResource(res, yourDrawable); yourCanvas.drawBitmap(bitmap, 0, 0, yourPaint);


Drawable d = ContextCompat.getDrawable(context, R.drawable.***) d.setBounds(left, top, right, bottom); d.draw(canvas);


package com.android.jigsawtest; import android.content.Context; import android.graphics.Bitmap; import android.graphics.BitmapFactory; import android.graphics.Canvas; import android.graphics.Color; import android.graphics.Paint; import android.view.SurfaceHolder; import android.view.SurfaceView; public class SurafaceClass extends SurfaceView implements SurfaceHolder.Callback { Bitmap mBitmap; Paint paint =new Paint(); public SurafaceClass(Context context) { super(context); mBitmap = BitmapFactory.decodeResource(getResources(), R.drawable.icon); // TODO Auto-generated constructor stub } @Override public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) { // TODO Auto-generated method stub } @Override public void surfaceCreated(SurfaceHolder holder) { // TODO Auto-generated method stub } @Override public void surfaceDestroyed(SurfaceHolder holder) { // TODO Auto-generated method stub } @Override protected void onDraw(Canvas canvas) { canvas.drawColor(Color.BLACK); canvas.drawBitmap(mBitmap, 0, 0, paint); } }