Android 合併生成分享圖片(View截圖)
有時候分享功能都是很需要分享一個當前螢幕的介面的截圖因,以前做校內APP的時候用到過,拿出來分享分享,
用以前以前寫過的自定義課表軟體 ,
Android 自定義View課程表表格
原生View截圖 | 合成分享的圖片 |
|
|
看到的是圖片只顯示到11節處,下面的沒有顯示到 所以用到的 ScrollView
因此截圖節擷取ScrollView View的圖片
一,首先計算出整個ScrollView 的高度寬度生成對應大小的的Bitmap 然後把使用Canvas 將ScrollView 的介面繪製上去
// 獲取ScrollView 實際高度
h = 0;
for (int i = 0; i < scrollView.getChildCount(); i++) {
h += scrollView.getChildAt(i).getHeight();
scrollView.getChildAt(i).setBackgroundResource(android.R.color.white);
}
// 建立對應大小的bitmap
Bitmap bitmap = Bitmap.createBitmap(scrollView.getWidth(), h, Bitmap.Config.ARGB_8888);
Canvas canvas = new Canvas(bitmap);
scrollView.draw(canvas);
二、獲取分享的頭部和底部圖片的Bitmap
// BitmapFactory.decodeResource函式直接轉換資原始檔為Bitmap
Bitmap head = BitmapFactory.decodeResource(mContext.getResources(), R.drawable.share_term_table_header);
Bitmap foot = BitmapFactory.decodeResource(mContext.getResources(), R.drawable.share_term_table_footer);
三、合併頭部底部和介面View的截圖
if (head == null) {
return null;
}
int headWidth = head.getWidth();
int kebianwidth = kebiao.getWidth();
int fotwid = san.getWidth();
int headHeight = head.getHeight();
int kebiaoheight = kebiao.getHeight();
int footerheight = san.getHeight();
//生成三個圖片合併大小的Bitmap
Bitmap newbmp = Bitmap.createBitmap(kebianwidth, headHeight + kebiaoheight + footerheight, Bitmap.Config.ARGB_8888);
Canvas cv = new Canvas(newbmp);
cv.drawBitmap(head, 0, 0, null);// 在 0,0座標開始畫入headBitmap
//因為手機不同圖片的大小的可能小了 就繪製白色的介面填充剩下的介面
if (headWidth < kebianwidth) {
System.out.println("繪製頭");
Bitmap ne = Bitmap.createBitmap(kebianwidth - headWidth, headHeight, Bitmap.Config.ARGB_8888);
Canvas canvas = new Canvas(ne);
canvas.drawColor(Color.WHITE);
cv.drawBitmap(ne, headWidth, 0, null);
}
cv.drawBitmap(kebiao, 0, headHeight, null);// 在 0,headHeight座標開始填充課表的Bitmap
cv.drawBitmap(san, 0, headHeight + kebiaoheight, null);// 在 0,headHeight + kebiaoheight座標開始填充課表的Bitmap
//因為手機不同圖片的大小的可能小了 就繪製白色的介面填充剩下的介面
if (fotwid < kebianwidth) {
System.out.println("繪製");
Bitmap ne = Bitmap.createBitmap(kebianwidth - fotwid, footerheight, Bitmap.Config.ARGB_8888);
Canvas canvas = new Canvas(ne);
canvas.drawColor(Color.WHITE);
cv.drawBitmap(ne, fotwid, headHeight + kebiaoheight, null);
}
cv.save(Canvas.ALL_SAVE_FLAG);// 儲存
cv.restore();// 儲存
//回收
head.recycle();
kebiao.recycle();
san.recycle();
下載地址
環境Android Studio
csdn下載地址 http://download.csdn.net/detail/shallcheek/8921639
檢視GIT https://github.com/shallcheek/TimeTable/
相關文章
- Android截圖和指定View生成截圖分享AndroidView
- Android 普通View截圖 RecyclerView截圖 ScrollView截圖分享AndroidView
- 『ios』view和tableview的截圖和圖片拼接iOSView
- Android 根據View生成圖片簡易參考AndroidView
- C# 合併圖片C#
- 生成 Charts 圖片,併傳送 Charts 圖片郵件
- PHP 圖片的合併,微信小程式碼合併,文字合併PHP微信小程式
- 前端圖片合併方案調研前端
- android非同步生成圖片Android非同步
- MacOS專業截圖指南——截圖技巧和截圖工具分享Mac
- Android生成圖片並放入相簿Android
- Android 截圖與 WebView 長圖分享經驗總結AndroidWebView
- Android:隨筆——對頁面的View進行截圖AndroidView
- Android 開源圖片裁剪工具、圖片顯示工具分享Android
- iOS-圖片水印,圖片裁剪和螢幕截圖iOS
- Android 截圖Android
- Python 批次合併圖片到word文件Python
- 巧妙的有css合併圖片解決tab切換的背景圖片CSS
- Flutter 生成圖片Flutter
- pyecharts生成圖片Echarts
- Android高德地圖貼合圖片完成手繪地圖展示Android地圖
- web技術分享| 圖片上傳與圖片裁剪結合 vue3WebVue
- Android截圖方案Android
- Android下截圖Android
- Android 生成帶圖片的二維碼Android
- Flutter截圖分享要點Flutter
- Java 在Word中建立郵件合併模板併合並文字和圖片Java
- TableView ScrollreView 截圖 擷取全屏 圖片模糊View
- C# 截圖並儲存為圖片C#
- 如何生成WebP圖片Web
- 將 HTML 生成圖片HTML
- 圖片生成database 64Database
- python生成圖片Python
- 從ORACLE 生成圖片Oracle
- 為view設定背景圖片View
- 多種榮耀10截圖方法分享 榮耀10怎麼截圖?
- Android自定義View之圖片外形特效——輕鬆實現圓角和圓形圖片AndroidView特效
- android-smart-image-view圖片載入簡單使用AndroidView