當前位置: 首頁>>代碼示例>>C#>>正文


C# Size.Select方法代碼示例

本文整理匯總了C#中System.Drawing.Size.Select方法的典型用法代碼示例。如果您正苦於以下問題:C# Size.Select方法的具體用法?C# Size.Select怎麽用?C# Size.Select使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在System.Drawing.Size的用法示例。


在下文中一共展示了Size.Select方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: ExecuteMethod_CreateImageMediaFormats

 public static void ExecuteMethod_CreateImageMediaFormats(string masterRelativeLocation, Bitmap bitmapData)
 {
     if (bitmapData == null)
         return;
     Size[] jpgSizes = new[]
         {
             // Wide screen format
             new Size(1280, 720),
             new Size(640, 360),
             // .. portrait alternatives, but not the biggest ones
             new Size(360, 640),
             // Standard screen format
             new Size(1024, 768),
             new Size(800, 600),
             new Size(640, 480),
             new Size(320, 240),
             new Size(160, 120),
             // .. portrait alternatives, but not the biggest ones
             new Size(480, 640),
             new Size(240, 320),
             new Size(120, 160),
             // Square icon format
             new Size(256, 256),
             new Size(128, 128),
             new Size(64, 64),
             new Size(32, 32),
         };
     // Photos become still quite large on png => transparency issues need to be dealt with differently
     Size[] pngSizes = new Size[]
         {
         };
     var sizesWithFormat = jpgSizes.Select(size => new {Format = ImageFormat.Jpeg, Size = size}).
                                   Union(pngSizes.Select(size => new {Format = ImageFormat.Png, Size = size}));
     foreach(var sizeWithFormat in sizesWithFormat)
     {
         var size = sizeWithFormat.Size;
         var format = sizeWithFormat.Format;
         string sizedFittingAllInLocation = GetSizedLocation(masterRelativeLocation, size, fittingAllIn: true, format:format);
         Bitmap fittingBitmap = ResizeImage(bitmapData, size, true, false, false);
         StoreToBlob(sizedFittingAllInLocation, fittingBitmap, format);
         string sizedCroppingLocation = GetSizedLocation(masterRelativeLocation, size, fittingAllIn: false, format: format);
         Bitmap croppedBitmap = ResizeImage(bitmapData, size, true, false, true);
         StoreToBlob(sizedCroppingLocation, croppedBitmap, format);
     }
 }
開發者ID:rodmjay,項目名稱:TheBallOnAzure,代碼行數:45,代碼來源:CreateAdditionalMediaFormatsImplementation.cs


注:本文中的System.Drawing.Size.Select方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。