我已經編寫了代碼在圖像上繪製文本並將其發送到下一個活動。 在同一活動中,它顯示圖像,但在下一活動中未顯示圖像。將編輯後的圖像發送到下一個活動
Canvas canvas = new Canvas(photo);
Paint paint = new Paint();
paint.setColor(Color.WHITE);
paint.setStrokeWidth(12); // Text Size
canvas.drawBitmap(photo, 0, 0, paint);
canvas.drawText(topaste, 15, 150, paint);
image.setImageBitmap(photo);
Intent i1=new Intent(FullScreen.this,EditImage.class);
i1.putExtra("photoo", photo);
startActivity(i1);
和接收活動
image=(ImageView)findViewById(R.id.image);
Intent intent = getIntent();
photo = (Bitmap) intent.getParcelableExtra("photooo");
image.setImageBitmap(photo);
感謝,愚蠢的錯誤 – user1758835
如果我想將它保存在SD卡,然後我要做 – user1758835