convert image to base64

ylbtech-Unitity-cs:convert image to base64
1.A,效果图返回顶部
1.B,源代码返回顶部

1.B.1,convert image to base64

#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

1.C,下载地址返回顶部
作者:ylbtech
出处:http://ylbtech.cnblogs.com/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。
时间: 2024-10-14 16:25:50

convert image to base64的相关文章

Node.js Base64 Encoding和Decoding

如何在Node.js中encode一个字符串呢?是否也像在PHP中使用base64_encode()一样简单? 在Node.js中有许多encoding字符串的方法,而不用像在JavaScript中那样定义各种不同的全局函数.下面是如何在Node.js中将一个普通字符串encode成Base64格式的代码: var b = new Buffer('JavaScript'); var s = b.toString('base64'); // SmF2YVNjcmlwdA== 下面是decode b

iOS 7: Base64 Encode and Decode NSData and NSString Objects

iOS 7: Base64 Encode and Decode NSData and NSString Objects FRI, JAN 24 CORE SERVICES TWEET With the release of iOS 7, Apple added support for encoding and decoding data using Base64. In this post we will walk through two examples using Base64 to enc

C# Base64字符串转换成图片及图片转换为Base64

最近有朋友经常会问我一些问题,例如,如何把一个字符串转换成base64字符串,如何把一个二进制文件转换成Base64文件,以及如何转换回原有的文件,在此我把方法写一下 字符串与Base64相互转换 编码: byte[] bytes = Encoding.Default.GetBytes("要转换的字符"); string str = Convert.ToBase64String(bytes); 解 码: byte[] outputb = Convert.FromBase64String

C++ Base64编码解码、MD5及TEA加密解密

Crypto.h以及Crypto.cpp Crypto.h 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091

Code-Convert:Image to base64

ylbtech-Code-Convert:Image to base64 1. C# 返回顶部 1. #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.S

[php代码审计] php://filter

筛选过滤应用: 1. 字符串过滤器: string.rot13 对字符串执行ROT13转换 string.toupper转换为大写 string.tolower 转换为小写 string.strip_tags去除html和php标记 2. 转换过滤器: convert.base64-encode & convert.base64-decode :base64编码/解码 convert.quoted-printable-encode & convert.quoted-printable-de

Powershell 之加解密

#################  # Powershell Allows The Loading of .NET Assemblies  # Load the Security assembly to use with this script   #################  [Reflection.Assembly]::LoadWithPartialName("System.Security")   #################  # This function i

C#编程总结(十)字符转码

C#编程总结(十)字符转码 为了适应某种特殊需要,字符需要根据规则进行转码,便于传输.展现以及其他操作等. 看看下面的转码,就知道他的用处了. 1.字符串转码 根据原编码格式与目标编码格式,完成转换.不过可能出现乱码哦.上一章已经介绍过了. 代码: /// <summary> /// 字符串编码转换 /// </summary> /// <param name="srcEncoding">原编码</param> /// <param

图片转换成流

Image image = Image.FromFile(@"C:\Users\swkj\Documents\Visual Studio 2012\Projects\WebApplication9\WindowsFormsApplication1\ali.jpg");//这是你图片文件的MemoryStream stream = new MemoryStream(); image.Save(stream, ImageFormat.Bmp); //把图片保存到流中.byte[] b =