BitmapFactory 返回比源更大的图像

发布于 2024-12-03 19:21:09 字数 432 浏览 7 评论 0原文

您好,我正在从名为 image.png 的 png 图像创建位图。该图像的尺寸为 75(宽)x 92(高)。当我运行此代码时:

Bitmap bitmap = BitmapFactory.decodeResource(this.context.getResources(),  R.drawable.image
Log.d("image", "height: " + bitmap.getHeight() + " width: " + bitmap.getWidth());

记录器记录:

DEBUG/image(3550): height: 138 width: 113

并且屏幕上的图像比尺寸为 75 x 92 的其他图像大。我该怎么做才能使 android 加载具有正确尺寸的图像?

Hi i am creating a Bitmap from an png image named image.png. The image has the dimension 75 (width) x 92 (height). When I run this code:

Bitmap bitmap = BitmapFactory.decodeResource(this.context.getResources(),  R.drawable.image
Log.d("image", "height: " + bitmap.getHeight() + " width: " + bitmap.getWidth());

the logger logs:

DEBUG/image(3550): height: 138 width: 113

and the image on the screen is bigger than other images which have the dimension 75 x 92. What can I do to make android load the image with the right dimension?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

陌上青苔 2024-12-10 19:21:10

我的解决方案:

BitmapFactory.Options options = new BitmapFactory.Options();
options.inScaled = false;               
Bitmap bitmap = BitmapFactory.decodeResource(this.context.getResources(),  R.drawable.image, options );

My solution:

BitmapFactory.Options options = new BitmapFactory.Options();
options.inScaled = false;               
Bitmap bitmap = BitmapFactory.decodeResource(this.context.getResources(),  R.drawable.image, options );
往事风中埋 2024-12-10 19:21:10

听起来您设备上的屏幕密度与创建 image.png 的密度不同。

如果您确实想防止缩放,可以尝试以下操作之一:

  1. 将图像放入 res/drawable-nodpi (http://developer.android.com/guide/practices/screens_support.html#qualifiers)

  2. 使用 ImageView.ScaleType.CENTER (http://developer.android.com/reference/android/widget/ImageView.ScaleType.html)

  3. 只是发现这个相关问题:Android:如何停止Android 1.6+ 缩放图像

It sounds like your screen density on your device is different than the density where image.png was created.

If you really want to prevent the scaling, you could try one of the following:

  1. Put the image in res/drawable-nodpi (http://developer.android.com/guide/practices/screens_support.html#qualifiers)

  2. Use ImageView.ScaleType.CENTER (http://developer.android.com/reference/android/widget/ImageView.ScaleType.html)

  3. Just found this related question on SO: Android: How to stop Android 1.6+ from scaling images

[浮城] 2024-12-10 19:21:10

因为 BitmapFactory 中的加载器在加载期间应用屏幕密度缩放。
要覆盖此设置,请在调用decodeResource 时在BitmapFactory.Options 中提供自己所需的inTargetDensity。

Beause loader in BitmapFactory applies screen density scaling during loading.
To override this, provide own desired inTargetDensity in BitmapFactory.Options in call to decodeResource.

铁憨憨 2024-12-10 19:21:10

位图thumbImage =
Bitmap.createScaledBitmap(BitmapFactory.decodeResource(context.getResources(),
R.drawable.image), 640, 640, false);

Bitmap thumbImage =
Bitmap.createScaledBitmap(BitmapFactory.decodeResource(context.getResources(),
R.drawable.image), 640, 640, false);

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文