root/test/Gradient/test09.c

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

DEFINITIONS

This source file includes following definitions.
  1. main

#include <libming.h>

int main()
{
        SWFMovie m = newSWFMovieWithVersion(8);
        SWFGradient g = newSWFGradient();

        SWFGradient_addEntry(g, 0, 0, 0, 0, 255);       
        SWFGradient_addEntry(g, 1, 255, 255, 255, 255); 

        SWFFillStyle fs = newSWFGradientFillStyle(g, SWFFILL_LINEAR_GRADIENT);
        SWFShape shape = newSWFShape();
        SWFShape_setRightFillStyle(shape, fs);
        
        SWFFill fill = newSWFFill(fs);
        SWFFill_move(fill, 50, 50);
        
        SWFShape_setLine(shape, 1, 0,0,0,255);
        SWFShape_drawLine(shape, 100, 0);
        SWFShape_drawLine(shape, 0, 100);
        SWFShape_drawLine(shape, -100, 0);
        SWFShape_drawLine(shape, 0, -100);

        SWFMovie_add(m, (SWFBlock)shape);
        SWFMovie_save(m, "test09.swf");
        return 0;

}

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