裁剪图像

时间:2012-01-06 06:16:51

标签: c# asp.net

我要求裁剪图像并将其保存在数据库中。 当用户上传他/她的照片时,首先由该原始图像制作大尺寸图像。 然后裁剪大图像并将其保存为拇指图像。 因此有3种尺寸:原始尺寸(需要由用户裁剪),拇指图像。

所以我在互联网上找到了一个可以进行裁剪的控件。 http://webcropimage.codeplex.com/releases/view 这是用于制作原始大图像的代码

public static byte[] MakeThumb(byte[] fullsize, int maxwidth)
    {
        Image iOriginal, iThumb;
        double scale;

        iOriginal = Image.FromStream(new MemoryStream(fullsize));
        if (iOriginal.Width > maxwidth)
        {
            scale = iOriginal.Width / maxwidth;
            int newheight = Convert.ToInt32(iOriginal.Height / scale);
            iThumb = new Bitmap(iOriginal, maxwidth, newheight);
            MemoryStream m = new MemoryStream();
            iThumb.Save(m, System.Drawing.Imaging.ImageFormat.Jpeg);
            return m.GetBuffer();
        }
        else
        {
            return fullsize;
        }
    }

生成大图像后,需要对其进行裁剪。这是我用来裁剪图像的代码/ dll

<asp:Button ID="btnCrop" runat="server" Text="Crop" onclick="btnCrop_Click" />

 <cs:CropImage ID="wci1" runat="server" 
            Image="Image1"            
            MinSize="100,100"
            MaxSize="150,150"
            W="150"
            H="150"
             />      

protected void btnCrop_Click(object sender, EventArgs e)
    {

        /* thats the method to crop and save the image.*/
        wci1.Crop(Server.MapPath("images/cropped.jpg"));

        /*
         this part is just to show the image after its been cropped and saved! so focus on just the code above.
         */
        Image img = new Image();
        img.ImageUrl = "images/cropped.jpg?rnd=" + (new Random()).Next(); // added random for caching issue.
        this.Controls.Add(img);
    }

wci1.Crop(Server.MapPath(“images / cropped.jpg”))将images / cropped.jpg作为参数。 我应该如何更改代码,以便它需要一个大图像而不是“images / cropped.jpg” 我的意思是这样的:wci1.Crop(Server.MapPath(largeimage)。

提前谢谢你 太阳

1 个答案:

答案 0 :(得分:0)

将大版本保存到磁盘,然后在方法中引用它。

然后您可以使用

File.IO.Delete

之后将其删除。