本文整理汇总了C#中ImageFactory.Format方法的典型用法代码示例。如果您正苦于以下问题:C# ImageFactory.Format方法的具体用法?C# ImageFactory.Format怎么用?C# ImageFactory.Format使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ImageFactory
的用法示例。
在下文中一共展示了ImageFactory.Format方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ProcessImage
/// <summary>
/// Processes the image.
/// </summary>
/// <param name="factory">
/// The current instance of the <see cref="T:ImageProcessor.ImageFactory"/> class containing
/// the image to process.
/// </param>
/// <returns>
/// The processed image from the current instance of the <see cref="T:ImageProcessor.ImageFactory"/> class.
/// </returns>
public Image ProcessImage(ImageFactory factory)
{
try
{
ISupportedImageFormat format = this.DynamicParameter;
factory.Format(format);
}
catch (Exception ex)
{
throw new ImageProcessingException("Error processing image with " + this.GetType().Name, ex);
}
return factory.Image;
}
示例2: ProcessImage
/// <summary>
/// Processes the image.
/// </summary>
/// <param name="factory">
/// The the current instance of the <see cref="T:ImageProcessor.ImageFactory"/> class containing
/// the image to process.
/// </param>
/// <returns>
/// The processed image from the current instance of the <see cref="T:ImageProcessor.ImageFactory"/> class.
/// </returns>
public Image ProcessImage(ImageFactory factory)
{
string format = this.DynamicParameter;
bool isIndexed = false;
ImageFormat imageFormat;
switch (format)
{
case "png":
imageFormat = ImageFormat.Png;
break;
case "png8":
imageFormat = ImageFormat.Png;
isIndexed = true;
break;
case "bmp":
imageFormat = ImageFormat.Bmp;
break;
case "gif":
imageFormat = ImageFormat.Gif;
isIndexed = true;
break;
case "tif":
case "tiff":
imageFormat = ImageFormat.Tiff;
break;
case "ico":
imageFormat = ImageFormat.Icon;
break;
default:
// Should be a jpeg or jpg.
imageFormat = ImageFormat.Jpeg;
break;
}
// Set the internal property.
factory.OriginalExtension = string.Format(".{0}", format);
factory.Format(imageFormat, isIndexed);
return factory.Image;
}
示例3: ProcessImage
/// <summary>
/// Processes the image.
/// </summary>
/// <param name="factory">
/// The the current instance of the <see cref="T:ImageProcessor.ImageFactory"/> class containing
/// the image to process.
/// </param>
/// <returns>
/// The processed image from the current instance of the <see cref="T:ImageProcessor.ImageFactory"/> class.
/// </returns>
public Image ProcessImage(ImageFactory factory)
{
string format = this.DynamicParameter;
ImageFormat imageFormat;
switch (format)
{
case "png":
imageFormat = ImageFormat.Png;
break;
case "bmp":
imageFormat = ImageFormat.Bmp;
break;
case "gif":
imageFormat = ImageFormat.Gif;
break;
default:
// Should be a jpeg.
imageFormat = ImageFormat.Jpeg;
break;
}
// Set the internal property.
factory.Format(imageFormat);
return factory.Image;
}