- 浏览: 196417 次
- 性别:
- 来自: 长沙
文章分类
最新评论
-
在世界的中心呼喚愛:
思路很好
连连看全局消除算法 -
tianaozhu:
请问,我修改了词库和源文件怎么就不好用了, 我源文件是: My ...
自己动手开发翻译软件(Java版) -
Arlrn:
博主你好,最近在学习排序算法,看了你的博客,你的直接插入排序, ...
各种排序算法的实现及其比较 -
sharong:
有一个明显错误,很显然冒泡排序的时间复杂度是O(n^2)
各种排序算法的实现及其比较 -
julydave:
希尔排序不太对吧。。
各种排序算法的实现及其比较
页面调用:aspx.cs //上传文件 if (FileUpload1.HasFile) 在页面调用的中转方法: /// <summary> //--------------------------------- //主类详细代码-2007年9月24日 jace using System; // System.Drawing.Image image = System.Drawing.Image.FromFile(imgFile); } /// <summary> //新建一个画板 //设置高质量插值法 //设置高质量,低速度呈现平滑程度 //清空画布并以透明背景色填充 //在指定位置并且按指定大小绘制原图片的指定部分 //System.Drawing.Graphics g = System.Drawing.Graphics.FromImage(oImg); //string mpath = @"E:projectweb_pos_Newimagesqtk.png"; //Server.MapPath("\images\qtk.png");// //MemoryStream MemStream = new MemoryStream(); //oImg.Save(MemStream, GetImageType(strContentType)); //bitmap.Save(MemStream, GetImageType(strContentType)); //string mp = Server.MapPath("1.jpg");//不适合单独在一个类中,可放于aspx.cs页中使用 //保存缩略图位置的目录是否存在 bitmap.Save(thumbSaveFile, System.Drawing.Imaging.ImageFormat.Jpeg); int towidth = width; int x = 0; switch (mode) //新建一个bmp图片 //新建一个画板 //设置高质量插值法 //设置高质量,低速度呈现平滑程度 //清空画布并以透明背景色填充 //在指定位置并且按指定大小绘制原图片的指定部分 try if ((ushort)crSize.Width < (ushort)_width) float xpos = 0; switch (_watermarkPosition) StringFormat StrFormat = new StringFormat(); SolidBrush semiTransBrush2 = new SolidBrush(Color.FromArgb(153, 0, 0, 0)); SolidBrush semiTransBrush = new SolidBrush(Color.FromArgb(153, 255, 255, 255)); System.Drawing.Imaging.ImageAttributes imageAttributes = new System.Drawing.Imaging.ImageAttributes(); colorMap.OldColor = Color.FromArgb(255, 0, 255, 0); imageAttributes.SetRemapTable(remapTable, ColorAdjustType.Bitmap); float[][] colorMatrixElements = { System.Drawing.Imaging.ColorMatrix colorMatrix = new System.Drawing.Imaging.ColorMatrix(colorMatrixElements); imageAttributes.SetColorMatrix(colorMatrix, ColorMatrixFlag.Default, ColorAdjustType.Bitmap); //} // if ((_width < watermark.Width * 4) && (_height > watermark.Height * 4)) // } // } // } try System.Drawing.Image image = System.Drawing.Image.FromFile(oldpath); if ((image.Width <= image.Height) && (tWidth <= tHeight)) } } b.Save(newpath); } 转自:http://blog.163.com/alex_kame/blog/static/14546748200972953344109/
{
isupload = mycomm.uploadThumbToServer(FileUpload1, strUpPath + "\" + tmpRdFile, this);
}
/// 将图片以缩略图+水印的方式上传
/// </summary>
/// <param name="FileUpload1">要上传的对象</param>
/// <param name="warteImage">水印图片路径</param>
/// <param name="thumbImage">缩略图存储位置</param>
/// <returns></returns>
public static bool uploadThumbToServer(FileUpload FileUpload1,string warteImage,string thumbImage)
{
HttpPostedFile MyPostedFile = FileUpload1.PostedFile;
if (MyPostedFile.ContentType.ToString().ToLower().IndexOf("image") < 0)
{
return false;
}
return images.GetThumbNail(MyPostedFile.FileName, 320, 240,
MyPostedFile.ContentType.ToString(), false, MyPostedFile.InputStream, warteImage, thumbImage);
}
public static bool uploadThumbToServer(FileUpload FileUpload1, string thumbImage, Page pg)
{
string warteImage = pg.Server.MapPath("\images\qtk.png");//水印图
thumbImage = pg.Server.MapPath(thumbImage);
return uploadThumbToServer(FileUpload1, warteImage, thumbImage);
}
using System.Data;
using System.IO;
using System.Drawing;
using System.Drawing.Imaging;
using System.Drawing.Drawing2D;
/// <summary>
/// images 的摘要说明
/// </summary>
public class images
{
public images()
{
//
// TODO: 在此处添加构造函数逻辑
//
}
/// <summary>
/// 图像文件imgFile的尺寸是否在imgWidth和imgHeight的控制范围外
/// </summary>
/// <param name="imgFile"></param>
/// <param name="imgWidth"></param>
/// <param name="imgHeight"></param>
/// <returns>width > imgWidth || height > imgHeight 返回真,反之</returns>
public static bool imageWH(string imgFile, int imgWidth, int imgHeight)
{
System.IO.FileStream fs = System.IO.File.Open(imgFile, System.IO.FileMode.Open, System.IO.FileAccess.Read);
System.Drawing.Image image = System.Drawing.Image.FromStream(fs);
int width = image.Width;
int height = image.Height;
if (width > imgWidth || height > imgHeight)
{
// this.lb_msg.Text = "图像尺寸为200x160,请调整后再上传";
return true;
}
else
{
return false;
}
/// <summary>
/// 取得图片的格式
/// </summary>
/// <param name="strContentType"></param>
/// <returns></returns>
private static System.Drawing.Imaging.ImageFormat GetImageType(object strContentType)
{
if ((strContentType.ToString().ToLower()) == "image/pjpeg")
{
return System.Drawing.Imaging.ImageFormat.Jpeg;
}
else if ((strContentType.ToString().ToLower()) == "image/gif")
{
return System.Drawing.Imaging.ImageFormat.Gif;
}
else if ((strContentType.ToString().ToLower()) == "image/bmp")
{
return System.Drawing.Imaging.ImageFormat.Bmp;
}
else if ((strContentType.ToString().ToLower()) == "image/tiff")
{
return System.Drawing.Imaging.ImageFormat.Tiff;
}
else if ((strContentType.ToString().ToLower()) == "image/x-icon")
{
return System.Drawing.Imaging.ImageFormat.Icon;
}
else if ((strContentType.ToString().ToLower()) == "image/x-png")
{
return System.Drawing.Imaging.ImageFormat.Png;
}
else if ((strContentType.ToString().ToLower()) == "image/x-emf")
{
return System.Drawing.Imaging.ImageFormat.Emf;
}
else if ((strContentType.ToString().ToLower()) == "image/x-exif")
{
return System.Drawing.Imaging.ImageFormat.Exif;
}
else if ((strContentType.ToString().ToLower()) == "image/x-wmf")
{
return System.Drawing.Imaging.ImageFormat.Wmf;
}
else
{
return System.Drawing.Imaging.ImageFormat.MemoryBmp;
}
}
/// 生成高质量缩略图并加入透明图片水印
/// </summary>
/// <param name="strFileName">原始图片的文件名(全路径)</param>
/// <param name="iWidth">生成缩略图的宽</param>
/// <param name="iheight">生成缩略图的高</param>
/// <param name="strContentType">原始图片文件的文件类型</param>
/// <param name="blnGetFromFile">原始图来源于文件还是文件流,True=文件,False=流</param>
/// <param name="ImgStream">原始图片的文件流</param>
/// <param name="warteFile">水印文件的文件名(全路径)</param>
/// <param name="thumbSaveFile">生成的缩略图保存的位置(jpg格式)</param>
/// <returns>true=上传成功,false=失败</returns>
public static bool GetThumbNail(string strFileName, int iWidth, int iheight,
string strContentType, bool blnGetFromFile, System.IO.Stream ImgStream,
string warteFile, string thumbSaveFile)
{
try
{
if (!System.IO.File.Exists(strFileName))
{
return false;//原始文件不存在
}
System.Drawing.Image oImg;
#region 原始图来源于文件还是文件流
if (blnGetFromFile)
{
oImg = System.Drawing.Image.FromFile(strFileName);
}
else
{
oImg = System.Drawing.Image.FromStream(ImgStream);
}
#endregion
#region 高质量缩略图
//新建一个bmp图片
System.Drawing.Image bitmap = new System.Drawing.Bitmap(iWidth, iheight);
Graphics g = System.Drawing.Graphics.FromImage(bitmap);
g.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.High;
g.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality;
g.Clear(Color.Transparent);
g.DrawImage(oImg, new Rectangle(0, 0, iWidth, iheight),
new Rectangle(0, 0, oImg.Width, oImg.Height),
GraphicsUnit.Pixel);
#endregion
#region 普通质量的缩略图
//oImg = oImg.GetThumbnailImage(iWidth, iheight, null, IntPtr.Zero);//此法生成的图片丢失颜色比较多
#endregion
#region 加入文字水印
////新建一个画板
//System.Drawing.Graphics g = System.Drawing.Graphics.FromImage(oImg);
//// new SolidBrush(Color.Red)
//g.DrawString("qiutianka.com", new Font("Arial Black", 80), new SolidBrush(Color.Red), 0, 0);
//g.Save();
//g.Dispose();
#endregion
#region 加入图片水印
//System.Drawing.Image image = System.Drawing.Image.FromFile(strFileName);
//Bitmap b = new Bitmap(oImg.Width, oImg.Height, PixelFormat.Format24bppRgb);
//Graphics g = Graphics.FromImage(b);
//g.Clear(Color.Transparent);
//g.SmoothingMode =System.Drawing.Drawing2D.SmoothingMode.HighQuality;
//g.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.High;
//g.DrawImage(oImg, 0, 0, oImg.Width, oImg.Height);
////string mpath = Server.MapPath("\images\qtk.png");//水印文件位置
//addWatermarkImage(g, mpath, "WM_BOTTOM_RIGHT", iWidth, iheight);// 可以加入枚举来定位
addWatermarkImage(g, warteFile, "WM_BOTTOM_RIGHT", iWidth, iheight);// 可以加入枚举来定位
#endregion
#region 预览显示
//b.Save(MemStream, GetImageType(strContentType));
//MemStream.WriteTo(Response.OutputStream);//不适合单独在一个类中,可放于aspx.cs页中使用
#endregion
#region 上传并保存
//上传
//string mp = Server.MapPath("1.jpg");
//oImg.Save(mp, System.Drawing.Imaging.ImageFormat.Jpeg);
//string mp = @"c:1.jpg";
//bitmap.Save(mp, System.Drawing.Imaging.ImageFormat.Jpeg);
string savedir = thumbSaveFile.Substring(0, thumbSaveFile.LastIndexOf('\'));
if (!System.IO.Directory.Exists(savedir))
{
//不存在就建立一个
System.IO.Directory.CreateDirectory(savedir);
}
return true;
}
catch
{
return false;
}
#endregion
}
/// <summary>
/// 仅生成缩略图-高质量
/// </summary>
/// <param name="originalImagePath">源图路径(物理路径)</param>
/// <param name="thumbnailPath">缩略图路径(物理路径)</param>
/// <param name="width">缩略图宽度</param>
/// <param name="height">缩略图高度</param>
/// <param name="mode">生成缩略图的方式</param>
public static void MakeThumbnail(string originalImagePath, string thumbnailPath, int width, int height, string mode)
{
System.Drawing.Image originalImage = System.Drawing.Image.FromFile(originalImagePath);
int toheight = height;
int y = 0;
int ow = originalImage.Width;
int oh = originalImage.Height;
{
case "HW"://指定高宽缩放(可能变形)
break;
case "W"://指定宽,高按比例
toheight = originalImage.Height * width / originalImage.Width;
break;
case "H"://指定高,宽按比例
towidth = originalImage.Width * height / originalImage.Height;
break;
case "Cut"://指定高宽裁减(不变形)
if ((double)originalImage.Width / (double)originalImage.Height > (double)towidth / (double)toheight)
{
oh = originalImage.Height;
ow = originalImage.Height * towidth / toheight;
y = 0;
x = (originalImage.Width - ow) / 2;
}
else
{
ow = originalImage.Width;
oh = originalImage.Width * height / towidth;
x = 0;
y = (originalImage.Height - oh) / 2;
}
break;
default:
break;
}
System.Drawing.Image bitmap = new System.Drawing.Bitmap(towidth, toheight);
System.Drawing.Graphics g = System.Drawing.Graphics.FromImage(bitmap);
g.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.High;
g.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality;
g.Clear(Color.Transparent);
g.DrawImage(originalImage, new Rectangle(0, 0, towidth, toheight),
new Rectangle(x, y, ow, oh),
GraphicsUnit.Pixel);
//加入文字水印
//g.DrawString("qiutianka.com", new Font("Courier New", 14), new SolidBrush(Color.Red), 0, 100);
{
//以jpg格式保存缩略图
bitmap.Save(thumbnailPath, System.Drawing.Imaging.ImageFormat.Jpeg);
}
catch (System.Exception e)
{
throw e;
}
finally
{
originalImage.Dispose();
bitmap.Dispose();
g.Dispose();
}
}
/// <summary>
/// 加水印文字
/// </summary>
/// <param name="picture">imge 对象</param>
/// <param name="_watermarkText">水印文字内容</param>
/// <param name="_watermarkPosition">水印位置</param>
/// <param name="_width">被加水印图片的宽</param>
/// <param name="_height">被加水印图片的高</param>
private static void addWatermarkText(Graphics picture, string _watermarkText, string _watermarkPosition, int _width, int _height)
{
int[] sizes = new int[] { 16, 14, 12, 10, 8, 6, 4 };
Font crFont = null;
SizeF crSize = new SizeF();
for (int i = 0; i < 7; i++)
{
crFont = new Font("arial", sizes[i], FontStyle.Bold);
crSize = picture.MeasureString(_watermarkText, crFont);
break;
}
float ypos = 0;
{
case "WM_TOP_LEFT":
xpos = ((float)_width * (float).01) + (crSize.Width / 2);
ypos = (float)_height * (float).01;
break;
case "WM_TOP_RIGHT":
xpos = ((float)_width * (float).99) - (crSize.Width / 2);
ypos = (float)_height * (float).01;
break;
case "WM_BOTTOM_RIGHT":
xpos = ((float)_width * (float).99) - (crSize.Width / 2);
ypos = ((float)_height * (float).99) - crSize.Height;
break;
case "WM_BOTTOM_LEFT":
xpos = ((float)_width * (float).01) + (crSize.Width / 2);
ypos = ((float)_height * (float).99) - crSize.Height;
break;
}
StrFormat.Alignment = StringAlignment.Center;
picture.DrawString(_watermarkText, crFont, semiTransBrush2, xpos + 1, ypos + 1, StrFormat);
picture.DrawString(_watermarkText, crFont, semiTransBrush, xpos, ypos, StrFormat);
semiTransBrush2.Dispose();
semiTransBrush.Dispose();
}//代码已经修改,可以按比率还填加图片水印,不过如果背景图片和水印图片太不成比率的话(指水印图片要大于背景图片的1/4),出来的效果不是很好。
/// <summary>
/// 加水印图片
/// </summary>
/// <param name="picture">imge 对象</param>
/// <param name="WaterMarkPicPath">水印图片的地址</param>
/// <param name="_watermarkPosition">水印位置</param>
/// <param name="_width">被加水印图片的宽</param>
/// <param name="_height">被加水印图片的高</param>
private static void addWatermarkImage(Graphics picture, string WaterMarkPicPath, string _watermarkPosition, int _width, int _height)
{
System.Drawing.Image watermark = new System.Drawing.Bitmap(WaterMarkPicPath);
System.Drawing.Imaging.ColorMap colorMap = new System.Drawing.Imaging.ColorMap();
colorMap.NewColor = Color.FromArgb(0, 0, 0, 0);
System.Drawing.Imaging.ColorMap[] remapTable = { colorMap };
new float[] {1.0f, 0.0f, 0.0f, 0.0f, 0.0f},
new float[] {0.0f, 1.0f, 0.0f, 0.0f, 0.0f},
new float[] {0.0f, 0.0f, 1.0f, 0.0f, 0.0f},
new float[] {0.0f, 0.0f, 0.0f, 0.3f, 0.0f},
new float[] {0.0f, 0.0f, 0.0f, 0.0f, 1.0f}
};
//设置水印图片中被透明的色值,low=hight
imageAttributes.SetColorKey(Color.Black, Color.Black, ColorAdjustType.Bitmap);
int xpos = 0;
int ypos = 0;
int WatermarkWidth = 0;
int WatermarkHeight = 0;
double bl = 1d;//默认比率=1,不进行水印的大小改变,而直接使用水印图真实大小加入背景
#region 计算水印图片的比率
//取背景的1/4宽度来比较
//if ((_width > watermark.Width * 4) && (_height > watermark.Height * 4))
//{
// bl = 1;
//}
//else if ((_width > watermark.Width * 4) && (_height < watermark.Height * 4))
//{
// bl = Convert.ToDouble(_height / 4) / Convert.ToDouble(watermark.Height);
//else
// {
// bl = Convert.ToDouble(_width / 4) / Convert.ToDouble(watermark.Width);
// }
// else
// {
// if ((_width * watermark.Height) > (_height * watermark.Width))
// {
// bl = Convert.ToDouble(_height / 4) / Convert.ToDouble(watermark.Height);
// else
// {
// bl = Convert.ToDouble(_width / 4) / Convert.ToDouble(watermark.Width);
#endregion
WatermarkWidth = Convert.ToInt32(watermark.Width * bl);
WatermarkHeight = Convert.ToInt32(watermark.Height * bl);
#region 水印在背景图中的位置
switch (_watermarkPosition)
{
case "WM_TOP_LEFT":
xpos = 10;
ypos = 10;
break;
case "WM_TOP_RIGHT":
xpos = _width - WatermarkWidth - 10;
ypos = 10;
break;
case "WM_BOTTOM_RIGHT":
xpos = _width - WatermarkWidth - 10;
ypos = _height - WatermarkHeight - 10;
break;
case "WM_BOTTOM_LEFT":
xpos = 10;
ypos = _height - WatermarkHeight - 10;
break;
}
#endregion
picture.DrawImage(watermark, new Rectangle(xpos, ypos, WatermarkWidth, WatermarkHeight), 0, 0, watermark.Width, watermark.Height, GraphicsUnit.Pixel, imageAttributes);
watermark.Dispose();
imageAttributes.Dispose();
}
#region 直接将本地的图片生成缩略图
/// <summary>
/// 直接将本地的图片生成缩略图(不加水印,不进行文件类型处理),
/// 并存放于新位置(换个用法也可以在Asp.net中使用)
/// 2007年9月24日 14时42分45秒 jace未调试
/// </summary>
/// <param name="oldpath">原图片地址</param>
/// <param name="newpath">新图片地址</param>
/// <param name="tWidth">缩略图的宽</param>
/// <param name="tHeight">缩略图的高</param>
public static void GreateMiniImage(string oldpath, string newpath, int tWidth, int tHeight)
{
{
double bl = 1d;
if ((image.Width <= image.Height) && (tWidth >= tHeight))
{
bl = Convert.ToDouble(image.Height) / Convert.ToDouble(tHeight);
}
else if ((image.Width > image.Height) && (tWidth < tHeight))
{
bl = Convert.ToDouble(image.Width) / Convert.ToDouble(tWidth);
}
else
{
if (image.Height / tHeight >= image.Width / tWidth)
{
bl = Convert.ToDouble(image.Width) / Convert.ToDouble(tWidth);
}
else
{
bl = Convert.ToDouble(image.Height) / Convert.ToDouble(tHeight);
}
}
else
{
if (image.Height / tHeight >= image.Width / tWidth)
{
bl = Convert.ToDouble(image.Height) / Convert.ToDouble(tHeight);
else
{
bl = Convert.ToDouble(image.Width) / Convert.ToDouble(tWidth);
}
Bitmap b = new Bitmap(image, Convert.ToInt32(image.Width / bl), Convert.ToInt32(image.Height / bl));
b.Dispose();
image.Dispose();
}
catch
{
}
#endregion
}
发表评论
-
visual studio 中使用svn连接到googlecode服务器
2011-03-23 15:54 1408到http://ankhsvn.open.collab.net ... -
.Net后台调用前台js的两种方法
2011-02-16 15:24 4013第一种,在页面的时候调用: cs后台代码: ... -
C# 在桌面程序里集成webbrowser和Ext
2010-11-28 11:15 2620这些天 一直在赶项目,所以也没什么时间写博客。今天抽出一点点空 ... -
C#简单地读取文件
2010-11-17 15:02 907用C#来读取文件 首先new 一个File类 FileSt ... -
做项目时遇到的几个关于C#和SQL的细节问题(二)
2010-10-17 21:57 9146、js中的中文显示到页面上时,一般都会乱码,解决办法: & ... -
做项目时遇到的几个关于C#和SQL的细节问题(一)
2010-10-17 03:36 7721、把一个字符串表示的浮点数四舍五入成int型: ( ... -
gridview中时间格式问题
2010-10-16 01:59 1853<asp:GridView ID="Gr ...
相关推荐
c# 生成图片缩略图
本文将深入探讨如何使用C#进行批量生成缩略图,并结合提供的代码资源——"Thumbnail.cs"和"Thumbnail.dll",分析其实现方式。 首先,我们要理解什么是缩略图。缩略图是一种较小尺寸的图片,通常用于预览或节省存储...
"C#生成缩略图" C#生成缩略图是指使用C#语言生成图片的缩略图,缩略图是指将原图片按比例缩小,并将空白处用指定颜色填充,并为缩略图加上边框。下面是关于C#生成缩略图的知识点: 1. 图片按比例缩小:在生成缩略...
当我们谈论"C#批量生成缩略图,指定位置图片位置"时,这个主题涉及到图像处理和文件操作,是C#编程中常见但又具有挑战性的任务。在实际应用中,例如在网站开发、照片库管理软件或者多媒体应用程序中,都需要对大量...
综上所述,C#中的图像处理涵盖了从基本的读取、绘制到复杂的缩略图生成和水印添加等多个方面,开发者可以根据需求灵活选择合适的工具和技术进行操作。在实际项目中,应结合性能、可扩展性和版权等因素综合考虑。
利用C#语言生成图片的缩略图,有需要可以参考一下。
C#把Word和Excel生成缩略图示例代码-附带Aspose.Cells和Aspose.Words插件 使用 Aspose.Cells 生成Excel缩略图 使用 Aspose.Words 生成Word缩略图 项目中 bin目录下的 Aspose.Cells.dll 和 Aspose.Words.dll 是可...
在C#编程语言中,处理图像文件和生成缩略图是一项常见的需求,尤其是在涉及图形用户界面(GUI)的应用程序开发中。以下是对“C#中打开文件和自动生成缩略图”这一主题的深入解析,涵盖了如何使用C#中的Winforms来...
### C#实现生成缩略图并保存到临时区 在现代Web开发中,图片处理是一项常见且重要的任务。尤其在需要快速预览或减少图片加载时间的应用场景中,生成缩略图变得尤为关键。本文将详细介绍如何使用C#语言来实现生成...
如果是一个程序,它可能已经封装了上述流程,用户只需要输入网站URL和设置参数即可生成缩略图。如果是代码库,那么开发者需要了解如何集成到自己的项目中,并根据需要进行定制。 在实际应用中,生成网站缩略图可能...
根据提供的代码片段,我们可以详细解析如何在C#中实现一个生成缩略图的函数,以及该函数背后的逻辑和技术要点。 ### 标题解析:“C# 生成缩略图函数” 此标题明确指出函数的目的:使用C#编程语言来生成图像的缩略...
总结起来,C#提供了强大的图像处理能力,能够轻松实现图片的缩略图生成和水印添加。在实际项目中,这些功能可以进一步优化,比如添加错误处理、支持多种图片格式、自定义缩略图和水印样式等,以满足不同需求。了解并...
本篇文章将深入探讨如何使用C#编程语言来实现这个功能,主要围绕标题"**C#载取网页生成缩略图**"展开,结合描述中的关键词"网页生成图片"、"网页快照"、"网页抓图"、"网页载图"和"页面缩略图",以及压缩包中的文件`...
原类生成的缩略图的问题在于:高或者宽可能会大于需求值。比如,我需要的图片宽为150,高为120,当原图 * 高为150,宽为150或差距不大时,生成的图片不会有变化,即也是高150,宽150,这样,当把这些图片显示到网页...
在C#编程中,加载文件夹并实现缩略图显示是一项常见的需求,特别是在开发桌面应用或者图片管理软件时。这个任务通常涉及到Windows API调用、Shell32库以及图像处理技术。下面我们将深入探讨如何使用C#来实现这一功能...
"C#编写的缩略图的缓存"这个主题涉及到如何利用C#来生成缩略图,并将其存储在本地文件系统中,以提高应用程序的性能和用户体验。 首先,让我们了解什么是缩略图。缩略图是原始图像的较小版本,通常用于预览或快速...
本文将深入探讨如何使用C#实现高效且不失真的图片上传和缩略图生成方法,主要关注`SaveImage`函数及其优化策略。 首先,让我们了解`SaveImage`函数的基本概念。在C#中,我们通常会使用System.Drawing命名空间中的...
C#默认的缩略图生成可能会使用简单的像素复制,导致质量下降,因此在实现时可能需要自定义缩放算法。 4. **性能优化**: 当处理大量图像时,性能优化至关重要。这可能包括使用异步操作,避免不必要的内存分配,...
本篇文章将详细介绍如何使用WPF中的pictureBox控件结合C#来实现DWG文件的缩略图生成。 首先,我们需要了解pictureBox控件。pictureBox是WPF中用于显示图像的常用控件,可以显示多种格式的图片,如.jpg、.png等。...