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

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

public CycleColormap ( int amount ) : void
amount int
Результат void
      public void CycleColormap(int amount)
      {
        IntPtr exception = IntPtr.Zero;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        NativeMethods.X64.MagickImage_CycleColormap(Instance, (IntPtr)amount, out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        NativeMethods.X86.MagickImage_CycleColormap(Instance, (IntPtr)amount, out exception);
        #endif
        CheckException(exception);
      }
      public void Decipher(string passphrase)
MagickImage.NativeMagickImage