@@ -26,7 +26,7 @@ private async Task<BackGround> GenerateArcV1(Path path)
2626 using var song = await _info . GetSongImg ( ) ;
2727 using var temp = song . Cut ( new ( 0 , 87 , 512 , 341 ) ) ;
2828 var background = new BackGround ( temp , 1440 , 960 ) ;
29- using var masktmp = background . BlurImage ( 20 ) . Cut ( new ( 50 , 50 , 1340 , 860 ) ) . BlurImage ( 80 ) ;
29+ using var masktmp = background . Blur ( 20 ) . Cut ( new ( 50 , 50 , 1340 , 860 ) ) . Blur ( 80 ) ;
3030 background . FillColor ( _info . MainColor ) ;
3131 background . Draw ( new ImageModel ( Path . ArcaeaBg1Mask , 0 , 0 , 1440 , 960 ) , new ImageModel ( masktmp , 50 , 50 , 1340 , 860 ) ,
3232 new ImageModel ( Path . ArcaeaDivider , 100 , 840 , 1240 ) ,
@@ -52,14 +52,14 @@ private async Task<BackGround> GenerateArcV2(Path path)
5252 {
5353 using var song = await _info . GetSongImg ( ) ;
5454 using var temp = song . Cut ( new ( 0 , 112 , 512 , 288 ) ) ;
55- var background = new BackGround ( temp , 1920 , 1080 ) . BlurImage ( 60 ) ;
55+ var background = new BackGround ( temp , 1920 , 1080 ) . Blur ( 60 ) ;
5656 background . FillColor ( _info . MainColor ) ;
5757 background . Draw ( new TextWithShadowModel ( "Play PTT" , Font . Exo36 , 123 , 355 ) ,
5858 new TextWithShadowModel ( "Pure" , Font . Exo32 , 127 , 455 ) ,
5959 new TextWithShadowModel ( "Far" , Font . Exo32 , 127 , 525 ) ,
6060 new TextWithShadowModel ( "Lost" , Font . Exo32 , 410 , 525 ) ,
6161 new TextWithShadowModel ( "Played at" , Font . Exo32 , 127 , 595 ) ,
62- new ImageModel ( new BackGround ( song . Cut ( new ( 0 , 19 , 512 , 48 ) ) , 1920 , 180 ) . BlurImage ( 20 ) , 0 , 740 ) ,
62+ new ImageModel ( new BackGround ( song . Cut ( new ( 0 , 19 , 512 , 48 ) ) , 1920 , 180 ) . Blur ( 20 ) , 0 , 740 ) ,
6363 new LineModel ( Color . White , 3 , new ( 0 , 740 ) , new ( 1920 , 740 ) ) ,
6464 new LineModel ( Color . White , 3 , new ( 0 , 920 ) , new ( 1920 , 920 ) ) ,
6565 new LineModel ( Color . White , 1 , new ( 0 , 705 ) , new ( 1920 , 705 ) ) ,
@@ -85,7 +85,7 @@ private async Task<BackGround> GenerateArcV3(Path path)
8585 {
8686 using var song = await _info . GetSongImg ( ) ;
8787 using var temp = song . Cut ( new ( 78 , 0 , 354 , 512 ) ) ;
88- var background = new BackGround ( temp , 1000 , 1444 ) . BlurImage ( 10 ) ;
88+ var background = new BackGround ( temp , 1000 , 1444 ) . Blur ( 10 ) ;
8989 background . FillColor ( Color . White , 100 ) ;
9090 background . Draw ( new ImageModel ( Path . ArcaeaBg3Mask ( ( int ) _info . PartnerSide ) , 0 , 0 , 1000 ) ,
9191 new TextOnlyModel ( _info . GetSongName ( 30 ) , Font . Beatrice36 , Color . Black , 500 , 860 ,
0 commit comments