版博士V2.0程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ImageUtil.cs 376 B

2 vuotta sitten
123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Drawing;
  4. using System.IO;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace ProductionControl.Utils
  9. {
  10. public class ImageUtil
  11. {
  12. public static Image buff2Image(byte[] ImgBuff)
  13. {
  14. return Image.FromStream(new MemoryStream(ImgBuff));
  15. }
  16. }
  17. }