Text (date) stamp on photo
问题 Is it possible merge text and photo taken from camera? I would like to stamp date and time on photo but I don't find anything on Google. 回答1: Use below code to achieve what you required. Bitmap src = BitmapFactory.decodeResource(getResources(), R.drawable.cuty); // the original file is cuty.jpg i added in resources Bitmap dest = Bitmap.createBitmap(src.getWidth(), src.getHeight(), Bitmap.Config.ARGB_8888); SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); String dateTime =