本文整理汇总了C#中MagickImage.FormatExpression方法的典型用法代码示例。如果您正苦于以下问题:C# MagickImage.FormatExpression方法的具体用法?C# MagickImage.FormatExpression怎么用?C# MagickImage.FormatExpression使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MagickImage
的用法示例。
在下文中一共展示了MagickImage.FormatExpression方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Test_FormatExpression
public void Test_FormatExpression()
{
using (MagickImage image = new MagickImage(Files.RedPNG))
{
ExceptionAssert.Throws<ArgumentNullException>(delegate()
{
image.FormatExpression(null);
});
ExceptionAssert.Throws<MagickBlobErrorException>(delegate()
{
string tempFile = Path.GetTempFileName();
FileStream fs = null;
try
{
File.WriteAllText(tempFile, "");
using (fs = File.Open(tempFile, FileMode.Open, FileAccess.ReadWrite, FileShare.None))
{
Assert.AreEqual(null, image.FormatExpression("@" + tempFile));
}
}
finally
{
if (File.Exists(tempFile))
File.Delete(tempFile);
}
});
Assert.AreEqual("FOO", image.FormatExpression("FOO"));
Assert.AreEqual("600", image.FormatExpression("%w"));
Assert.AreEqual("200", image.FormatExpression("%h"));
Assert.AreEqual("cf35f14d9d0221a12e7120af9d070bdcf1b2714f7318ff4c8d8fbc6ac559060c", image.FormatExpression("%#"));
}
}