File tree Expand file tree Collapse file tree
src/MediaConverters/MediaConverters.Lib/Imaging/Effect Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- using DotNetCampus . MediaConverters . Imaging . Effect . Colors ;
1+ using System ;
2+ using System . Collections . Generic ;
3+ using System . Linq ;
4+ using System . Threading . Tasks ;
5+
6+ using DotNetCampus . MediaConverters . Imaging . Effect . Colors ;
27using DotNetCampus . MediaConverters . Imaging . Effect . Extensions ;
38
49using SixLabors . ImageSharp ;
510using SixLabors . ImageSharp . Advanced ;
611using SixLabors . ImageSharp . PixelFormats ;
712
8- using System ;
9- using System . Collections . Generic ;
10- using System . Linq ;
11- using System . Threading . Tasks ;
12-
13- using static System . Net . Mime . MediaTypeNames ;
14-
1513namespace DotNetCampus . MediaConverters . Imaging . Effect ;
1614
1715/// <summary>
@@ -221,7 +219,7 @@ public static IReadOnlyList<ColorCount> GetColorCount(this Image<Rgba32> image)
221219 }
222220 } ) ;
223221
224- return [ ..dictionary . Select ( t => new ColorCount ( t . Key , t . Value ) ) ] ;
222+ return [ .. dictionary . Select ( t => new ColorCount ( t . Key , t . Value ) ) ] ;
225223 }
226224}
227225
You can’t perform that action at this time.
0 commit comments