ylbtech-Unitity-cs:convert image to base64

convert image to base64

1.A,效果图​返回顶部​


1.B,源代码​返回顶部​

1.B.1,convert image to base64

convert image to base64_返回顶部convert image to base64_4s_02

#region convert image to base64 public string ImageToBase64(Image image, System.Drawing.Imaging.ImageFormat format) {     using (MemoryStream ms = new MemoryStream())     {         // Convert Image to byte[]         image.Save(ms, format);         byte[] imageBytes = ms.ToArray();         // Convert byte[] to Base64 String         string base64String = Convert.ToBase64String(imageBytes);         return base64String;     } } #endregion

View Code



1.C,下载地址​返回顶部​


convert image to base64_4s_03

作者:​​ylbtech​