diff --git a/samples/SharedDemo/SkiaSharp.Demos.cs b/samples/SharedDemo/SkiaSharp.Demos.cs index 04a5afb413..aef8650ded 100644 --- a/samples/SharedDemo/SkiaSharp.Demos.cs +++ b/samples/SharedDemo/SkiaSharp.Demos.cs @@ -283,7 +283,7 @@ public static void CustomFonts (SKCanvas canvas, int width, int height) using (var tf = SKTypeface.FromFile (CustomFontPath)) { paint.Color = XamGreen; - paint.TextSize = 40; + paint.TextSize = 60; paint.Typeface = tf; canvas.DrawText (text, 50, 50, paint); @@ -292,7 +292,7 @@ public static void CustomFonts (SKCanvas canvas, int width, int height) using (var stream = new SKFileStream (CustomFontPath)) using (var tf = SKTypeface.FromStream (stream)) { paint.Color = XamDkBlue; - paint.TextSize = 40; + paint.TextSize = 60; paint.Typeface = tf; canvas.DrawText (text, 50, 100, paint); @@ -308,7 +308,7 @@ public static void CustomFonts (SKCanvas canvas, int width, int height) using (var stream = new SKMemoryStream (bytes)) using (var tf = SKTypeface.FromStream (stream)) { paint.Color = XamLtBlue; - paint.TextSize = 40; + paint.TextSize = 60; paint.Typeface = tf; canvas.DrawText (text, 50, 150, paint); @@ -319,7 +319,7 @@ public static void CustomFonts (SKCanvas canvas, int width, int height) using (var stream = new SKManagedStream (resource)) using (var tf = SKTypeface.FromStream (stream)) { paint.Color = XamPurple; - paint.TextSize = 40; + paint.TextSize = 60; paint.Typeface = tf; canvas.DrawText (text, 50, 200, paint); diff --git a/samples/SharedDemo/content-font.ttf b/samples/SharedDemo/content-font.ttf index a4666b5346..f89d32be30 100644 Binary files a/samples/SharedDemo/content-font.ttf and b/samples/SharedDemo/content-font.ttf differ diff --git a/samples/SharedDemo/embedded-font.ttf b/samples/SharedDemo/embedded-font.ttf index a4666b5346..f89d32be30 100644 Binary files a/samples/SharedDemo/embedded-font.ttf and b/samples/SharedDemo/embedded-font.ttf differ