检查设备是否支持webP图像格式

时间:2015-01-28 09:12:34

标签: android android-image webp

有没有办法检查设备是否支持图像格式(具体为webP格式)。根据android doc(http://developer.android.com/guide/appendix/media-formats.html),在4.0+设备中支持webP。 enter image description here

但是4.0+设备中的一些还没有支持webP。 (例如,Noxia XL- http://developer.nokia.com/community/wiki/Nokia_X_known_issues)。 有没有办法以编程方式检查设备是否支持webP图像。任何帮助将不胜感激。谢谢!

1 个答案:

答案 0 :(得分:5)

据我所知,这没有API。因此解决方案是尝试解码设备上的某些webp图像并检查它是否返回Bitmap。

这可以这样实现:

import android.graphics.Bitmap;
import android.graphics.BitmapFactory;

public class WebPUtils {
    //states
    private static final int NOT_INITIALIZED = -1;
    private static final int SUPPORTED = 1;
    private static final int NOT_SUPPORTED = 0;

    //why not boolean? we need more states for result caching
    private static int isWebPSupportedCache = NOT_INITIALIZED;

    public static boolean isWebPSupported() {
        // did we already try to check?
        if (isWebPSupportedCache == NOT_INITIALIZED) {
            //no - trying to decode
            //webp 1x1 transparent pixel with lossless
            final byte[] webp1x1 = new byte[]{
                    0x52, 0x49, 0x46, 0x46, 0x1A, 0x00, 0x00, 0x00,
                    0x57, 0x45, 0x42, 0x50, 0x56, 0x50, 0x38, 0x4C,
                    0x0D, 0x00, 0x00, 0x00, 0x2F, 0x00, 0x00, 0x00,
                    0x10, 0x07, 0x10, 0x11, 0x11, (byte) 0x88, (byte) 0x88, (byte) 0xFE,
                    0x07, 0x00
            };
            try {
                final Bitmap bitmap = BitmapFactory.decodeByteArray(webp1x1, 0, webp1x1.length);
                if (bitmap != null) {
                    //webp supported
                    isWebPSupportedCache = SUPPORTED;
                    //don't forget to recycle!
                    bitmap.recycle();
                } else {
                    //bitmap is null = not supported
                    isWebPSupportedCache = NOT_SUPPORTED;
                }
            } catch (Exception ex) {
                //we got some exception = not supported
                isWebPSupportedCache = NOT_SUPPORTED;
                ex.printStackTrace();
            }
        }
        return isWebPSupportedCache == SUPPORTED;
    }
}
相关问题