革博士程序V1仓库
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

ImageUtil.cs 398 B

2 yıl önce
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. }