root/test/Font/test03-cxx.C

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. main

#include <mingpp.h>
#include <cstdlib>

int main()
{
        try {
                SWFMovie *m = new SWFMovie();
                SWFText *text = new SWFText(1);
        
                SWFFont *font = new SWFFont(MEDIADIR "/test.ttf");
        
                float w = font->getStringWidth("The quick brown fox jumps over the lazy dog. 1234567890");
        
                text->setFont( font);
                text->setColor(0, 0, 0, 0xff);
                text->setHeight(20);
                text->moveTo(w, 0);
                text->addString("|", NULL);
                m->add(text);
                m->nextFrame();
                m->save("test03.swf");
        }
        catch(SWFException &e)
        {
                std::cerr << "SWFException: " << e.what() << std::endl << std::endl;
                return EXIT_FAILURE;
        }
        return 0;
}
        

/* [<][>][^][v][top][bottom][index][help] */