Using Win32 functions in Visual FoxPro Image Gallery
GDI+ Graphics
..msdn
GdipCreateFromHDC
GdipCreateFromHDC2
GdipCreateFromHWND
GdipDeleteGraphics
GdipDrawImageI
GdipDrawImageRectI
GdipDrawImageRectRectI
GdipDrawLineI
GdipDrawPieI
GdipDrawRectangle
GdipFillPieI
GdipFillRectangle
GdipGetDC
GdipGetDpiX
GdipGetDpiY
GdipGetPageScale
GdipGetPageUnit
GdipReleaseDC
GdipResetWorldTransform
GdipRotateWorldTransform
GdipSetClipRectI
GdipSetPageScale
GdipSetPageUnit
GdipSetTextRenderingHint
GdipSetWorldTransform
GdipTranslateWorldTransform
Code examples:
GDI+: Drawing a Pie Chart
GDI+: Drawing a Pie Chart

User rating: 0/10 (0 votes)
Rate this code sample:
  • ~
More code examples    Listed functions    Add comment     W32 Constants      Translate this page Printer friendly version of this code sample
Before you begin:
This code sample shows how to use PieChart GDI+ functions to build a simple chart and store it in a graphics file.



The code is based on custom GDI+ class. Download the class module first and save it in gdiplus.prg file.

 
* an instance of gdiplusinit should be created before 
* and released after using any of gdi+ objects 
SET PROCEDURE TO gdiplus ADDITIVE
PRIVATE oGdiplus
oGdiplus = CREATEOBJECT("gdiplusinit")
 
LOCAL oChart As PieChart, cFilename
oChart = CREATEOBJECT("PieChart", 200, 200)
cFilename = "c:\temp\temp.png"
 
WITH oChart
    .AddPie(24, "Maintenance")  && percent, legend
    .AddPie(30, "Payroll")
    .AddPie(5, "Insurance")
    .AddPie(21, "Transportation")
    .AddPie(10, "Storage")
    .AddPie(10, "Other")
 
    * build a piechart and save result 
    * to the specified graphics file
    .SaveToFile(cFilename)
 
    OpenResultImage(cFilename)
ENDWITH
* end of main
 
DEFINE CLASS PieChart As Session
    pieslices=NULL  && collection
 
    piewidth=0  && main rectangle
    pieheight=0
 
    startangle=-90  && degrees; starts from 12:00
    marginx=10
    marginy=10
    legendwidth=140
    legendheight=30
 
PROCEDURE Init(nWidth, nHeight)
    THIS.piewidth=m.nWidth
    THIS.pieheight=m.nHeight
    THIS.pieslices = CREATEOBJECT("Collection")
 
PROCEDURE AddPie(nPercent, cLegend)
    LOCAL oSlice As PieSlice, nSweepAngle
    nSweepAngle = (360 * nPercent)/100
 
    oSlice = CREATEOBJECT("PieSlice", THIS.startangle, m.nSweepAngle,;
        m.cLegend, THIS.pieslices.Count)
 
    THIS.pieslices.Add(m.oSlice)
    THIS.startangle = THIS.startangle + m.nSweepAngle
    oSlice=NULL
 
