using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Net;
using System.IO;
using KT_Product_Show_V3.Models;
using KT_Product_Show_V3.Controllers;
using System.Text.RegularExpressions;
using System.Drawing.Imaging; namespace KT_Product_Show_V3
{
public partial class ImageTool
{
public static string BuildImg(string webUrl, int Size, string directory)
{
Bitmap bmp;
System.Drawing.Image img;
string filename = "";
if (!Directory.Exists(directory))
{
return "";
}
WebRequest WebReq = WebRequest.Create(webUrl);
WebReq.Method = "GET";
img = System.Drawing.Image.FromStream(WebReq.GetResponse().GetResponseStream());
bmp = new Bitmap(Size, Size);
System.Drawing.Graphics gr = System.Drawing.Graphics.FromImage(bmp);
gr.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality;
gr.CompositingQuality = System.Drawing.Drawing2D.CompositingQuality.HighQuality;
gr.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.High;
System.Drawing.Rectangle rectDestination = new System.Drawing.Rectangle(, , Size, Size);
gr.DrawImage(img, rectDestination, , , img.Width, img.Height, GraphicsUnit.Pixel);
filename = DateTime.Now.ToFileTime().ToString() + "_" + Size + ".jpeg";
bmp.Save(directory + filename);
Qiniu_API.PutFile(directory + filename, filename);
bmp.Dispose();
img.Dispose();
return filename;
} public static string Base64StringToImage(string strsuffix, string strbase64)
{
string path = "C:\\DescripttionImg\\";
string FileName_withOutstrsuffix = DateTime.Now.ToString("yyMMddhhmmss") + Guid.NewGuid().ToString("N");
string FileName = string.Format(@"{0}.{1}", FileName_withOutstrsuffix, strsuffix);
if (!Directory.Exists(path))
{
Directory.CreateDirectory(path);
}
try
{
byte[] arr = Convert.FromBase64String(strbase64);
MemoryStream ms = new MemoryStream(arr);
Bitmap bmp = new Bitmap(ms);
bmp.Save(path + FileName);
ms.Close(); Qiniu_API.PutFile(path + FileName, FileName); }
catch (Exception ex)
{ }
finally
{ }
return string.Format("http://{0}/{1}", Qiniu_API.Domain, FileName);
} public static string ImgToBase64String(string Imagefilename)
{
try
{
Bitmap bmp = new Bitmap(Imagefilename); MemoryStream ms = new MemoryStream();
bmp.Save(ms, System.Drawing.Imaging.ImageFormat.Png);
byte[] arr = new byte[ms.Length];
ms.Position = ;
ms.Read(arr, , (int)ms.Length);
ms.Close();
return Convert.ToBase64String(arr);
}
catch (Exception ex)
{
return null;
}
} public static string DescripttionDecode(string str)
{
string pattern = @"data:image/[a-z]+;base64,([a-z0-9-A-z]|[\+]|[/\\]|[=])*";
string pattern_suffix = @"data:image/[a-z]+;base64,";
RegexOptions regexOptions = RegexOptions.None;
Regex regex = new Regex(pattern, regexOptions);
Regex regex_suffix = new Regex(pattern_suffix, regexOptions);
foreach (Match match in regex.Matches(str))
{
if (match.Success)
{
string path = "";
string Temp = regex_suffix.Match(match.Value).Value;
string suffix = Temp.Replace("data:image/", "").Replace(";base64,", "");
string base64 = match.Value.Replace(Temp, "");
path = Base64StringToImage(suffix, base64);
str = str.Replace(match.Value, path); }
} return str;
} public static string DescripttionDecodeCutMaxWidth(string str, int MaxWidth)
{
string pattern = @"data:image/[a-z]+;base64,([a-z0-9-A-z]|[\+]|[/\\]|[=])*";
string pattern_suffix = @"data:image/[a-z]+;base64,";
RegexOptions regexOptions = RegexOptions.None;
Regex regex = new Regex(pattern, regexOptions);
Regex regex_suffix = new Regex(pattern_suffix, regexOptions);
foreach (Match match in regex.Matches(str))
{
if (match.Success)
{
string path = "";
string Temp = regex_suffix.Match(match.Value).Value;
string suffix = Temp.Replace("data:image/", "").Replace(";base64,", "");
string base64 = match.Value.Replace(Temp, "");
path = Base64StringToImageCutMaxWidth(suffix, base64,MaxWidth);
str = str.Replace(match.Value, path); }
} return str;
}
public static string Base64StringToImageCutMaxWidth(string strsuffix, string strbase64, int MaxWidth)
{
string path = "C:\\DescripttionImg\\";
string FileName_withOutstrsuffix = DateTime.Now.ToString("yyMMddhhmmss") + Guid.NewGuid().ToString("N");
string FileName = string.Format(@"{0}.{1}", FileName_withOutstrsuffix, strsuffix);
if (!Directory.Exists(path))
{
Directory.CreateDirectory(path);
}
try
{
byte[] arr = Convert.FromBase64String(strbase64);
MemoryStream ms = new MemoryStream(arr);
Bitmap bmp = new Bitmap(ms);
if (bmp.Width > MaxWidth)
{
bmp = KiResizeImage(bmp, MaxWidth, MaxWidth * bmp.Height / bmp.Width);
} // bmp.Width = MaxWidth;
// bmp.Height
bmp.Save(path + FileName);
ms.Close(); Qiniu_API.PutFile(path + FileName, FileName); }
catch (Exception ex)
{ }
finally
{ }
return string.Format("http://{0}/{1}", Qiniu_API.Domain, FileName);
}
public static Bitmap KiResizeImage(Bitmap bmp, int newW, int newH)
{
try
{
Bitmap b = new Bitmap(newW, newH);
Graphics g = Graphics.FromImage(b); // 插值算法的质量
g.InterpolationMode = InterpolationMode.HighQualityBicubic;
g.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.AntiAlias;
g.CompositingQuality = System.Drawing.Drawing2D.CompositingQuality.HighQuality;
//g.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.High;
g.DrawImage(bmp, new Rectangle(, , newW, newH), new Rectangle(, , bmp.Width, bmp.Height), GraphicsUnit.Pixel);
g.Dispose(); return b;
}
catch
{
return null;
}
} }
}

