gpt4 book ai didi

android - 从位图描述符获取位图

转载 作者:塔克拉玛干 更新时间:2023-11-02 07:51:11 25 4
gpt4 key购买 nike

是否有可能从 BitmapDescriptor 得到位图?

我正在尝试使用 googles api 使我的应用程序更加无缝,但我可以改为制作自定义标记选项对象...我认为 BitmapDescriptor 会扩展 FileDescriptor,但我没有看到。

最佳答案

所有的 BitmapDescriptor 都来自 BitmapDescriptorFactory。

来自 MediaStore 中 imageId 的示例自定义标记。

final BitmapFactory.Options bmOptions = new BitmapFactory.Options();
bmOptions.inSampleSize = 8; //about the size of standard marker

Bitmap bm = MediaStore.Images.Thumbnails.getThumbnail(
context.getContentResolver(), newImageId,
MediaStore.Images.Thumbnails.MINI_KIND,
bmOptions);
if (bm != null) {
BitmapDescriptor bd = BitmapDescriptorFactory
.fromBitmap(bm);
if (bd != null) {
markeroptions.icon(bd);

关于android - 从位图描述符获取位图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14989265/

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