**** Merged from MCS ****
[mono-project.git] / mcs / class / System.Drawing / Samples / System.Drawing / font.cs
blobb9c96e8f628828821e8970178d2bc8b894d869bd
1 //
2 // font.cs
3 // font/text operations
4 //
5 // Author:
6 // Alexandre Pigolkine(pigolkine@gmx.de)
7 //
8 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
9 //
10 // Permission is hereby granted, free of charge, to any person obtaining
11 // a copy of this software and associated documentation files (the
12 // "Software"), to deal in the Software without restriction, including
13 // without limitation the rights to use, copy, modify, merge, publish,
14 // distribute, sublicense, and/or sell copies of the Software, and to
15 // permit persons to whom the Software is furnished to do so, subject to
16 // the following conditions:
17 //
18 // The above copyright notice and this permission notice shall be
19 // included in all copies or substantial portions of the Software.
20 //
21 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
25 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
26 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
27 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
30 using System;
31 using System.Drawing;
32 using System.Drawing.Text;
33 using System.Drawing.Imaging;
35 namespace MonoSamples.System.Drawing
37 public class FontSample
39 public static void Main () {
41 float width = 400.0F;
42 float height = 800.0F;
44 FontCollection ifc = new InstalledFontCollection ();
45 foreach (FontFamily ffm in ifc.Families) {
46 Console.WriteLine (ffm.Name);
49 Font f = new Font ("Arial",12);
50 Console.WriteLine ("Height: {0}", f.Height);
52 Bitmap bmp = new Bitmap ((int) width, (int) height);
53 Graphics gr = Graphics.FromImage (bmp);
54 gr.Clear (Color.White);
56 Brush br = new SolidBrush (Color.Black);
57 gr.DrawString ("The test string", f, br, 10, 10);
59 bmp.Save ("font.png", ImageFormat.Png);
60 Console.WriteLine ("output file font.png");