PROCEDURE SaveToFile(cFilename)
    DECLARE INTEGER GdipDrawPieI IN gdiplus;
        INTEGER graphics, INTEGER pen, INTEGER x,;
        INTEGER y, INTEGER width, INTEGER height,;
        SINGLE startAngle, SINGLE sweepAngle
 
    DECLARE INTEGER GdipFillPieI IN gdiplus;
        INTEGER graphics, INTEGER brush, INTEGER x,;
        INTEGER y, INTEGER width, INTEGER height,;
        SINGLE startAngle, SINGLE sweepAngle
 
    LOCAL objpen As gdipen, objbrush As gdisolidbrush,;
        objbitmap As gdibitmap, objslice As PieSlice,;
        nFillColor
 
    objbitmap = CREATEOBJECT("gdibitmap",;
        THIS.piewidth+THIS.marginx*4+THIS.legendwidth,;
        THIS.pieheight+THIS.marginy*2)
 
    * Pen and Font objects to be used for drawing the chart
    objpen = CREATEOBJECT("gdipen", ARGB(255,255,255,255), 1)
    objfont = CREATEOBJECT("gdifont", "Arial", 9, 0, ARGB(0,0,0,128))
 
    WITH objbitmap
        .graphics.FillRectangle(ARGB(255,255,255,255), 0, 0,;
            .imgwidth, .imgheight)
 
        FOR EACH objslice IN THIS.pieslices
            nFillColor = ARGB(64+INT(RAND()*128),;
                64+INT(RAND()*128), 64+INT(RAND()*128),;
                100+RAND()*155)
 
            * the Brush with random color is created for each pie slice
            objbrush = CREATEOBJECT("gdisolidbrush", m.nFillColor)
 
            LOCAL nLegendX, nLegendY
            nLegendX = THIS.piewidth+THIS.marginx*3
            nLegendY = objslice.sliceindex*THIS.legendheight+THIS.marginy
 
            .graphics.FillRectangle(m.nFillColor,;
                m.nLegendX, m.nLegendY, 12, 12)
 
            .graphics.DrawText(objslice.legend, objfont,;
                m.nLegendX+20, m.nLegendY,;
                THIS.legendwidth, THIS.legendheight)
 
            * draw the background of the pie slice
            = GdipFillPieI(.graphics.graphics, objbrush.brush,;
                THIS.marginx, THIS.marginy,;
                THIS.piewidth, THIS.pieheight,;
                objslice.startangle, objslice.sweepangle)
 
            * draw the contour of the pie slice
            = GdipDrawPieI(.graphics.graphics, objpen.hpen,;
                THIS.marginx, THIS.marginy,;
                THIS.piewidth, THIS.pieheight,;
                objslice.startangle, objslice.sweepangle)
 
            objbrush=NULL
        NEXT
 
        .SaveToFile(m.cFilename)
    ENDWITH
ENDDEFINE
 
DEFINE CLASS PieSlice As Session
* in C++ that would be a STRUCT
    startangle=0
    sweepangle=0
    legend=""
    sliceindex=0
 
PROCEDURE Init(nStartAngle, nSweepAngle, cLegend, nIndex)
    THIS.startangle=m.nStartAngle
    THIS.sweepangle=m.nSweepAngle
    THIS.legend=m.cLegend
    THIS.sliceindex=m.nIndex
 
ENDDEFINE
 
PROCEDURE OpenResultImage(cFilename)
* opens image file using default application
    DECLARE INTEGER ShellExecute IN shell32;
        INTEGER hWindow, STRING lpOperation,;
        STRING lpFile, STRING lpParameters,; 
        STRING lpDirectory, INTEGER nShowCmd
    = ShellExecute(0, "open", m.cFilename, "", "", 3)
 
 
 

User rating: 0/10 (0 votes)
Rate this code sample:
  • ~
4037 bytes  
Created: 2006-05-12 16:40:08  
Modified: 2006-05-12 18:37:31  
Visits in 7 days: 122  
Listed functions:
GdipDrawPieI
GdipFillPieI
ShellExecute
Printer friendly API declarations
Word Index links for this example:
Translate this page:
  Spanish    Portuguese    German    French    Italian  
FreeTranslation.com offers instant, free translations of text or web pages.
User Contributed Notes:
There are no notes on this subject.


Copyright © 2001-2013 News2News, Inc. Before reproducing or distributing any data from this site please ask for an approval from its owner. Unless otherwise specified, this page is for your personal and non-commercial use. The information on this page is presented AS IS, meaning that you may use it at your own risk. Microsoft Visual FoxPro and Windows are trade marks of Microsoft Corp. All other trademarks are the property of their respective owners. 

Privacy policy
Credits: PHP (4.4.9), an HTML-embedded scripting language, MySQL (5.1.55-log), the Open Source standard SQL database, AceHTML Freeware Version 4, freeware HTML Editor of choice.   Hosted by Korax Online Inc.
Last Topics Visited (54.242.188.217)
45.37 min.
Function group: 'Setup API functions'
45.42 min.Function: 'CryptReleaseContext'
Function group: 'Cryptography Reference'
5.97 hrs.Function: 'GetWindowThreadProcessId'
8.02 hrs.Function: 'GetCapture'
Function group: 'Mouse Input'
9.63 hrs.Function: 'SelectObject'
12.7 hrs.Example: 'A class that encrypts and decrypts files using Cryptography API Functions'
15 hrs.Example: 'How to play AVI file on the _screen'
 Example: 'How to enable the SE_SHUTDOWN_NAME privilege for the application'
17.93 hrs.Example: 'Reading Internet Query options'
19.83 hrs.Function: 'GetIpNetTable'
Function group: 'IP Helper'
Google
Advertise here!