Package cn.authing.guard.util
Class ImageUtil
- java.lang.Object
-
- cn.authing.guard.util.ImageUtil
-
public class ImageUtil extends Object
-
-
Field Summary
Fields Modifier and Type Field Description static intSCREENSHOT_SIZEstatic intTHUMBNAIL_SIZE
-
Constructor Summary
Constructors Constructor Description ImageUtil()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BitmapgetScaledImage(Context context, Uri uri, int maxSize)static BitmapgetScreenshot(Context context, Uri uri)static BitmapgetThumbnail(Context context, Uri uri)
-
-
-
Field Detail
-
THUMBNAIL_SIZE
public static final int THUMBNAIL_SIZE
- See Also:
- Constant Field Values
-
SCREENSHOT_SIZE
public static final int SCREENSHOT_SIZE
- See Also:
- Constant Field Values
-
-
Method Detail
-
getThumbnail
public static Bitmap getThumbnail(Context context, Uri uri) throws IOException
- Throws:
IOException
-
getScreenshot
public static Bitmap getScreenshot(Context context, Uri uri) throws IOException
- Throws:
IOException
-
getScaledImage
public static Bitmap getScaledImage(Context context, Uri uri, int maxSize) throws IOException
- Throws:
IOException
-
-