C#分离Alpha通道图

作者:追风剑情 发布于:2018-11-23 18:27 分类:Unity3d

一、工程
111.png
示例代码
  1. using System;
  2. using System.IO;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using System.Drawing;
  8. using System.Drawing.Imaging;
  9.  
  10. namespace SplitAlpha
  11. {
  12. class Program
  13. {
  14. static void Main(string[] args)
  15. {
  16. if (args.Length <= 0) {
  17. Console.WriteLine("missing param");
  18. return;
  19. }
  20. string filename = args[0];
  21. Bitmap bmp = new Bitmap(filename);
  22. if (bmp == null) {
  23. Console.WriteLine("load failed: " + filename);
  24. return;
  25. }
  26. Bitmap bmp_rgb = bmp.Clone(new Rectangle(0, 0, bmp.Width, bmp.Height), PixelFormat.Format24bppRgb);
  27. Bitmap bmp_alpha = bmp.Clone(new Rectangle(0, 0, bmp.Width, bmp.Height), PixelFormat.Format24bppRgb);
  28. Color c, new_c;
  29. for (int x = 0; x < bmp.Width; x++)
  30. {
  31. for (int y = 0; y < bmp.Height; y++)
  32. {
  33. c = bmp.GetPixel(x, y);
  34. new_c = Color.FromArgb(1, c.A, c.A, c.A);
  35. bmp_alpha.SetPixel(x, y, new_c);
  36. }
  37. }
  38.  
  39. string file_path = filename;
  40. string tmp_path = Path.GetDirectoryName(file_path);
  41. string tmp_name = Path.GetFileNameWithoutExtension(file_path);
  42. string rgb_path = string.Format("{0}/{1}_RGB.png", tmp_path, tmp_name);
  43. string alpha_path = string.Format("{0}/{1}_alpha.png", tmp_path, tmp_name);
  44.  
  45. bmp_rgb.Save(rgb_path, ImageFormat.Png);
  46. bmp_alpha.Save(alpha_path, ImageFormat.Png);
  47.  
  48. bmp.Dispose();
  49. bmp_rgb.Dispose();
  50. bmp_alpha.Dispose();
  51. }
  52. }
  53. }

通过批处理调用
  1. echo off
  2. set png_file=png文件路径
  3. ::分离Alpha通道
  4. SplitAlpha.exe %png_file%
  5. @pause

测试效果

原图
22.png
RGB图
333.png
Alpha通道图
444.png

标签: Unity3d

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号