it is suggested that you usegraphics.InterpolationMode =
System.Drawing.Drawing2D.InterpolationMode.High;
graphics.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality;see (never tested, so don't know if it works):
http://groups.google.com/groups?q=GetThumbnailImage+high+resolution&hl=en&lr=&ie=UTF-8&oe=UTF-8&selm=OC6Oj2F%24CHA.2208%40TK2MSFTNGP12.phx.gbl&rnum=3

解决方案 »

  1.   

    //原始图片名称
    string originalFilename = "c:\\222.jpg";
    //生成的高质量图片名称
    string strGoodFile = "c:\\222-small-good.jpg";
    //生成的低质量图片名称
    string strBadFile = "c:\\222-small-bad.jpg";
    //缩小的倍数
    int iScale = 3;

    //从文件取得图片对象
    System.Drawing.Image image = System.Drawing.Image.FromFile(originalFilename);
    //取得图片大小
    System.Drawing.Size size = new Size(image.Width / iScale , image.Height / iScale);
    //新建一个bmp图片
    System.Drawing.Image bitmap = new System.Drawing.Bitmap(size.Width,size.Height);
    //新建一个画板
    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.Blue);
    //在指定位置画图
    g.DrawImage(image, new System.Drawing.Rectangle(0, 0, bitmap.Width, bitmap.Height), 
    new System.Drawing.Rectangle(0, 0, image.Width,image.Height),
    System.Drawing.GraphicsUnit.Pixel);
    //保存高清晰度的缩略图
    bitmap.Save(strGoodFile, System.Drawing.Imaging.ImageFormat.Jpeg);
    //取得原图像的普通缩略图
    System.Drawing.Image img = image.GetThumbnailImage(image.Width / iScale, image.Height / iScale, null, IntPtr.Zero);
    //保存普通缩略图
    img.Save(strBadFile, System.Drawing.Imaging.ImageFormat.Jpeg);

    g.Dispose();
    MessageBox.Show("生成完毕");
      

  2.   

    你用Photoshop缩小它试一下看看?效果会好多少//设置高质量插值法
    g.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.High;
    这个还有几个Mode,有三次插值什么的,但我试了,效果都一样
      

  3.   

    Lossless JPEG Rewrites in C#http://www.eggheadcafe.com/articles/20030706.asp
      

  4.   

    如果仅仅是显示出来(而且不用放在internet上面的话 你就可以不考虑带宽问题) 你就没有必要费这么大的功夫,直接显示小图就ok了,但如果是要缩小显示的话 你可以随便找一个关于图像处理的书或者网上down一个其它语言写得源代码自己转换成你需要的就ok.