0

我的 MVC4 项目中有一个页面,用户可以使用文件上传控件添加其公司徽标。然后,这些图像/徽标会显示在移动应用程序的地图上。我们需要裁剪这些图像,使它们看起来像旗帜。

在此处输入图像描述

我们只需要在标志框架内获取图像的一部分,其余的就可以了。

  1. 可以使用 C# 中的代码来完成吗?
  2. 如果是,如何做到。请帮助我提供一些代码示例和链接。
  3. 我需要在上传的图像上显示一个标志框架,以便用户可以在该框架中调整它的图像,它想要在框架中是什么。

请向我推荐一些 API 和代码示例。

谢谢。

更新:在某些网站中,当我们上传个人资料图片时,它会在顶部给我们一个框架,我们可以移动我们选择的图像,以便所需的部分进入该框架。现在,当我们上传个人资料图片时,它会调整为该大小。我可以在这里做类似的事情吗?在上面的框架中,我可以给出一个标志形状,用户可以移动上传的图像,以获得该框架中所需的图像部分。这是正确的方法吗?我们应该怎么做?我查看了一些 jquery 代码示例,但没有帮助。

4

2 回答 2

1

您可以使用带有 Region 作为参数的 SetClip 函数:

https://msdn.microsoft.com/en-us/library/x1zb278e(v=vs.110).aspx

因此,您需要从 Bitmap 创建 Graphics 对象,使用标志的形状设置剪辑,然后在该 Graphics 对象上绘制图像。就这样。

于 2015-11-20T08:33:35.873 回答
0
  // Following code derives a cutout bitmap using a
  // scizzor path as a clipping region (like Paint would do)
  // Result bitmap has a minimal suitable size, pixels outside 
  // the clipping path will be white.

  public static Bitmap ApplyScizzors(Bitmap bmpSource, List<PointF> pScizzor)
    {
        GraphicsPath graphicsPath = new GraphicsPath();   // specified Graphicspath          
        graphicsPath.AddPolygon(pScizzor.ToArray());      // add the Polygon
        var rectCutout = graphicsPath.GetBounds();        // find rectangular range           
        Matrix m = new Matrix();
        m.Translate(-rectCutout.Left, -rectCutout.Top);   // translate clip to (0,0)
        graphicsPath.Transform(m);
        Bitmap bmpCutout = new Bitmap((int)(rectCutout.Width), (int)(rectCutout.Height));  // target
        Graphics graphicsCutout = Graphics.FromImage(bmpCutout);
        graphicsCutout.Clip = new Region(graphicsPath);
        graphicsCutout.DrawImage(bmpSource, (int)(-rectCutout.Left), (int)(-rectCutout.Top)); // draw
        graphicsPath.Dispose();
        graphicsCutout.Dispose();
        return bmpCutout;
    }
于 2020-02-24T22:33:10.573 回答