企业🤖AI Agent构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
球面(Spherize)滤镜 球面滤镜是通过极坐标变换实现图像的球面特效。 代码如下: ~~~ /// Pinch Filter /// /// Source image. /// The X position of sun. /// The Y position of sun. /// The result image. private Bitmap SpherizeFilterProcess(Bitmap srcBitmap, int cenX, int cenY) { Bitmap a = new Bitmap(srcBitmap); int w = a.Width; int h = a.Height; int radius = 0; Bitmap dst = new Bitmap(w, h); System.Drawing.Imaging.BitmapData srcData = a.LockBits(new Rectangle(0, 0, w, h), System.Drawing.Imaging.ImageLockMode.ReadWrite, System.Drawing.Imaging.PixelFormat.Format32bppArgb); System.Drawing.Imaging.BitmapData dstData = dst.LockBits(new Rectangle(0, 0, w, h), System.Drawing.Imaging.ImageLockMode.ReadWrite, System.Drawing.Imaging.PixelFormat.Format32bppArgb); unsafe { byte* pIn = (byte*)srcData.Scan0.ToPointer(); byte* pOut = (byte*)dstData.Scan0.ToPointer(); byte* p = null; int sWidth = srcData.Stride; int stride = sWidth - w * 4; int offsetX = 0, offsetY = 0; int newX = 0, newY = 0; double radian = 0; for (int y = 0; y < h; y++) { for (int x = 0; x < w; x++) { offsetX = x - cenX; offsetY = y - cenY; radian = Math.Atan2(offsetY, offsetX); radius = (int)((offsetX * offsetX + offsetY * offsetY) / Math.Max(cenX, cenY)); newX = (int)(radius * Math.Cos(radian)) + cenX; newY = (int)(radius * Math.Sin(radian)) + cenY; newX = Math.Min(w - 1, Math.Max(0, newX)); newY = Math.Min(h - 1, Math.Max(0, newY)); p = pIn + newY * srcData.Stride + newX * 4; pOut[0] = (byte)p[0]; pOut[1] = (byte)p[1]; pOut[2] = (byte)p[2]; pOut[3] = (byte)255; pOut += 4; } pOut += stride; } a.UnlockBits(srcData); dst.UnlockBits(dstData); } return dst; } ~~~ 效果图如下: [![](https://box.kancloud.cn/2016-01-05_568b332613ebc.jpg)](http://www.zealpixel.com/data/attachment/portal/201507/22/100134x8r00yswklrrxrlr.jpg) 原图 [![](https://box.kancloud.cn/2016-01-05_568b332673027.png)](http://www.zealpixel.com/data/attachment/portal/201507/22/100127rl5wnwv9rau053po.png) 效果图(X=240,Y=240) 最后放上一个完整的C#板程序DEMO:[http://www.zealpixel.com/forum.php?mod=viewthread&tid=56&extra=page%3D1](http://www.zealpixel.com/forum.php?mod=viewthread&tid=56&extra=page%3D1)