C#实现3D效果完整实例_C#教程

本文实例讲述了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#程序设计有所帮助。

以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索c#
3D效果
c站、c语言、cf、ch、c罗,以便于您获取更多的相关知识。

时间: 2024-09-21 18:58:32

C#实现3D效果完整实例_C#教程的相关文章

C#使用系统方法发送异步邮件完整实例_C#教程

本文实例讲述了C#使用系统方法发送异步邮件.分享给大家供大家参考,具体如下: 项目背景: 最近在对几年前的一个项目进行重构,发现发送邮件功能需要一定的时间来处理,而由于发送是同步的因此导致在发送邮件时无法执行后续的操作 实际上发送邮件后只需要将发送结果写入系统日志即可对其他业务没有任何影响,因此决定将发送邮件操作更改为异步的 由于使用的是C#的邮件类库,而C#本身已经提供了异步发送的功能即只需要将Send方法更改为SendAsync即可,更改方法名并不难但发送后再写入日志就有点难了 因为项目中发

C#实现单链表(线性表)完整实例_C#教程

本文实例讲述了C#实现单链表(线性表)的方法.分享给大家供大家参考,具体如下: 顺序表由连续内存构成,链表则不同.顺序表的优势在于查找,链表的优势在于插入元素等操作.顺序表的例子:http://www.jb51.net/article/87605.htm 要注意的是,单链表的Add()方法最好不要频繁调用,尤其是链表长度较长的时候,因为每次Add,都会从头节点到尾节点进行遍历,这个缺点的优化方法是将节点添加到头部,但顺序是颠倒的. 所以,在下面的例子中,执行Purge(清洗重复元素)的时候,没有

C#实现顺序表(线性表)完整实例_C#教程

本文实例讲述了C#实现顺序表(线性表)的方法.分享给大家供大家参考,具体如下: 基本思想是使用数组作为盛放元素的容器,数组一开始的大小要实现确定,并使用一个Pointer指向顺序表中最后的元素.顺序表中的元素是数组中元素的子集.顺序表在内存中是连续的,优势是查找,弱势是插入元素和删除元素. 为避免装箱拆箱,这里使用泛型,代替object.使用object的例子可以参照本站这篇文章:http://www.jb51.net/article/87603.htm,这个链接中的例子实现的是队列,并没 有使

C#实现的一款比较美观的验证码完整实例_C#教程

本文实例讲述了C#实现的一款比较美观的验证码.分享给大家供大家参考,具体如下: using System; using System.Collections.Generic; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Drawing; using System.IO; using System.Drawing.Imaging; public partial class

C#实现可捕获几乎所有键盘鼠标事件的钩子类完整实例_C#教程

本文实例讲述了C#实现可捕获几乎所有键盘鼠标事件的钩子类.分享给大家供大家参考,具体如下: using System; using System.Text; using System.Runtime.InteropServices; using System.Reflection; using System.Windows.Forms; namespace MouseKeyboardLibrary { /// <summary> /// Abstract base class for Mous

C#实现的xml操作类完整实例_C#教程

本文实例讲述了C#实现的xml操作类,分享给大家供大家参考,具体如下: using System; using System.Data; using System.Configuration; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System

C#实现DataSet内数据转化为Excel和Word文件的通用类完整实例_C#教程

本文实例讲述了C#实现DataSet内数据转化为Excel和Word文件的通用类.分享给大家供大家参考,具体如下: 前不久因为项目的需要写的一个C#把DataSet内数据转化为Excel和Word文件的通用类,这些关于Excel.Word的导出方法,基本可以实现日常须要,其中有些方法可以把数据导出后 生成Xml格式,再导入数据库!有些屏蔽内容没有去掉,保留下来方便学习参考用之. 最后请引用Office相应COM组件,导出Excel对象的一个方法要调用其中的一些方法和属性. using Syste

C#使用foreach循环遍历数组完整实例_C#教程

本文实例讲述了C#使用foreach循环遍历数组的方法.分享给大家供大家参考,具体如下: using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { //声明数组. 第一种方法. 声明并分配元素大小. int[] Myint

C#实现的AES加密解密完整实例_C#教程

本文实例讲述了C#实现的AES加密解密.分享给大家供大家参考,具体如下: /****************************************************************** * 创建人:HTL * 说明:C# AES加密解密 *******************************************************************/ using System; using System.Security.Cryptography;