我有imageresizing.net创意版, 我从imageresizing.net下载了免费版本。
我想使用来自c#代码的WhitespaceTrimmer插件,dint能够找到任何简单的样本,可以任何身体帮助任何简单的例子
我下载的版本有源代码,并找到了一些WhitespaceTrimmer的代码,但这似乎并不完整。
我是否需要单独下载创意版?
编辑
我尝试了这段代码,但没效果
System.IO.Stream stream = new System.IO.MemoryStream();
ImageBuilder.Current.Build(new ImageJob(orgimg, stream, new Instructions("trim.threshold=80&trim.percentpadding=0.5"), false, true));
orgimg = new Bitmap(stream);
我也将代码更改为
ImageBuilder.Current.Build(new ImageJob(orgimg, stream, new Instructions("trim.threshold=80&trim.percentpadding=0.5")));
但没有效果。类似的图像正在产生。这个功能之后。 感谢
答案 0 :(得分:0)
全部ImageResizer plugins and the complete source is on GitHub,也包含在下载中。
与所有ImageResizer插件一样,the WhitespaceTrimmer functionality activates based on querystring commands。如果你从代码隐藏中使用它们,你只需在那里构造一个查询字符串,如下所示:
ImageBuilder.Current.Build("~/images/source.jpg","~/images/dest.jpg",
new Instructions("trim.threshold=80&trim.percentpadding=0.5"));