革博士程序V1仓库
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.

ImageUtil.cs 398 B

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