FVIL.Data.CFviImage image = cFviImageView1.Image;
FVIL.GDI.CFviGdiString gstr1 = new FVIL.GDI.CFviGdiString();
m_overlay2.Figures.Add(gstr1);
gstr1.Text = System.String.Format("SIZE: {0}x{1}", image.HorzSize, image.VertSize );
gstr1.Position = new FVIL.Data.CFviPoint( 10, 10 );
gstr1.Color = System.Drawing.Color.FromArgb(0xFF,0x00,0x00);
FVIL.GDI.CFviGdiString gstr2 = new FVIL.GDI.CFviGdiString();
m_overlay2.Figures.Add(gstr2);
gstr2.Text = System.String.Format("CH : {0}", image.Channel );
gstr2.Position = new FVIL.Data.CFviPoint(10, gstr1.GetClipRect().Ed.Y);
gstr2.Color = System.Drawing.Color.FromArgb(0xFF,0xFF,0x00);
FVIL.GDI.CFviGdiString gstr3 = new FVIL.GDI.CFviGdiString();
m_overlay2.Figures.Add(gstr3);
gstr3.Text = System.String.Format("TYPE: {0}", image.ImageType.ToString() );
gstr3.Position = new FVIL.Data.CFviPoint( 10, gstr2.GetClipRect().Ed.Y );
gstr3.Color = System.Drawing.Color.FromArgb(0xFF,0x00,0xFF);