先上传到本地 然后到 七牛云 存储,最后 ,在 bbs 上显示 图片 直接 来源于七牛,本地也保存了一份,后续扩展到一键切换到本地读取功能。还可以使用负载均衡。

上面这个  图片操作类 还提供了 头像裁剪 之后 的 上传 大、小 图片 的方法。

[HttpPost]
[ValidateInput(false)]
public void AddDescripttion()
{
if (Request.Form["Descripttion"] == null)
{
Response.Write();
Response.End(); }
string str = Request.Form["Descripttion"].ToString();
Discuz discuz = new Discuz();
discuz.CreateTime = DateTime.Now;
discuz.Descripttion = ImageTool.DescripttionDecode(str);
discuz.Floor = conn.Database.SqlQuery<int>("select isnull( max(Floor),0) from dbo.Discuz").FirstOrDefault() + ;
discuz.ForumId = ;
discuz.IsFather = true;
discuz.Isgood = ;
discuz.IsPass = ;
discuz.UserId = ;
conn.Discuz.Add(discuz);
conn.SaveChanges();
Response.Write();
Response.End();
}

MVC  bbs发表帖子 的调用 action , [ValidateInput(false)]  结合 网站 web.config 文件 中的  <system.webServer> 下的<validation validateIntegratedModeConfiguration="false" />  一起用 ,才能解决

从客户端 中检测到有潜在危险的 Request.Form 值  报错的问题。

还介绍一个好的  Regex 工具

下载之后 我找了 半天 ,原来 在 这里啊!

img  的 src 属性 可以 是 data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUA

AAAFCAYAAACNbyblAAAAHElEQVQI12P4//8/w38GIAXDIBKE0DHxgljNBAAO

9TXL0Y4OHwAAAABJRU5ErkJggg==" >  这种不支持图片缓存。

