时间:2021-05-20
本文实例为大家分享了Unity生成图片灰白图的具体代码,供大家参考,具体内容如下
效果
原图
生成出来的灰白图
制作方法
把文章末尾的的TextureUtils.cs脚本放到工程的Assets / Editor目录中
然后选中项目中的一张图片,然后点击菜单Tools / GenGrayTexture
就会在同级目录中生成灰白图片了
// TextureUtils.csusing System.Collections;using System.Collections.Generic;using UnityEngine;using UnityEditor;using System.IO;public class TextureUtils : MonoBehaviour{ [MenuItem("Tools/GenGrayTexture")] public static void GenGrayTexture() { // 获取选中的图片 var textures = Selection.GetFiltered<Texture2D>(SelectionMode.DeepAssets); foreach (var t in textures) { var path = AssetDatabase.GetAssetPath(t); // 如果提示图片不可读,需要设置一下isReadable为true, 操作完记得再设置为false var imp = AssetImporter.GetAtPath(path) as TextureImporter; imp.isReadable = true; AssetDatabase.ImportAsset(path); var newTexture = new Texture2D(t.width, t.height, TextureFormat.RGBA32, false); var colors = t.GetPixels(); var targetColors = newTexture.GetPixels(); for (int i = 0, len = colors.Length; i < len; ++i) { var c = colors[i]; // 颜色值计算,rgb去平均值 var v = (c.r + c.g + c.b) / 3f; targetColors[i] = new Color(v, v, v, c.a); } newTexture.SetPixels(targetColors); string fname = path.Split('.')[0] + "_gray.png"; File.WriteAllBytes(fname, newTexture.EncodeToPNG()); imp.isReadable = false; AssetDatabase.Refresh(); } }}如果要批量修改,可以用Directory.GetFiles接口来获取特定格式的文件
var files = Directory.GetFiles("D:\\path", "*.*", SearchOption.AllDirectories);foreach(var f in files){ if(!f.EndsWith(".png") && !f.EndsWith(".jpg")) continue; // TODO... }以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
ps把图调成灰色的方法是: 1、首先打开想要变成灰白的图片。 2、接着在软件中,选择图像,然后点击它。 3、此时会弹出一个菜单,我们选择调整,然后点击灰白
本项目使用Python和OpenCv实现身份证图片生成工具,填入信息,选择一张头像图片(即可生成黑白和彩色身份证图片)。可以选择是否自动抠图,自动抠图目前仅支持
通常浏览器都有将网页生成图片的功能,本文实例讲述了Winform实现将网页生成图片的方法。分享给大家供大家参考。具体方法如下:工具截图如下:生成后的图片如下:手
本文实例为大家分享了Unity实现全屏截图、Unity实现QQ截图,供大家参考,具体内容如下全屏截图:要实现的是点击鼠标左键,就实现截图,并且将所截图片保存到本
本文实例讲述了ASP.Net页面生成饼图的方法。分享给大家供大家参考。具体实现方法如下:1.生成普通饼图:复制代码代码如下:usingSystem;usingS