Imports System
Imports System.ComponentModel
Imports System.Windows.Forms
Imports System.Data
Imports System.Configuration
Imports System.Drawing
Imports System.Drawing.Drawing2D
Imports System.Drawing.Text
Imports System.Globalization
Imports System.Text
Imports System.Collections
Public Class MainClass
Shared Sub Main()
Dim myform As Form = New ShadowFontsForm()
Application.Run(myform)
End Sub
End Class
Public Class ShadowFontsForm
Inherits System.Windows.Forms.Form
#Region " Windows Form Designer generated code "
Public Sub New()
MyBase.New()
'This call is required by the Windows Form Designer.
InitializeComponent()
'Add any initialization after the InitializeComponent() call
End Sub
'Form overrides dispose to clean up the component list.
Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
If disposing Then
If Not (components Is Nothing) Then
components.Dispose()
End If
End If
MyBase.Dispose(disposing)
End Sub
'Required by the Windows Form Designer
Private components As System.ComponentModel.IContainer
'NOTE: The following procedure is required by the Windows Form Designer
'It can be modified using the Windows Form Designer.
'Do not modify it using the code editor.
<System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
'
'ShadowFontsForm
'
Me.AutoScaleBaseSize = New System.Drawing.Size(46, 109)
Me.ClientSize = New System.Drawing.Size(292, 266)
Me.Font = New System.Drawing.Font("Microsoft Sans Serif", 72.0!)
Me.Name = "ShadowFontsForm"
Me.Text = "ShadowFontsForm"
End Sub
#End Region
Private Function GetStringPath(ByVal s As String, ByVal dpi As Single, ByVal rect As RectangleF, ByVal font As Font, ByVal format As StringFormat) As GraphicsPath
Dim path As GraphicsPath = New GraphicsPath()
Dim emSize As Single = dpi * font.SizeInPoints / 72
path.AddString(s, font.FontFamily, CInt(font.Style), emSize, rect, format)
Return path
End Function
Private Sub ShadowFontsForm_Paint(ByVal sender As Object, ByVal e As System.Windows.Forms.PaintEventArgs) Handles MyBase.Paint
Dim g As Graphics = e.Graphics
Dim s As String = "String String String String String"
Dim offset As Single = 4
Dim size As SizeF = New SizeF(Me.ClientRectangle.Width - offset, Me.ClientRectangle.Height - offset)
Dim rectShadow As RectangleF = New RectangleF(offset, offset, size.Width, size.Height)
Dim rect As RectangleF = New RectangleF(0, 0, size.Width, size.Height)
Dim font As Font = Me.Font
Dim format As StringFormat = StringFormat.GenericTypographic
Dim dpi As Single = g.DpiY
Dim pathShadow As GraphicsPath = GetStringPath(s, dpi, rectShadow, font, format)
Dim path As GraphicsPath = GetStringPath(s, dpi, rect, font, format)
g.FillPath(Brushes.Black, pathShadow)
g.FillPath(Brushes.Red, path)
End Sub
End Class
|