PicCompressor.cs 3.9 KB
Newer Older
J
junkunzhang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
using UnityEngine;
using System.IO;
using System.Threading;

namespace WeChatWASM
{


    public class PicTask
    {
        /// <summary>
        /// 0: png, 1:astc, 2:etc2,3:pvrtc
        /// </summary>
        public int type;
        /// <summary>
        /// 图片路径
        /// </summary>
        public string src;
        public string dst;
        public int width;
        public int height;
    }

    /// <summary>
    /// 基于ImageMagick的图片处理
    /// </summary>
    ///
    public static class PicCompressor
    {

        static string ASTCPath;
        static string PVRTCPath;
        static string PNGPath;
        static string DXT5Path;
        static Semaphore sempore = new Semaphore(8, 8); //最多设置8个进程



        public static string GetASTCPath()
        {
            if (Application.platform == RuntimePlatform.WindowsEditor)
            {
                return Path.Combine(Application.dataPath, "WX-WASM-SDK/Editor/astcenc-sse4.1.exe");
            }
            if (UnityEngine.SystemInfo.processorType.ToLower().Contains("apple")) {
                return Path.Combine(Application.dataPath, "WX-WASM-SDK/Editor/astcenc-neon");
            }
            return Path.Combine(Application.dataPath, "WX-WASM-SDK/Editor/astcenc-avx2");
        }

        public static string GetPVRTCPath()
        {
            return Path.Combine(Application.dataPath, "WX-WASM-SDK/Editor/PVRTexToolCLI" + (Application.platform == RuntimePlatform.WindowsEditor ? ".exe" : ""));
        }


        public static string GetDXT5Path()
        {
            return Path.Combine(Application.dataPath, "WX-WASM-SDK/Editor/PVRTexToolCLI" + (Application.platform == RuntimePlatform.WindowsEditor ? ".exe" : ""));
        }

        public static string GetPNGPath()
        {
            return Path.Combine(Application.dataPath, "WX-WASM-SDK/Editor/pngquant" + (Application.platform == RuntimePlatform.WindowsEditor ? ".exe" : ""));
        }




        public static void TestASTC()
        {

            var p = new System.Diagnostics.Process();
            p.StartInfo.FileName = GetASTCPath();
            p.StartInfo.UseShellExecute = false;
            p.StartInfo.RedirectStandardInput = true;
            p.StartInfo.RedirectStandardOutput = true;
            p.StartInfo.RedirectStandardError = true;
            p.StartInfo.CreateNoWindow = true;
            p.StartInfo.Arguments = " -help";


            p.Start();



            string strOuput = p.StandardOutput.ReadToEnd();
            Debug.Log(strOuput);
            p.WaitForExit();
            p.Close();

        }

        public static void TestMinPNG()
        {

            var p = new System.Diagnostics.Process();
            p.StartInfo.FileName = GetPNGPath();
            p.StartInfo.UseShellExecute = false;
            p.StartInfo.RedirectStandardInput = true;
            p.StartInfo.RedirectStandardOutput = true;
            p.StartInfo.RedirectStandardError = true;
            p.StartInfo.CreateNoWindow = true;
            p.StartInfo.Arguments = " -help";


            p.Start();


            /*
            string strOuput = p.StandardOutput.ReadToEnd();
            Debug.Log(strOuput);
            p.WaitForExit();
            p.Close();
            */

        }

        public static void TestPVRTC()
        {

            var p = new System.Diagnostics.Process();
            p.StartInfo.FileName = GetPVRTCPath();
            p.StartInfo.UseShellExecute = false;
            p.StartInfo.RedirectStandardInput = true;
            p.StartInfo.RedirectStandardOutput = true;
            p.StartInfo.RedirectStandardError = true;
            p.StartInfo.CreateNoWindow = true;
            p.StartInfo.Arguments = " -help";


            p.Start();

        }



    }
}