版博士V2.0程序
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 

19 lignes
376 B

  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. }