Create wmf file and draw to it : Wmf « 2D « VB.Net

Home
VB.Net
1.2D
2.Application
3.Class
4.Data Structure
5.Data Types
6.Database ADO.net
7.Development
8.Event
9.File Directory
10.Generics
11.GUI
12.Language Basics
13.LINQ
14.Network Remote
15.Security
16.Thread
17.Windows Presentation Foundation
18.Windows System
19.XML
20.XML LINQ
VB.Net Tutorial
VB.Net by API
VB.Net » 2D » WmfScreenshots 
Create wmf file and draw to it

Imports System
Imports System.Windows.Forms
Imports System.Collections.Generic
Imports System.ComponentModel
Imports System.Drawing.Imaging
Imports System.Drawing

Public Class MainClass

   Shared Sub Main()
        Const WID As Integer = 200
        Dim file_name As String = "test.wmf"

        
        Dim gr As Graphics
        gr = Graphics.FromImage(new Bitmap(100,100))

        ' Make a Graphics object so we can use its hDC as a reference.
        Dim hdc As IntPtr = gr.GetHdc

        ' Make the Metafile, using the reference hDC.
        Dim bounds As New RectangleF(00, WID, WID)
        Dim mf As New Metafile(file_name, hdc, _
            bounds, MetafileFrameUnit.Pixel)
        gr.ReleaseHdc(hdc)

        ' Make a Graphics object and draw.
        gr = Graphics.FromImage(mf)
        gr.PageUnit = GraphicsUnit.Pixel
        gr.Clear(Color.White)
        gr.DrawEllipse(Pens.Red, bounds)
        gr.DrawLine(Pens.Blue, 00, WID, WID)
        gr.DrawLine(Pens.Blue, WID, 00, WID)

        ' Close the metafile and free resources.
        gr.Dispose()
        mf.Dispose()



   End Sub 

End Class


           
       
Related examples in the same category
1.Save an Image to Wmf file format
2.Read from wmf file and display it on a form
3.Shrink a wmf Image
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.