gpt4 book ai didi

java - Android:在我的应用程序拍摄的照片上打印日期和时间

转载 作者:行者123 更新时间:2023-12-01 19:06:19 24 4
gpt4 key购买 nike

在我的 Android 应用程序中,我使用相机来拍摄照片。我想在拍摄的照片上打印日期和时间。与普通相机一样,有一个选项,如果您在相机上设置日期和时间,那么它将打印在照片的右下侧。

为了拍摄照片,我使用cameraIntent:

Intent cameraIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);

并在onActivityResult中我保存在照片中。

现在我如何在这张照片上打印日期和时间。

最佳答案

这段代码在另一个图像之上添加一个图像,你可以使用这个...

        Bitmap bottomImage = BitmapFactory.decodeResource(ctx.getResources(),
R.drawable.first);

Bitmap topImage = BitmapFactory.decodeResource(ctx.getResources(),
R.drawable.second);
Canvas comboImage = new Canvas(bottomImage);
// Then draw the second on top of that
float f=(float) 0.1;
comboImage.drawBitmap(topImage, 38f, 35f, null);

关于java - Android:在我的应用程序拍摄的照片上打印日期和时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9953404/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com