本文整理匯總了C#中Windows.Foundation.Size.ToUniformToFill方法的典型用法代碼示例。如果您正苦於以下問題:C# Size.ToUniformToFill方法的具體用法?C# Size.ToUniformToFill怎麽用?C# Size.ToUniformToFill使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Windows.Foundation.Size
的用法示例。
在下文中一共展示了Size.ToUniformToFill方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: ResizeImageUniformToFillAsync
public static async Task ResizeImageUniformToFillAsync(StorageFile sourceFile, StorageFile targetFile, int maxWidth = Int32.MaxValue, int maxHeight = Int32.MaxValue)
{
using (var stream = await sourceFile.OpenReadAsync())
{
var decoder = await BitmapDecoder.CreateAsync(stream);
if (IsGifImage(decoder))
{
await sourceFile.CopyAndReplaceAsync(targetFile);
return;
}
maxWidth = Math.Min(maxWidth, (int)decoder.OrientedPixelWidth);
maxHeight = Math.Min(maxHeight, (int)decoder.OrientedPixelHeight);
var imageSize = new Size(decoder.OrientedPixelWidth, decoder.OrientedPixelHeight);
var finalSize = imageSize.ToUniformToFill(new Size(maxWidth, maxHeight));
if (finalSize.Width == decoder.OrientedPixelWidth && finalSize.Height == decoder.OrientedPixelHeight)
{
await sourceFile.CopyAndReplaceAsync(targetFile);
return;
}
await ResizeImageAsync(decoder, targetFile, finalSize);
}
}
示例2: GetStretchSize
private Size GetStretchSize(Size containerSize, Size virtualSize)
{
switch (this.Stretch)
{
case Stretch.Fill:
return new Size(this.ActualWidth, this.ActualHeight);
case Stretch.Uniform:
return virtualSize.ToUniform(containerSize);
case Stretch.UniformToFill:
return virtualSize.ToUniformToFill(containerSize);
default:
return virtualSize;
}
}