如題,以下為通過java實作的針對圖檔的背景透明及透明度處理,供大家需要時參考:
/**
* 設定源圖檔為背景透明,并設定透明度
* @param srcFile 源圖檔
* @param desFile 目标檔案
* @param alpha 透明度
* @param formatName 檔案格式
* @throws IOException
*/
public static void transparentImage(String srcFile,String desFile,int alpha,String formatName) throws IOException{
BufferedImage temp = ImageIO.read(new File(srcFile));//取得圖檔
transparentImage(temp, desFile, alpha, formatName);
}
/**
* 設定源圖檔為背景透明,并設定透明度
* @param srcImage 源圖檔
* @param desFile 目标檔案
* @param alpha 透明度
* @param formatName 檔案格式
* @throws IOException
*/
public static void transparentImage(BufferedImage srcImage,
String desFile, int alpha, String formatName) throws IOException {
int imgHeight = srcImage.getHeight();//取得圖檔的長和寬
int imgWidth = srcImage.getWidth();
int c = srcImage.getRGB(3, 3);
//防止越位
if (alpha < 0) {
alpha = 0;
} else if (alpha > 10) {
alpha = 10;
}
BufferedImage bi = new BufferedImage(imgWidth, imgHeight,
BufferedImage.TYPE_4BYTE_ABGR);//建立一個類型支援透明的BufferedImage
for(int i = 0; i < imgWidth; ++i)//把原圖檔的内容複制到新的圖檔,同時把背景設為透明
{
for(int j = 0; j < imgHeight; ++j)
{
//把背景設為透明
if(srcImage.getRGB(i, j) == c){
bi.setRGB(i, j, c & 0x00ffffff);
}
//設定透明度
else{
int rgb = bi.getRGB(i, j);
rgb = ((alpha * 255 / 10) << 24) | (rgb & 0x00ffffff);
bi.setRGB(i, j, rgb);
}
}
}
ImageIO.write(bi, StringUtils.isEmpty(formatName)?FORMAT_PNG:formatName, new File(desFile));
}