android 如何获取图像blob的宽度和高度?

发布于 2024-10-12 06:17:55 字数 74 浏览 8 评论 0原文

我已将图像存储到数据库中。我可以获得斑点,但无法找到其正确的高度和宽度,并且对每个图像的宽度和高度进行硬编码并不是一个好主意。请帮助我

I have stored an Image to Database. I can get the blob but unable to find its correct height and width and hard coding each image width and height is not a good idea. kindly help me out

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

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

发布评论

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

评论(2

删除→记忆 2024-10-19 06:17:55
Bitmap bitmap=BitmapFactory.decodeResource(getResources(), R.drawable.img);
        int WIDTH=bitmap.getWidth();
        int HEIGHT=bitmap.getHeight();
        bitmap.recycle();

其中 img 将是 drawable 中的图像。

Bitmap bitmap=BitmapFactory.decodeResource(getResources(), R.drawable.img);
        int WIDTH=bitmap.getWidth();
        int HEIGHT=bitmap.getHeight();
        bitmap.recycle();

where img will be your image in drawable.

风轻花落早 2024-10-19 06:17:55

得到答案

http://apachejava. blogspot.com/2011/01/get-width-and-height-of-image-blob.html

public Bitmap convertBlobToBitmap(byte[] blobByteArray) {       
        Bitmap tempBitmap=null;        
        if(blobByteArray!=null)
        tempBitmap = BitmapFactory.decodeByteArray(blobByteArray, 0, blobByteArray.length);

        return tempBitmap;
    }


Bitmap temp_bitmapImg = convertBlobToBitmap(BitmapArrayOfImage());
                int height = temp_bitmapImg .getHeight();
                int width = temp_bitmapImg .getWidth();

Got the answer from

http://apachejava.blogspot.com/2011/01/get-width-and-height-of-image-blob.html

public Bitmap convertBlobToBitmap(byte[] blobByteArray) {       
        Bitmap tempBitmap=null;        
        if(blobByteArray!=null)
        tempBitmap = BitmapFactory.decodeByteArray(blobByteArray, 0, blobByteArray.length);

        return tempBitmap;
    }


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