bootstrap-wysiwyg 结合 base64 解码 .net bbs 图片操作类的更多相关文章

  1. bootstrap-wysiwyg 结合 base64 解码 .net bbs 图片操作类 (二) 图片裁剪

    图片裁剪参见: http://deepliquid.com/projects/Jcrop/demos.php?demo=thumbnail        一个js插件 http://www.mikes ...

  2. bootstrap-wysiwyg 结合 base64 解码 .net bbs 图片操作类 (三) 图片裁剪

    官方的例子 是 长方形的. 我这里 用于 正方形的头像 所以  做如下  修改 #preview-pane .preview-container { width: 73px; height: 73px ...

  3. C#——图片操作类简单封装

    using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Dr ...

  4. php 图片操作类,支持生成缩略图,添加水印,上传缩略图

    <?php class Image {     //类开始     public $originimage = ""; //源图片文件地址     public $image ...

  5. C#获取CPU与网卡硬盘序列号及Base64和DES加密解密操作类

    public class RegisterHelp { /// <summary> /// CPU /// </summary> /// <returns>< ...

  6. 微信小程序之图片base64解码

    不知道大家在做微信小程序的时候遇到base64解码的问题,我之前在做微信小程序的时候遇到base64解析图片一直有问题,所以在这里把遇到的问题和解决方案在这里记录一下: 在平时的项目中我们是直接用ba ...

  7. 将图片文件转化为字节数组字符串,并对其进行Base64编码处理,以及对字节数组字符串进行Base64解码并生成图片

    实际开发中涉及图片上传并且量比较大的时候一般处理方式有三种 1.直接保存到项目中 最老土直接方法,也是最不适用的方法,量大对后期部署很不方便 2.直接保存到指定路径的服务器上.需要时候在获取,这种方式 ...

  8. Base64字符保存图片,图片转换成Base64字符编码

    //文件转换成Base64编码 public static String getFileBase64Str(String filePath) throws IOException { String f ...

  9. file上传图片,base64转换、压缩图片、预览图片、将图片旋转到正确的角度

    /** * 将base64转换为文件对象 * (即用文件上传输入框上传文件得到的对象) * @param {String} base64 base64字符串 */ function convertBa ...

随机推荐

  1. 事件冒泡 ,停止事件冒泡 e.stopPropagation()

    <1> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>防止起泡 ...

  2. C# 中使用WebClient 请求 https

    WebClient 请求 启用SSL的站点 时,如果站点的证书是不可信的,请求会被阻止,解决办法如下: 添加以下代码: ServicePointManager.ServerCertificateVal ...

  3. Mac OS温馨提示17:七彩花哨的输入

    OSX Mavericks中国的文字输入功能,色于windows,甚至提供了强大的手写输入功能和语音输入功能,而且发展到如今,已经有非常多种第三方输入法支持Mac了. 一.主要的输入法        ...

  4. Windowsport80解决方案被占用

    今天,在一个非常沮丧的实施Server什么时候,一个错误port80占用.因此,找到一种方法来解决各类.最后,我的解决方案列出的问题来,要遇到的人做一些参考同样的问题. 第一步,找出哪些程序正在使用p ...

  5. 使用js在新窗口中POST数据

    最近在做自己的博客,写文章的时候有一个预览功能,当时使用的是弹出框来进行预览,感觉体验不是很好. 然后想到了写邮件时候的新窗口预览,查了下126邮箱和qq邮箱的预览实现效果,以及各种谷歌百度stack ...

  6. 遗传算法解决旅行商问题(TSP)

    这次的文章是以一份报告的形式贴上来,代码只是简单实现,难免有漏洞,比如循环输入的控制条件,说是要求输入1,只要输入非0就行.希望会帮到以后的同学(*^-^*) 一.问题描述 旅行商问题(Traveli ...

  7. struts2跳转类型解析

    struts 2 跳转类型 1.dispatcher  dispatcher 为默认跳转类型.用于返回一个视图资源 xml代码 : <result name="success" ...

  8. android CheckBox RadioButton 照片和文字的间距问题

    利用自身的定义CheckBox 要么RadioButton时间.定义自己的图标和文字在不同的手机显示不同的音高.有时不太好控制,下面是我自己的定义CheckBox: 在Layout在下面xml: &l ...

  9. python中and和or的使用方法

    今天看了一个源代码,甚是对python不解,于是查了下资料,只是纠正下网上的老兄的解释 python 中的and从右到左计算表达式.若全部值均为真,则返回最后一个值.若存在假,返回第一个假值. or是 ...

  10. jQuery整理笔记5----jQuery大事

    一.大事 1.载入中DOM $(document).ready() 这个第一节里具体介绍了 2.事件绑定 jQuery定义了bind()方法作为统一的接口.用来为每个匹配元素绑定事件处理程序.其基本的 ...