C#实现3D效果完整实例

本文实例讲述了C#实现3D效果的方法。分享给大家供大家参考,具体如下:

一、新建一类文件

private static double[] addVector(double[] a, double[] b)
{
    return new double[] { a[0] + b[0], a[1] + b[1], a[2] + b[2] };
}
private static double[] scalarProduct(double[] vector, double scalar)
{
    return new double[] { vector[0] * scalar, vector[1] * scalar, vector[2] * scalar };
}
private static double dotProduct(double[] a, double[] b)
{
    return a[0] * b[0] + a[1] * b[1] + a[2] * b[2];
}
private static double norm(double[] vector)
{
    return Math.Sqrt(dotProduct(vector, vector));
}
private static double[] normalize(double[] vector)
{
    return scalarProduct(vector, 1.0 / norm(vector));
}
private static double[] crossProduct(double[] a, double[] b)
{
    return new double[]
        {
          (a[1] * b[2] - a[2] * b[1]),
          (a[2] * b[0] - a[0] * b[2]),
          (a[0] * b[1] - a[1] * b[0])
        };
}
private static double[] vectorProductIndexed(double[] v, double[] m, int i)
{
    return new double[]
        {
          v[i + 0] * m[0] + v[i + 1] * m[4] + v[i + 2] * m[8] + v[i + 3] * m[12],
          v[i + 0] * m[1] + v[i + 1] * m[5] + v[i + 2] * m[9] + v[i + 3] * m[13],
          v[i + 0] * m[2] + v[i + 1] * m[6] + v[i + 2] * m[10]+ v[i + 3] * m[14],
          v[i + 0] * m[3] + v[i + 1] * m[7] + v[i + 2] * m[11]+ v[i + 3] * m[15]
        };
}
private static double[] vectorProduct(double[] v, double[] m)
{
    return vectorProductIndexed(v, m, 0);
}
private static double[] matrixProduct(double[] a, double[] b)
{
    double[] o1 = vectorProductIndexed(a, b, 0);
    double[] o2 = vectorProductIndexed(a, b, 4);
    double[] o3 = vectorProductIndexed(a, b, 8);
    double[] o4 = vectorProductIndexed(a, b, 12);
    return new double[]
        {
          o1[0], o1[1], o1[2], o1[3],
          o2[0], o2[1], o2[2], o2[3],
          o3[0], o3[1], o3[2], o3[3],
          o4[0], o4[1], o4[2], o4[3]
        };
}
private static double[] cameraTransform(double[] C, double[] A)
{
    double[] w = normalize(addVector(C, scalarProduct(A, -1)));
    double[] y = new double[] { 0, 1, 0 };
    double[] u = normalize(crossProduct(y, w));
    double[] v = crossProduct(w, u);
    double[] t = scalarProduct(C, -1);
    return new double[]
        {
          u[0], v[0], w[0], 0,
          u[1], v[1], w[1], 0,
          u[2], v[2], w[2], 0,
          dotProduct(u, t), dotProduct(v, t), dotProduct(w, t), 1
        };
}
private static double[] viewingTransform(double fov, double n, double f)
{
    fov *= (Math.PI / 180);
    double cot = 1.0 / Math.Tan(fov / 2);
    return new double[] { cot, 0, 0, 0, 0, cot, 0, 0, 0, 0, (f + n) / (f - n), -1, 0, 0, 2 * f * n / (f - n), 0 };
}
public static Image Generate(string captchaText)
{
    int fontsize = 24;
    Font font = new Font("Arial", fontsize);
    SizeF sizeF;
    using (Graphics g = Graphics.FromImage(new Bitmap(1, 1)))
    {
      sizeF = g.MeasureString(captchaText, font, 0, StringFormat.GenericDefault);
    }
    int image2d_x = (int)sizeF.Width;
    int image2d_y = (int)(fontsize * 1.3);
    Bitmap image2d = new Bitmap(image2d_x, image2d_y);
    Color black = Color.Black;
    Color white = Color.White;
    using (Graphics g = Graphics.FromImage(image2d))
    {
      g.Clear(black);
      g.DrawString(captchaText, font, Brushes.White, 0, 0);
    }
    Random rnd = new Random();
    double[] T = cameraTransform(new double[] { rnd.Next(-90, 90), -200, rnd.Next(150, 250) }, new double[] { 0, 0, 0 });
    T = matrixProduct(T, viewingTransform(60, 300, 3000));
    double[][] coord = new double[image2d_x * image2d_y][];
    int count = 0;
    for (int y = 0; y < image2d_y; y += 2)
    {
      for (int x = 0; x < image2d_x; x++)
      {
        int xc = x - image2d_x / 2;
        int zc = y - image2d_y / 2;
        double yc = -(double)(image2d.GetPixel(x, y).ToArgb() & 0xff) / 256 * 4;
        double[] xyz = new double[] { xc, yc, zc, 1 };
        xyz = vectorProduct(xyz, T);
        coord[count] = xyz;
        count++;
      }
    }
    int image3d_x = 256;
    int image3d_y = image3d_x * 9 / 16;
    Bitmap image3d = new Bitmap(image3d_x, image3d_y);
    Color fgcolor = Color.White;
    Color bgcolor = Color.Black;
    using (Graphics g = Graphics.FromImage(image3d))
    {
      g.Clear(bgcolor);
      count = 0;
      double scale = 1.75 - (double)image2d_x / 400;
      for (int y = 0; y < image2d_y; y += 2)
      {
        for (int x = 0; x < image2d_x; x++)
        {
          if (x > 0)
          {
            double x0 = coord[count - 1][0] * scale + image3d_x / 2;
            double y0 = coord[count - 1][1] * scale + image3d_y / 2;
            double x1 = coord[count][0] * scale + image3d_x / 2;
            double y1 = coord[count][1] * scale + image3d_y / 2;
            g.DrawLine(new Pen(fgcolor), (float)x0, (float)y0, (float)x1, (float)y1);
          }
          count++;
        }
      }
    }
    return image3d;
}

