Home Accessibility Courses Twitter The Mouth Facebook Resources Site Map About Us Contact
 
For 2023 (and 2024 ...) - we are now fully retired from IT training.
We have made many, many friends over 25 years of teaching about Python, Tcl, Perl, PHP, Lua, Java, C and C++ - and MySQL, Linux and Solaris/SunOS too. Our training notes are now very much out of date, but due to upward compatability most of our examples remain operational and even relevant ad you are welcome to make us if them "as seen" and at your own risk.

Lisa and I (Graham) now live in what was our training centre in Melksham - happy to meet with former delegates here - but do check ahead before coming round. We are far from inactive - rather, enjoying the times that we are retired but still healthy enough in mind and body to be active!

I am also active in many other area and still look after a lot of web sites - you can find an index ((here))
Using the gd module and library
Resources. example from a Well House Consultants training course
More on Resources. [link]

This example is described in the following article(s):
   • Graphics in Lua - an example using the gd library - [link]

This example references the following resources:
http://lua-gd.luaforge.net/manual.html

Source code: lugra Module: U118
require "gd"

--[[ This is a demonstration of graphics in Lua,
using the gd library. In this example, we have
hard coded constant data and scale factors to make
the code easier to follow as a "first example"
]]


-- Lua-gd reference manual is at
-- http://lua-gd.luaforge.net/manual.html

-- For demo purposes - data to draw

todraw = [[
Devizes 11000 11009 10975 10902 10793 10653
Warminster 17000 19184 21338 23445 25499 27496
Chippenham 34000 38017 42023 45976 49852 53635
Westbury 11000 12982 14841 16601 18279 19883
Trowbridge 28000 33032 37753 42225 46487 50563
Calne 12000 12263 12411 12466 12446 12366
Dilton_Marsh 2000 2169 2346 2527 2708 2888
Bradford-o-A 9000 9355 9570 9683 9718 9693
Malmesbury 4000 3955 3905 3849 3786 3717
Melksham 22000 24154 26357 28572 30772 32942
Corsham 12000 12897 13849 14831 15826 16822
]]

-- Set up a 450 x 400 pixel image

local image = gd.create(450,400)

-- Allocate the basic colours, and a table of colours
-- for the vectors we will be adding

white = image:colorAllocate(255,255,255)
yellow = image:colorAllocate(255,255,192)
blue = image:colorAllocate(0,0,64)
black = image:colorAllocate(0,0,0)

linecolours = {{96,96,32},{32,128,32},{32,32,128},
        {128,32,32},{0,64,128},{128,64,0},
        {64,0,128},{0,128,64},{128,0,64},
        {64,128,0},{0,192,0},{0,0,192}}

-- Draw the framework

image:fill(0,0,blue)
image:filledRectangle(5,5,444,394,white)
image:filledRectangle(50,50,350,350,yellow)

-- Draw each line of data

town = 0
for line in string.gmatch(todraw,"(.-)\n") do
        town = town + 1
        ccol = linecolours[town]
        colour = image:colorAllocate(ccol[1],
                ccol[2],ccol[3])
        posn = 0
        for val in string.gmatch(line,"%S+") do
                if posn == 0 then
                        place = val
                elseif posn == 1 then
                        starter = tonumber(val)
                        prevval = starter
                else
                        nextval = tonumber(val)
                        x1 = 50 + 300 * (posn - 2) / 5
                        x2 = 50 + 300 * (posn - 1) / 5
                        y1 = 600 - 300 * prevval/starter
                        y2 = 600 - 300 * nextval/starter
                        image:line(x1,y1,x2,y2,colour)
                        prevval = nextval
                end
                posn = posn+1
        end

        -- Offset for Westbury is a kludge to avoid
        -- it overlapping the text for Trowbridge!

        if place == "Westbury" then
        image:string(gd.FONT_SMALL,360,y2-15,place,colour)
        else
        image:string(gd.FONT_SMALL,360,y2-5,place,colour)
        end
end

-- Top and tail the graph

image:string(gd.FONT_LARGE,30,18,
        "Relative Population Growth - North / West Wilts"
        ,black)
image:string(gd.FONT_LARGE,30,370,
        "From 2007 - 2027 - Graph for demonstration only"
        ,black)

-- And save to file

image:jpeg("MyImage.jpg",40)

-- Use jpegStr instead to return a string, then you
-- could use this sort of code to generate graphics
-- from Lua 'on the fly' on a web server.

Learn about this subject
This module and example are covered on the following public courses:
 * Learning to program in Lua
 * Lua Programming
 * Lua Programming
Also available on on site courses for larger groups

Books covering this topic
Yes. We have over 700 books in our library. Books covering Lua are listed here and when you've selected a relevant book we'll link you on to Amazon to order.

Other Examples
This example comes from our "Resources." training module. You'll find a description of the topic and some other closely related examples on the "Resources." module index page.

Full description of the source code
You can learn more about this example on the training courses listed on this page, on which you'll be given a full set of training notes.

Many other training modules are available for download (for limited use) from our download centre under an Open Training Notes License.

Other resources
• Our Solutions centre provides a number of longer technical articles.
• Our Opentalk forum archive provides a question and answer centre.
The Horse's mouth provides a daily tip or thought.
• Further resources are available via the resources centre.
• All of these resources can be searched through through our search engine
• And there's a global index here.

Web site author
This web site is written and maintained by Well House Consultants.

Purpose of this website
This is a sample program, class demonstration or answer from a training course. It's main purpose is to provide an after-course service to customers who have attended our public private or on site courses, but the examples are made generally available under conditions described below.

Conditions of use
Past attendees on our training courses are welcome to use individual examples in the course of their programming, but must check the examples they use to ensure that they are suitable for their job. Remember that some of our examples show you how not to do things - check in your notes. Well House Consultants take no responsibility for the suitability of these example programs to customer's needs.

This program is copyright Well House Consultants Ltd. You are forbidden from using it for running your own training courses without our prior written permission. See our page on courseware provision for more details.

Any of our images within this code may NOT be reused on a public URL without our prior permission. For Bona Fide personal use, we will often grant you permission provided that you provide a link back. Commercial use on a website will incur a license fee for each image used - details on request.

You can Add a comment or ranking to this page

© WELL HOUSE CONSULTANTS LTD., 2024: 48 Spa Road • Melksham, Wiltshire • United Kingdom • SN12 7NY
PH: 01144 1225 708225 • EMAIL: info@wellho.net • WEB: http://www.wellho.net • SKYPE: wellho

PAGE: http://www.wellho.net/resources/ex.php • PAGE BUILT: Sun Oct 11 14:50:09 2020 • BUILD SYSTEM: JelliaJamb