是否可以合并从相机拍摄的文字和照片?
我想在照片上盖章日期和时间,但我在Google上找不到任何内容.
解决方法:
使用下面的代码来实现您的要求.
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 = sdf.format(Calendar.getInstance().getTime()); // reading local time in the system
Canvas cs = new Canvas(dest);
Paint tPaint = new Paint();
tPaint.setTextSize(35);
tPaint.setColor(Color.BLUE);
tPaint.setStyle(Style.FILL);
cs.drawBitmap(src, 0f, 0f, null);
float height = tPaint.measureText("yY");
cs.drawText(dateTime, 20f, height+15f, tPaint);
try {
dest.compress(Bitmap.CompressFormat.JPEG, 100, new FileOutputStream(new File("/sdcard/timeStampedImage.jpg")));
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
您必须在清单文件中使用以下权限.
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
如果您有任何疑问,请随时提出.我在图像的左上角添加时间戳,您可以将其更改为图像上的任何位置.
对于我的设备,路径是/ sdcard来访问外部SD卡,它可能因其他设备而异.某些设备可能有/ mnt / sdcard可能是内部SD卡.在使用此代码段之前,请检查它.