⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 test07.c

📁 Ming is a library for generating Macromedia Flash files (.swf), written in C, and includes useful ut
💻 C
字号:
#include <libming.h>int main(){	SWFMovie m = newSWFMovieWithVersion(8);	SWFMovie_setBackground(m, 0, 0, 0);	SWFMovie_setDimension(m, 500, 450);		SWFGradient g = newSWFGradient();	SWFGradient_addEntry(g, 0.0, 255, 255, 255, 255);		SWFGradient_addEntry(g, 1.0, 255, 255, 255, 0);	SWFFillStyle fill = newSWFGradientFillStyle(g, SWFFILL_RADIAL_GRADIENT);	SWFShape shape = newSWFShape();	SWFShape_setRightFillStyle(shape, fill);	SWFShape_drawCircle(shape, 55);		SWFDisplayItem i = SWFMovie_add(m, shape);	SWFDisplayItem_moveTo(i, 100, 100);		SWFMovie_save(m, "test07.swf");	return 0;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -