您好,登錄后才能下訂單哦!
小編這次要給大家分享的是Unity如何實(shí)現(xiàn)圖片生成灰白圖,文章內(nèi)容豐富,感興趣的小伙伴可以來(lái)了解一下,希望大家閱讀完這篇文章之后能夠有所收獲。
效果
原圖
生成出來(lái)的灰白圖
制作方法
把文章末尾的的TextureUtils.cs腳本放到工程的Assets / Editor目錄中
然后選中項(xiàng)目中的一張圖片,然后點(diǎn)擊菜單Tools / GenGrayTexture
就會(huì)在同級(jí)目錄中生成灰白圖片了
// TextureUtils.cs using 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); // 如果提示圖片不可讀,需要設(shè)置一下isReadable為true, 操作完記得再設(shè)置為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]; // 顏色值計(jì)算,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接口來(lái)獲取特定格式的文件
var files = Directory.GetFiles("D:\\path", "*.*", SearchOption.AllDirectories); foreach(var f in files) { if(!f.EndsWith(".png") && !f.EndsWith(".jpg")) continue; // TODO... }
看完這篇關(guān)于Unity如何實(shí)現(xiàn)圖片生成灰白圖的文章,如果覺(jué)得文章內(nèi)容寫得不錯(cuò)的話,可以把它分享出去給更多人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。