|
| 1 | +package com.daivd.chart.component; |
| 2 | + |
| 3 | +import android.content.ContentValues; |
| 4 | +import android.graphics.Bitmap; |
| 5 | +import android.graphics.Canvas; |
| 6 | +import android.graphics.Color; |
| 7 | +import android.graphics.drawable.Drawable; |
| 8 | +import android.os.Environment; |
| 9 | +import android.provider.MediaStore; |
| 10 | +import android.view.View; |
| 11 | + |
| 12 | +import com.daivd.chart.data.PicOption; |
| 13 | + |
| 14 | +import java.io.File; |
| 15 | +import java.io.FileOutputStream; |
| 16 | +import java.io.IOException; |
| 17 | + |
| 18 | +/** |
| 19 | + * Created by huang on 2017/10/30. |
| 20 | + * 图片生成 |
| 21 | + */ |
| 22 | + |
| 23 | +public class PicGeneration<V extends View> { |
| 24 | + |
| 25 | + public boolean save(V v,PicOption option){ |
| 26 | + getChartBitmap(v); |
| 27 | + return saveToGallery(v,option); |
| 28 | + } |
| 29 | + |
| 30 | + private Bitmap getChartBitmap(V v) { |
| 31 | + // 创建一个bitmap 根据我们自定义view的大小 |
| 32 | + Bitmap returnedBitmap = Bitmap.createBitmap(v.getWidth(), |
| 33 | + v.getHeight(), Bitmap.Config.RGB_565); |
| 34 | + // 绑定canvas |
| 35 | + Canvas canvas = new Canvas(returnedBitmap); |
| 36 | + // 获取视图的背景 |
| 37 | + Drawable bgDrawable = v.getBackground(); |
| 38 | + if (bgDrawable != null) |
| 39 | + // 如果有就绘制 |
| 40 | + bgDrawable.draw(canvas); |
| 41 | + else |
| 42 | + // 没有就绘制白色 |
| 43 | + canvas.drawColor(Color.WHITE); |
| 44 | + // 绘制 |
| 45 | + v.draw(canvas); |
| 46 | + return returnedBitmap; |
| 47 | + } |
| 48 | + |
| 49 | + private boolean saveToGallery(V v, PicOption option) { |
| 50 | + String mFilePath; |
| 51 | + // 控制图片质量 |
| 52 | + if (option.getQuality() < 0 || option.getQuality() > 100) |
| 53 | + option.setQuality(50); |
| 54 | + long currentTime = System.currentTimeMillis(); |
| 55 | + |
| 56 | + File extBaseDir = Environment.getExternalStorageDirectory(); |
| 57 | + File file = new File(extBaseDir.getAbsolutePath() + "/DCIM/" + option.getSubFolderPath()); |
| 58 | + if (!file.exists()) { |
| 59 | + if (!file.mkdirs()) { |
| 60 | + return false; |
| 61 | + } |
| 62 | + } |
| 63 | + |
| 64 | + String mimeType = ""; |
| 65 | + String fileName = option.getFileName(); |
| 66 | + switch (option.getFormat()) { |
| 67 | + case PNG: |
| 68 | + mimeType = "image/png"; |
| 69 | + if (!fileName.endsWith(".png")) |
| 70 | + fileName += ".png"; |
| 71 | + break; |
| 72 | + case WEBP: |
| 73 | + mimeType = "image/webp"; |
| 74 | + if (!fileName.endsWith(".webp")) |
| 75 | + fileName += ".webp"; |
| 76 | + break; |
| 77 | + case JPEG: |
| 78 | + default: |
| 79 | + mimeType = "image/jpeg"; |
| 80 | + if (!(fileName.endsWith(".jpg") || fileName.endsWith(".jpeg"))) |
| 81 | + fileName += ".jpg"; |
| 82 | + break; |
| 83 | + } |
| 84 | + mFilePath = file.getAbsolutePath() + "/" + fileName; |
| 85 | + FileOutputStream out = null; |
| 86 | + try { |
| 87 | + out = new FileOutputStream(mFilePath); |
| 88 | + Bitmap b = getChartBitmap(v); |
| 89 | + b.compress(option.getFormat(), option.getQuality(), out); |
| 90 | + |
| 91 | + out.flush(); |
| 92 | + out.close(); |
| 93 | + |
| 94 | + } catch (IOException e) { |
| 95 | + e.printStackTrace(); |
| 96 | + |
| 97 | + return false; |
| 98 | + } |
| 99 | + |
| 100 | + long size = new File(mFilePath).length(); |
| 101 | + |
| 102 | + ContentValues values = new ContentValues(8); |
| 103 | + |
| 104 | + // store the details |
| 105 | + values.put(MediaStore.Images.Media.TITLE, fileName); |
| 106 | + values.put(MediaStore.Images.Media.DISPLAY_NAME, fileName); |
| 107 | + values.put(MediaStore.Images.Media.DATE_ADDED, currentTime); |
| 108 | + values.put(MediaStore.Images.Media.MIME_TYPE, mimeType); |
| 109 | + values.put(MediaStore.Images.Media.DESCRIPTION, option.getFileDescription()); |
| 110 | + values.put(MediaStore.Images.Media.ORIENTATION, 0); |
| 111 | + values.put(MediaStore.Images.Media.DATA, mFilePath); |
| 112 | + values.put(MediaStore.Images.Media.SIZE, size); |
| 113 | + return v.getContext().getContentResolver(). |
| 114 | + insert(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, values) != null; |
| 115 | + } |
| 116 | +} |
0 commit comments