ImageMagick.MagickNET.SetTempDirectory C# (CSharp) Метод

SetTempDirectory() публичный статический Метод

Sets the directory that will be used when ImageMagick does not have enough memory for the pixel cache.
public static SetTempDirectory ( string path ) : void
path string The path where temp files will be written.
Результат void
    public static void SetTempDirectory(string path)
    {
      Environment.SetEnv("MAGICK_TEMPORARY_PATH", FileHelper.GetFullPath(path));
    }