注意引用命名空间:

using System.Drawing;

二、页面调用

Response.ContentType = "image/pjpeg";
Captcha.Generate("我就是3D内容").Save(Response.OutputStream, System.Drawing.Imaging.ImageFormat.Jpeg);

更多关于C#相关内容感兴趣的读者可查看本站专题:《C#常见控件用法教程》、《WinForm控件用法总结》、《C#数据结构与算法教程》、《C#面向对象程序设计入门教程》及《C#程序设计之线程使用技巧总结》

希望本文所述对大家C#程序设计有所帮助。

(0)

相关推荐

  • C#利用GDI+绘制旋转文字等效果实例

    本文实例讲述了C#利用GDI+绘制旋转文字等效果的方法,是非常实用的技巧.分享给大家供大家参考之用.具体如下: C#中利用GDI+绘制旋转文本的文字,网上有很多资料,基本都使用矩阵旋转的方式实现.但基本都只提及按点旋转,若要实现在矩形范围内旋转文本,资料较少.经过琢磨,可以将矩形内旋转转化为按点旋转,不过需要经过不少的计算过程.利用下面的类可以实现该功能. 具体实现代码如下: using System; using System.Collections.Generic; using System

  • C#实现闪动托盘图标效果的方法

    本文实例讲述了C#实现闪动托盘图标效果的方法.分享给大家供大家参考,具体如下: 在用户正在登录QQ或者使用Firemail邮件系统自动收取邮件的时候,托盘图标会闪动提示用户正在运行的任务. 闪动图标可以使用定时切换托盘图标的方式实现,托盘图标可以从ImageList控件中获取.在ImageList控件里面添加三个icon,第一个icon表示窗体启动以后的托盘图标.第二个和第三个图标分别表示当特定的任务发生的时候,定时切换的图标. (1)设置托盘的图标可以从ImageList控件中的Image对象

  • C#实现窗体淡入淡出效果的方法总结

    1. 复制代码 代码如下: private   void   Form1_Load(object   sender,   System.EventArgs   e)     for(double   d=0.01;   d<   1;   d+=0.02)     {     System.Threading.Thread.Sleep(1);     Application.DoEvents();     this.Opacity=d;     this.Refresh();     } 2.

  • C#图像处理之霓虹效果实现方法

    本文实例讲述了C#图像处理之霓虹效果实现方法.分享给大家供大家参考.具体如下: //定义霓虹处理函数 public Bitmap PNihong(Bitmap a) { try { int w = a.Width; int h = a.Height; Bitmap dstBitmap = new Bitmap(w, h, System.Drawing.Imaging.PixelFormat.Format24bppRgb); System.Drawing.Imaging.BitmapData sr

  • C#自动生成漂亮的水晶效果头像的实现代码

    与其他的微博系统相同,在"多可内网微博系统"的用户也可上传自己的头像,并支持头像裁剪. 但"多可内网微博系统"的头像可以更漂亮,因为系统实现了水晶效果的头像.C#程序实现水晶效果头像的过程是: (1)图像缩略到宽度或高度=90的头像: (2)由用户选择合适的位置裁剪90x90的最终头像: (3)添加水晶效果: 代码奉献: 复制代码 代码如下: /// <summary>/// 绘制水晶效果的头像/// </summary>/// <pa

  • C#实现漂亮的数字时钟效果

    本文实例讲述了用C#做了一个漂亮的数字时钟.分享给大家供大家参考. 程序运行后界面如下: 实现技术:主要是通过Graphics类的DrawImage方法来绘制数字时钟中所有的数字,这些数字是从网上找的一些图片文件.时钟使用DateTime中Now属性来获得不同的,时,分,秒,最后通过定时器来实现时钟的运行状态. 主要代码如下: 复制代码 代码如下: //将0~9数字图片保存在Image数组中  private Image[] image = new Bitmap[10];  public For

  • C#实现winform渐变效果的方法

    本文实例实现一个启动画面,采用了显示Aform,过一段时间,隐藏这个Aform,showdialog下一个Bform,closeAForm这个方法来做了,不知道大家有没有更好的办法. 设定程序从Aform启动: 复制代码 代码如下: static void Main()  {    Application.EnableVisualStyles();    Application.SetCompatibleTextRenderingDefault(false);    Application.Ru

  • C# 无边框窗体边框阴影效果的简单实现

    通过下面代码在构造函数中调用方法 SetShadow(); 即可实现无边框窗体的阴影效果了 需要添加命名空间 using System.Runtime.InteropServices; 复制代码 代码如下: private const int CS_DropSHADOW = 0x20000;        private const int GCL_STYLE = (-26); [DllImport("user32.dll", CharSet = CharSet.Auto)]     

  • C# WinForm实现Win7 Aero透明效果代码

    在Vista系统之后,微软为窗体程序提供了Aero磨砂的效果,如下图.那么用C#如何来实现这种磨砂效果呢? 背景为我的桌面 那先上代码吧: [StructLayout(LayoutKind.Sequential)] public struct MARGINS { public int Left; public int Right; public int Top; public int Bottom; } [DllImport("dwmapi.dll", PreserveSig = fa

  • C#图像处理之浮雕效果实现方法

    本文实例讲述了C#图像处理之浮雕效果实现方法.分享给大家供大家参考.具体如下: //定义浮雕处理函数 public Bitmap PFudiao(Bitmap a) { try { int w = a.Width; int h = a.Height; Bitmap dstBitmap = new Bitmap(w, h, System.Drawing.Imaging.PixelFormat.Format24bppRgb); System.Drawing.Imaging.BitmapData sr

  • C#图像处理之木刻效果实现方法

    本文实例讲述了C#图像处理之木刻效果实现方法.分享给大家供大家参考.具体如下: //木刻效果 public Bitmap PFilterMuKe(Bitmap src) { try { Bitmap a = new Bitmap(src); Rectangle rect = new Rectangle(0, 0, a.Width, a.Height); System.Drawing.Imaging.BitmapData bmpData = a.LockBits(rect, System.Draw

  • C#实现绘制浮雕图片效果实例

    本文采用C#实例讲解了处理图片为浮雕效果的实现方法,这在PS中是一个常见的功能,也是C#中的一个简单的图像处理例子.程序先读取原图,然后依次访问每个像素的RGB值,获取相邻两个像素的R.G.B值,计算与左上角像素的RGB分量之差,将计算后的RGB值回写到位图,最后进行图片的浮雕处理. 主要代码如下: using System; using System.Drawing; using System.Collections; using System.ComponentModel; using Sy

随机推荐