(final Bitmap src,
final String filePath,
final CompressFormat format,
final boolean sendBoardcast)
| 83 | |
| 84 | |
| 85 | public static boolean saveBitmap(final Bitmap src, |
| 86 | final String filePath, |
| 87 | final CompressFormat format, |
| 88 | final boolean sendBoardcast) { |
| 89 | return saveBitmap(src, new File(filePath), format, false, sendBoardcast); |
| 90 | } |
| 91 | |
| 92 | public static boolean saveBitmap(final Bitmap src, final File file, final CompressFormat format, final boolean sendBoardcast) { |
| 93 | return saveBitmap(src, file, format, false, sendBoardcast); |
nothing calls this directly
no test coverage detected