ImageMagick.MagickImage.NativeMagickImage.Encipher C# (CSharp) Method

Encipher() public method

public Encipher ( string passphrase ) : void
passphrase string
return void
      public void Encipher(string passphrase)
      {
        using (INativeInstance passphraseNative = UTF8Marshaler.CreateInstance(passphrase))
        {
          IntPtr exception = IntPtr.Zero;
          #if ANYCPU
          if (NativeLibrary.Is64Bit)
          #endif
          #if WIN64 || ANYCPU
          NativeMethods.X64.MagickImage_Encipher(Instance, passphraseNative.Instance, out exception);
          #endif
          #if ANYCPU
          else
          #endif
          #if !WIN64 || ANYCPU
          NativeMethods.X86.MagickImage_Encipher(Instance, passphraseNative.Instance, out exception);
          #endif
          CheckException(exception);
        }
      }
      public void Enhance()
MagickImage.NativeMagickImage