ImageMagick.MagickImage.NativeMagickImage.ColorDecisionList C# (CSharp) Метод

ColorDecisionList() публичный Метод

public ColorDecisionList ( string fileName ) : void
fileName string
Результат void
      public void ColorDecisionList(string fileName)
      {
        using (INativeInstance fileNameNative = UTF8Marshaler.CreateInstance(fileName))
        {
          IntPtr exception = IntPtr.Zero;
          #if ANYCPU
          if (NativeLibrary.Is64Bit)
          #endif
          #if WIN64 || ANYCPU
          NativeMethods.X64.MagickImage_ColorDecisionList(Instance, fileNameNative.Instance, out exception);
          #endif
          #if ANYCPU
          else
          #endif
          #if !WIN64 || ANYCPU
          NativeMethods.X86.MagickImage_ColorDecisionList(Instance, fileNameNative.Instance, out exception);
          #endif
          CheckException(exception);
        }
      }
      public void Colorize(MagickColor color, string blend)
MagickImage.NativeMagickImage