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.
|
- using System;
- using System.Collections.Generic;
- using System.Drawing;
- using System.IO;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace ProductionControl.Utils
- {
- public class ImageUtil
- {
- public static Image buff2Image(byte[] ImgBuff)
- {
- return Image.FromStream(new MemoryStream(ImgBuff));
- }
- }
- }
|