Пример #1
0
 /// <summary>
 /// Returns true when the supplied file name is supported based on the extension of the file.
 /// </summary>
 /// <param name="file">The file to check.</param>
 /// <returns>True when the supplied file name is supported based on the extension of the file.</returns>
 /// <returns>True when the image could be compressed otherwise false.</returns>
 public bool IsSupported(FileInfo file)
 {
     return(IsSupported(MagickFormatInfo.Create(file)));
 }
Пример #2
0
 /// <summary>
 /// Returns the format information of the specified format based on the extension of the
 /// file. If that fails the format will be determined by 'pinging' the file.
 /// </summary>
 /// <param name="fileName">The name of the file to get the format for.</param>
 /// <returns>The format information.</returns>
 public static IMagickFormatInfo GetFormatInformation(string fileName)
 => MagickFormatInfo.Create(fileName);
Пример #3
0
 /// <summary>
 /// Returns true when the supplied file name is supported based on the extension of the file.
 /// </summary>
 /// <param name="fileName">The name of the file to check.</param>
 /// <returns>True when the supplied file name is supported based on the extension of the file.</returns>
 public bool IsSupported(string fileName)
 {
     return(IsSupported(MagickFormatInfo.Create(fileName)));
 }
Пример #4
0
 /// <summary>
 /// Returns the format information of the specified format based on the extension of the file.
 /// </summary>
 /// <param name="file">The file to get the format for.</param>
 /// <returns>The format information.</returns>
 public static IMagickFormatInfo GetFormatInformation(FileInfo file)
 => MagickFormatInfo.Create(file);
Пример #5
0
 /// <summary>
 /// Returns the format information of the specified format.
 /// </summary>
 /// <param name="format">The image format.</param>
 /// <returns>The format information.</returns>
 public static IMagickFormatInfo GetFormatInformation(MagickFormat format)
 => MagickFormatInfo.Create(format);
Пример #6
0
 /// <summary>
 /// Returns the format information of the specified format.
 /// </summary>
 /// <param name="format">The image format.</param>
 /// <returns>The format information.</returns>
 public static MagickFormatInfo GetFormatInformation(MagickFormat format)
 {
     return(MagickFormatInfo.Create(format));
 }
Пример #7
0
 /// <summary>
 /// Returns the format information of the specified format based on the extension of the
 /// file. If that fails the format will be determined by 'pinging' the file.
 /// </summary>
 /// <param name="fileName">The name of the file to get the format for.</param>
 /// <returns>The format information.</returns>
 public static MagickFormatInfo GetFormatInformation(string fileName)
 {
     return(MagickFormatInfo.Create(fileName));
 }
Пример #8
0
 /// <summary>
 /// Returns the format information of the specified format based on the extension of the file.
 /// </summary>
 /// <param name="file">The file to get the format for.</param>
 /// <returns>The format information.</returns>
 public static MagickFormatInfo GetFormatInformation(FileInfo file)
 {
     return(MagickFormatInfo.Create(file));
 }
Пример #9
0
 /// <summary>
 /// Returns the format information. The header of the image in the array of bytes is used to
 /// determine the format.
 /// </summary>
 /// <param name="data">The array of bytes to read the image header from.</param>
 /// <returns>The format information.</returns>
 public static IMagickFormatInfo?GetFormatInformation(byte[] data)
 => MagickFormatInfo.Create(data);
Пример #10
0
 ///<summary>
 /// Returns the format information of the specified format.
 ///</summary>
 ///<param name="format">The image format.</param>
 public static MagickFormatInfo GetFormatInformation(MagickFormat format)
 {
     return(MagickFormatInfo.Create(Wrapper.MagickNET.GetFormatInformation(format)));
 }
Пример #11
0
 /// <summary>
 /// Returns true when the supplied file name is supported based on the extension of the file.
 /// </summary>
 /// <param name="fileName">The name of the file to check.</param>
 /// <returns>True when the supplied file name is supported based on the extension of the file.</returns>
 public bool IsSupported(string fileName) => IsSupported(MagickFormatInfo.Create(fileName));
Пример #12
0
 /// <summary>
 /// Returns true when the supplied file name is supported based on the extension of the file.
 /// </summary>
 /// <param name="file">The file to check.</param>
 /// <returns>True when the supplied file name is supported based on the extension of the file.</returns>
 /// <returns>True when the image could be compressed otherwise false.</returns>
 public bool IsSupported(FileInfo file) => IsSupported(MagickFormatInfo.Create(file));