溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

Android png透明圖片轉(zhuǎn)jpg時(shí)背景變黑的解決方法

發(fā)布時(shí)間:2020-09-01 07:36:28 來(lái)源:腳本之家 閱讀:858 作者:康熙微博私訪(fǎng)記 欄目:移動(dòng)開(kāi)發(fā)

在做view保存圖片后,壓縮格式轉(zhuǎn)為jpg的時(shí)候出現(xiàn)了黑色背景,其根本原因在于透明背景時(shí)背景的情況下,轉(zhuǎn)換為jpg的時(shí)候會(huì)變成黑色背景,原因是PNG支持透明圖而 JPG格式不支持透明背景。

我們的解決方案如下:

/**
 * 把bitmap,png格式的圖片 轉(zhuǎn)換成jpg圖片
 * 因jpg不支持透明,如png透明圖片,則轉(zhuǎn)成白底!
 * @param bitmap 源圖
 * @param newFilepath 新圖片的路徑
 */
public static void convertBitmap2Jpg(Bitmap bitmap, String newImgpath) {
  //復(fù)制Bitmap 因?yàn)閜ng可以為透明,jpg不支持透明,把透明底明變成白色
  //主要是先創(chuàng)建一張白色圖片,然后把原來(lái)的繪制至上去
  Bitmap outB=bitmap.copy(Bitmap.Config.ARGB_8888,true);
  Canvas canvas=new Canvas(outB);
  canvas.drawColor(Color.WHITE);
  canvas.drawBitmap(bitmap, 0, 0, null);
  File file = new File(newImgpath);
  try {
    FileOutputStream out = new FileOutputStream(file);
    if (outB.compress(Bitmap.CompressFormat.JPEG, 100, out)) {
      out.flush();
      out.close();
    }
  } catch (FileNotFoundException e) {
    e.printStackTrace();
  } catch (IOException e) {
    e.printStackTrace();
  }
}

總結(jié)

以上所述是小編給大家介紹的Android png透明圖片轉(zhuǎn)jpg時(shí)背景變黑的解決方法,希望對(duì)大家有所幫助,如果大家有任何疑問(wèn)請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)億速云網(wǎng)站的支持!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀(guān)點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI