gpt4 book ai didi

c# - 我想从数据库中检索图像并根据用户需要裁剪它

转载 作者:行者123 更新时间:2023-11-30 18:04:58 26 4
gpt4 key购买 nike

我想裁剪从数据库中检索到的照片,我已完成以下操作以从数据库中检索图像

protected void Page_Load(object sender, EventArgs e)
{
MemoryStream stream = new MemoryStream();
SqlConnection connection = new SqlConnection(@"Data Source=localhost;Initial Catalog=card;User Id=sa;Password=db2admin;");
try
{
connection.Open();
SqlCommand command = new SqlCommand("select Photo from iffcar", connection);
byte[] image = (byte[])command.ExecuteScalar();
stream.Write(image, 0, image.Length);
Bitmap bitmap = new Bitmap(stream);
Response.ContentType = "image/gif";
bitmap.Save(Response.OutputStream, ImageFormat.Jpeg);
}
catch (Exception ee)
{
connection.Close();
stream.Close();
HttpContext.Current.Response.Write(ee.Message);
}
}

检索到的图像显示在浏览器中。

现在我被困在如何裁剪这个图像上,我想让用户裁剪从数据库中检索到的图像并将裁剪后的图像存储到 Crystal 报表上。

这可能吗?如果是这样,是否有任何教程或帮助可以指导我达到我的最终要求。请帮助我了解如何继续我的查询

最佳答案

查看 GDI+ 库以及 System.Drawing 命名空间。您还可以使用 Windows 图像组件。

Here's a basic walk-through .

关于c# - 我想从数据库中检索图像并根据用户需要裁剪它,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5961981/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com