FBA The Creator

The True Multiplatform PC / PocketPC Opensource Development Tool - Read Only Mode - Kept only for historical purposes - Thank you all ;)
It is currently Thu Jun 04, 2026 1:32 am

All times are UTC




Post new topic  Reply to topic  [ 2 posts ] 
Author Message
PostPosted: Thu Jul 10, 2008 11:59 am 
Offline
FBA Startup-Logo Creator
FBA Startup-Logo Creator
User avatar

Joined: Wed Jun 18, 2008 11:40 am
Posts: 100
Location: Brighton, UK
If you try drawing a gfx font text thats coloured and you have a blend < 255 then it corrupts the text...

For example...

Image

Code:
--------------------------------------------------- 
-- FBA Tutorials
--
-- Tutorial / 09b / Gfx Font
--
---------------------------------------------------
--
-- In this sample, you can see how to use a cool gfx font
-- inside your FBA program.
--
-- Font made by Boiled Sweets (many thanks :))
---------------------------------------------------

-- load our graphic font
image = loadimage("nums.png")
font = loadgfxfont(image, "0123456789", 10)
count = 0

function onmainloop()
        clear(0,2550,0)

        blending(200)
        -- draw counter
        drawgfxtext(font, 10, 10, count, 255,0,0)
       
        -- get text width and draw a number aligned to right
        width = gfxtextwidth(font, 9)       
        drawgfxtext(font, screenwidth() - width , 200, 9)

        -- get text width and draw a number aligned to center
        width = gfxtextwidth(font, 69)       
        drawgfxtext(font, screenwidth()/2 - width/2 , 100, 69)
       
        count = count + 1
       
end

function onstylusdown(x,y)
        quit()
end

_________________
http://www.boiledsweets.com


Top
   
PostPosted: Thu Jul 10, 2008 12:46 pm 
Offline
FBA Administrator
FBA Administrator
User avatar

Joined: Fri Mar 21, 2008 11:19 pm
Posts: 238
Location: Rome - Italy
Ok i'll check that


Top
   
Display posts from previous:  Sort by  
Post new topic  Reply to topic  [ 2 posts ] 

All times are UTC


Who is online

Users browsing this forum: No registered users and 1 guest


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Jump to:  
cron
Powered by phpBB® Forum Software © phpBB Limited