Unity开发笔记:将Texture2D裁剪出指定圆角用来输出png等图片

学习记录整理,自用,也希望能帮助到有相同需求的人。

圆角原理见大佬的博客:
圆角原理

简单来说就是将图片分成四个区域,找出拐角处的拐子的设置为透明

![](https://img-blog.csdnimg.cn/a788825545614816895a9cca42ddc4a9.png

如图,找到四个红色区域外边的白色区域 设置为透明即可。

注意texture本身应该为支持透明的格式如TextureFormat.RGBA32,且导出为png等支持透明的格式(比如jpg不支持透明)。

函数代码:

csharp 复制代码
    void myBorder(Texture2D texture, float radius)
    {
        Vector2 a = new Vector2(0f, 0f);
        Vector2 b = new Vector2(0.5f - radius, 0.5f - radius);
        for (float i = 0; i < texture.width; ++i)
        {
            for (float j = 0; j < texture.height; ++j)
            {
                a.x = Math.Abs((i - texture.width / 2) / texture.width);
                a.y = Math.Abs((j - texture.height / 2) / texture.height);
                //(Vector2.Distance(a, b) > radius && a.x :去除中间十字形区域
                //a.x > (0.5f - radius) && a.y > (0.5f - radius)去除十字形区域间的四个圆角
                if (Vector2.Distance(a, b) > radius && a.x > (0.5f - radius) && a.y > (0.5f - radius))
                {
                    //剩下的就是要设置透明的区域
                    texture.SetPixel((int)i, (int)j, Color.clear);
                }
            }
        }
    }

上述代码中Radius为圆角参数,区间为[0,0.5],数值越大圆角越大

一个简单的调用实例:

csharp 复制代码
        // 创建一个新的 Texture2D 来保存截屏数据
        Texture2D uiTexture = new Texture2D((int)width, (int)height, TextureFormat.RGBA32, false);
        uiTexture.ReadPixels(new Rect(0, 0, width, height), 0, 0);
        myBorder(uiTexture, 0.065f);

        // 将 Texture2D 保存为图片文件
        byte[] imageBytes = uiTexture.EncodeToPNG();
        string path = "Assets/Textures/UI/20230803/4.png"; 
相关推荐
军训猫猫头1 小时前
20.抽卡只有金,带保底(WPF) C#
ui·c#·wpf
wuningw2 小时前
ant-design-ui的Select选择器多选时同时获取label与vaule值
ui·arcgis
SoraLuna7 小时前
「Mac畅玩鸿蒙与硬件47」UI互动应用篇24 - 虚拟音乐控制台
开发语言·macos·ui·华为·harmonyos
异次元的归来8 小时前
Unity DOTS中的share component
unity·游戏引擎
向宇it11 小时前
【从零开始入门unity游戏开发之——C#篇25】C#面向对象动态多态——virtual、override 和 base 关键字、抽象类和抽象方法
java·开发语言·unity·c#·游戏引擎
_oP_i12 小时前
unity webgl部署到iis报错
unity
Go_Accepted12 小时前
Unity全局雾效
unity
向宇it12 小时前
【从零开始入门unity游戏开发之——C#篇24】C#面向对象继承——万物之父(object)、装箱和拆箱、sealed 密封类
java·开发语言·unity·c#·游戏引擎
每日出拳老爷子15 小时前
【图形渲染】【Unity Shader】【Nvidia CG】有用的参考资料链接
unity·游戏引擎·图形渲染
北海651616 小时前
Dots 常用操作
unity