C语言绘图示例-商标徽标
各种计算机语言都有强大的绘图功能,在数学层面上是相同的原理,语言表达式有些许差异。博文示例一些商标徽标的绘制方法,供喜欢用计算机绘图的朋友参考。
部分图例如下:
下面的代码是用简单的C语言写的,很简洁 ,适用于初学者。
// myspringc v2.7 可编译安卓手机本机 app 应用
// 此样例可复制黏贴到 myspringc 编译
// 亦可用vb6, VC , Java 等改写
//==== 商标徽标绘图示例 ======
// 制作人:张纯叔 ( [email protected] )
//==== myspringc v2.7 编译调试 =============
Canvas cs; //绘图画布
string sBarDes[10];
int nBarId[10];
float src[4]; //ClearDraw (cls) clear screen
FileInput fin;
string fn;
int size[2];
int dy,dm,dd;
int alln;
int i,n,k,j;
string s,ss;
float x0,y0,x1,y1;
float sx,sy,px,py,sx1,sy1,sx2,sy2;
float pi=3.1415926535;
double L,a;
double tn;
main(){
setDisplay(1);
cs.Active();
sBarDes[0]="设计主页";
nBarId[0]=100;
sBarDes[1]="选择图标";
nBarId[1]=101;
sBarDes[2]="图标目录";
nBarId[2]=102;
sBarDes[3]="保存图片";
nBarId[3]=103;
sBarDes[4]="退出程序";
nBarId[4]=104;
sBarDes[5]="P+"; //清除画板
nBarId[5]=105;
setToolBarHeight(6);
setButtonTextSize(13);
setToolBarBackgroundColor(255,192,192,192);
setButtonColor(255,0,0,240);
setButtonTextColor(255,255,255,0);
setToolBar(100,myToolBarProc,sBarDes,nBarId,6);
setTitle("商标徽标设计");
logo ();
while (){}
}// main()
logo (){
cs.SetStrokeWidth(3);//画笔线宽
cs.SetFillMode(1);//0不填色,1填色
cs.SetColor (170,250,250,185);
cs.DrawRect(20,20,700,800);
cs.SetFillMode(0);//0不填色,1填色
cs.SetColor(255,255,0,0);
cs.DrawRect(10,10,710,810);
int i,th;
for (i=0;i<40;i++){
th=i*5;
cs.SetFillMode(1);
cs.SetColor(50,200,300,120);
cs.DrawOval(360,400,100,300,th); }
for (i=0;i<40;i++){
th=i*5;
cs.SetFillMode(0);
cs.SetColor(250,250,150,120);
cs.DrawOval(360,400,100,300,th); }
for(i=0;i<40;i++){
th=i*5;
cs.SetColor(255,250,0,0);
cs.DrawOval(360,400,40,180,th); }
cs.SetStrokeWidth (2);
cs.SetColor (255,0,0,255);
cs.SetFillMode(0);
cs.SetTextSize (90);
s="商标徽标设计";
cs.DrawText (s,100,200);
cs.SetColor (255,255,255,255);
cs.SetFillMode(1);
cs.DrawText (s,100,200);
cs.SetStrokeWidth (1);
for (i=0;i<240;i++){
cs.SetColor (170,20,240,185);
cs.DrawLine (i*3+0,820,i*3+0,1100);
cs.DrawLine (i*5+0,820,i*5+0,1100); }
L=39;
px=320;
py=350;
for (i=-11;i<12;i++){// Draw "M"
a=pi/60*i*2;
cs.SetColor(225,138,100,220);
sx1=(float)(px+5+L*sin (a));
sy1=(float)(py-L*cos (a));
cs.DrawCircle(sx1,sy1,20);
sx2=(float)(px+5+L*sin (a)+70);
sy2=(float)(py-L*cos (a));
cs.DrawCircle(sx2,sy2,20);}
cs.DrawRect(px-50,py-15,px-10,py+140);
cs.DrawRect(px+20,py-15,px+60,py+140);
cs.DrawRect(px+90,py-15,px+130,py+140);
cs.DrawCircle(px-30,py+140,20);
cs.DrawCircle(px+40,py+140,20);
cs.DrawCircle(px+110,py+140,20);
cs.SetColor (210,25,15,255);
cs.SetFillMode(1);
cs.SetTextSize (40);
s="设计制作:Micelu co., Ltd.";
cs.DrawText(s,42,951);
cs.SetColor (250,255,155,0);
cs.DrawText (s,40,950);
cs.Update();//show out drawing
}//logo()
savepic (){
fin.SetTitle("保存图片文件(*.jpg;*.bmp)");
fin.SetFilter(".bmp;.jpg;.png");
fin.SetMode(1);
fin.Show();
if(fin.GetCount()==1){
fn=fin.GetFileName(0);
cs.SaveBitmap(fn); }
} //savepic ()
myToolBarProc(int nBtn,int nContext)
{
if(nBtn==100){//设计主页 draw logo
setDisplay (1);
cs.ClearDraw (0,src);
logo ();
cs.Update (); }
if(nBtn==101){//选择图形
setDisplay (1);
tn=doubleInput("选择图标"," 图标序号 : 1 - 100 \n 输入 0 或 [空] 则取消");
if(tn==0)return;
if (tn==1)mark1();
if (tn==2)mark2();
if (tn==3)mark3();
if (tn==4)mark4();
if (tn==5)mark5();
if (tn==6)mark6();
if (tn==7)mark7();
if (tn==8)mark8();
if (tn==9)mark9();
if (tn==10)mark10();
if (tn==11)mark11();
if (tn==12)mark12();
if (tn==13)mark13();
if (tn==14)mark14();
if (tn==15)mark15();
if (tn==16)mark16();
if (tn==17)mark17();
if (tn==18)mark18();
if (tn==19)mark19();
if (tn==20)mark20();
if (tn==21)mark21();
if (tn==22)mark22();
if (tn==23)mark23();
if (tn==24)mark24();
if (tn==25)mark25();
if (tn==26)mark26();
if (tn==27)mark27();
if (tn==28)mark28();
if (tn==29)mark29();
if (tn==30)mark30();
if (tn==31)mark31();
if (tn==32)mark32();
if (tn==33)mark33();
if (tn==34)mark34();
if (tn==35)mark35();
if (tn==36)mark36();
if (tn==37)mark37();
if (tn==38)mark38();
if (tn==39)mark39();
if (tn==40)mark40 ();
if (tn==41)mark41 ();
if (tn==42)mark42 ();
if (tn==43)mark43 ();
if (tn==44)mark44 ();
if (tn==45)mark45 ();
if (tn==46)mark46 ();
if (tn==47)mark47 ();
if (tn==48)mark48 ();
if (tn==49)mark49 ();
if (tn==50)mark50 ();
setDisplay (1); }
if(nBtn==102){//关闭图板 显示目录
setDisplay (0);
content(); }
if(nBtn==103){//保存图片
savepic(); }
if(nBtn==104){//退出程序
clearOutput();
cs.ClearDraw (0,src);
setDisplay (0);
exit (0); }
if(nBtn==105){//
//disMsg(0,"清除画板");
// cs.ClearDraw (0,src);
//cs.Update ();
autoshow (); }
}//nBtn()
autoshow(){
cs.ClearDraw (0,src);
cs.Update ();
tn=tn+1;
if (tn>50)tn=1;
if (tn==1)mark1();
if (tn==2)mark2();
if (tn==3)mark3();
if (tn==4)mark4();
if (tn==5)mark5();
if (tn==6)mark6();
if (tn==7)mark7();
if (tn==8)mark8();
if (tn==9)mark9();
if (tn==10)mark10();
if (tn==11)mark11();
if (tn==12)mark12();
if (tn==13)mark13();
if (tn==14)mark14();
if (tn==15)mark15();
if (tn==16)mark16();
if (tn==17)mark17();
if (tn==18)mark18();
if (tn==19)mark19();
if (tn==20)mark20();
if (tn==21)mark21();
if (tn==22)mark22();
if (tn==23)mark23();
if (tn==24)mark24();
if (tn==25)mark25();
if (tn==26)mark26();
if (tn==27)mark27();
if (tn==28)mark28();
if (tn==29)mark29();
if (tn==30)mark30();
if (tn==31)mark31();
if (tn==32)mark32();
if (tn==33)mark33();
if (tn==34)mark34();
if (tn==35)mark35();
if (tn==36)mark36();
if (tn==37)mark37();
if (tn==38)mark38();
if (tn==39)mark39();
if (tn==40)mark40 ();
if (tn==41)mark41 ();
if (tn==42)mark42 ();
if (tn==43)mark43 ();
if (tn==44)mark44 ();
if (tn==45)mark45 ();
if (tn==46)mark46 ();
if (tn==47)mark47 ();
if (tn==48)mark48 ();
if (tn==49)mark49 ();
if (tn==50)mark50 ();
//sleep(1000);
}//autoshow ()
content (){
clearOutput ();
print " 1. Apollon 2. Napoleon";
print " 3. 工商银行 4. 交通银行";
print " 5. SC springc 6. 红心❤ LOVE";
print " 7. 三角牌轮胎 8. 三菱 Mitsubishi ";
print " 9. 三色圈 10. 玉兰花";
print "11. 七彩圆 12. 三叶草(1)";
print "13. 三叶草(2) 14. 四叶草";
print "15. 金十字 16. 梅花牌";
print "17. 转运轮 18. e 路通";
print "19. 双菱电器 20. 丰田汽车";
print "21. 雷诺汽车 22. adidas Sport";
print "23. adidas Sport 24. 中国人寿";
print "25. lotto sport 26. 双菱电机";
print "27. 晶花装饰 28. 上海建工";
print "29. 建设银行 30. Petter Sport ";
print "31. 五叶草花 32. 星月家纺";
print "33. 红宝石花 34. 雪佛兰";
print "35. 天和味精 36. 十字宝石";
print "37. 十字星花 38. 南十字星";
print "39. 八面菱珑 40. X 星球";
print "41. 六芒星型 42. 六菱星花";
print "43. 八卦图 44. 光大银行";
print "45. 星联文具 46. 农业银行";
print "47. 招商银行 48. 中国银行";
print "49. 联合文教用品 50. 三色服饰";
}//content()
mark1 (){
cs.ClearDraw (0,src);
cs.SetFillMode (1);
cs.SetColor (255,225,250,225);
cs.DrawRect (10,10,710,710);
cs.SetColor (255,255,250,250);
cs.DrawRect (100,100,600,600);
cs.SetFillMode(0);
cs.SetColor (255,255,20,25);
cs.DrawRect (100,100,600,600);
cs.SetFillMode(1);
cs.SetColor (255,255,0,25);
cs.DrawCircle(350,300,120);
cs.SetColor (255,25,25,255);
for (i=0;i<190;i++){ //draw triangle
cs.DrawLine (350,300,450-i,460); }
cs.SetColor (255,255,255,255);
for (i=0;i<54;i++){ //draw triangle
cs.DrawLine (350,420,376-i,460); }
s="APOLLON";
cs.SetColor (255,25,25,255);
cs.SetTextSize (56);
cs.SetTextStyle (1);
cs.DrawText (s,230,520);
cs.SetColor (255,255,255,255);
cs.DrawLine (349,299,450,460);
cs.DrawLine (349,299,260,460);
cs.DrawLine (260,460,450,460);
cs.Update ();
return;
}//mark1 ()
mark2 (){
cs.ClearDraw (0,src);
cs.SetFillMode (1);
cs.SetColor (255,255,200,255);
cs.DrawRect (10,10,710,710);
cs.SetColor (255,255,250,250);
cs.DrawRect (100,100,600,600);
cs.SetFillMode(0);
cs.SetColor (255,255,20,25);
cs.DrawRect (100,100,600,600);
cs.SetFillMode(1);
cs.SetColor (255,255,0,25);
cs.DrawCircle(350,250,70);
cs.SetColor (255,25,25,255);
for (i=0;i<90;i++){
cs.DrawLine (450-i,270+i,450-i,440);
cs.DrawLine (250+i,270+i,250+i,440); }
s="NAPOLEON";
cs.SetTextSize (39);
cs.SetTextStyle (1);
cs.DrawText (s,247,490);
cs.Update ();
}//mark2 ()
mark3 (){
cs.ClearDraw (0,src);
cs.SetFillMode (1);
cs.SetColor (255,0,200,255);
cs.DrawRect (10,10,710,710);
cs.SetColor (255,255,255,255);
cs.DrawRect (100,100,600,600);
cs.SetFillMode(0);
cs.SetStrokeWidth (2);
cs.SetColor (255,255,20,25);
cs.DrawRect (100,100,600,600);
cs.SetStrokeWidth (16);
cs.SetColor (255,255,0,25);
cs.DrawCircle(350,260,120);
cs.SetFillMode(1);
cs.SetStrokeWidth (3);
cs.DrawRect (280,190,420,330);
cs.SetColor (255,255,255,255);
cs.DrawRect (280,250,320,270);
cs.DrawRect (380,250,420,270);
cs.DrawRect (300,210,400,230);
cs.DrawRect (300,290,400,310);
cs.DrawRect (340,210,360,310);
cs.DrawRect (345,190,355,330);
cs.SetColor (255,25,25,25);
s="中国工商银行";
cs.SetTextSize (70);
cs.SetTextStyle (1);
cs.DrawText (s,148,560);
cs.DrawText (s,150,560);
cs.DrawText (s,152,560);
cs.SetTextSize (100);
cs.DrawText (”ICBC",240,470);
cs.SetColor (255,255,0,0);
cs.DrawLine (120,490,580,490);
cs.Update ();
}//mark3 ()
mark4 (){
cs.ClearDraw (0,src);
cs.SetFillMode (1);
cs.SetColor (205,120,240,255);
cs.DrawRect (10,10,710,710);
cs.SetColor (255,255,255,255);
cs.DrawRect (100,100,600,600);
cs.SetColor (205,125,255,205);
cs.DrawRect (120,220,580,480);
cs.SetFillMode(0);
cs.SetStrokeWidth (1);
cs.SetColor (255,255,20,25);
cs.DrawRect (100,100,600,600);
cs.SetFillMode(1);
cs.SetColor (205,25,0,250);
for (i=0;i<20;i++){ //分步绘出测试
cs.DrawCircle(211+i,370-i,55);
sleep (10);
cs.Update (); }
cs.SetColor(205,25,0,250);
for (i=0;i<42;i++){
cs.DrawLine (157+i,383-i,157+i,310-i);
sleep (60);
cs.Update (); }
cs.SetFillMode(0);
cs.SetColor (255,255,255,255);
for (i=0;i<27;i++){
cs.DrawCircle (217,375,52-i);
sleep (60);
cs.Update (); }
cs.SetFillMode(1);
cs.SetColor (205,25,0,255);
cs.DrawRect (212,370,272,380);
s="交通银行";
cs.SetTextSize (68);
// cs.SetTextStyle (0);
cs.DrawText (s,288,415);
cs.DrawText (s,291,415);
s="Bank of Communications";
cs.SetTextSize (40);
// cs.SetTextStyle (0);
cs.DrawText (s,120,530);
cs.SetColor (255,255,0,250);
cs.DrawText ("Bank",450,180);
cs.Update ();
}//mark4()
mark5 (){
cs.ClearDraw (0,src);
cs.SetFillMode (1);
cs.SetColor (205,120,240,255);
cs.DrawRect (10,10,710,710);
cs.SetColor (255,255,255,255);
cs.DrawRect (100,100,600,600);
cs.SetStrokeWidth (1);
cs.SetFillMode(0);
cs.SetColor (255,255,20,25);
cs.DrawRect (100,100,600,600);
//draw SC
cs.SetFillMode(1);
cs.SetColor(205,20,100,250);
cs.DrawOval (350,350,220,140,180);
cs.SetColor(255,250,250,250);
px=220;
py=300;
L=50;
for (i=0;i<40;i++){// Draw "S"
a=pi/60*i*2;
sx1=(float)(px+L-50*sin (a));
sy1=(float)(py+L*cos (a));
cs.DrawCircle(sx1,sy1,20);
sx2=(float)(px+L*sin (a)+50);
sy2=(float)(py-L*cos (a)+100);
cs.DrawCircle(sx2,sy2,20); }
px=430;
py=300;
L=50;
for(i=-15;i<15;i++){//Draw "C"
a=pi/60*i*2;
sx1=(float)(px-L*sin (a));
sy1=(float)(py-L*cos (a));
cs.DrawCircle(sx1,sy1,20);
sx2=(float)(px+L*sin (a));
sy2=(float)(py+L*cos (a)+100);
cs.DrawCircle(sx2,sy2,20); }
cs.DrawRect(px-30,py-10,px-70,py+110);
s="C语言手机编程 http:\\\\springc.com";
cs.SetTextSize (30);
cs.SetTextStyle (0);
cs.SetColor(205,200,100,100);
cs.DrawText (s,120,540);
cs.DrawText ("Spring C",120,150);
cs.Update ();
}//mark5 () SC
mark6 (){
cs.ClearDraw (0,src);
cs.SetFillMode (1);
cs.SetColor (205,250,200,255);
cs.DrawRect (10,10,710,710);
cs.SetColor (255,255,255,255);
cs.DrawRect (100,100,600,600);
cs.SetStrokeWidth (1);
cs.SetFillMode(0);
cs.SetColor (255,255,20,25);
cs.DrawRect (100,100,600,600);
//draw heart
px=350;
py=300;
cs.SetFillMode(1);
cs.SetColor(255,250,0,0);
cs.DrawCircle (px-60,py,80);
cs.DrawCircle (px+60,py,80);
for (i=0;i<122;i++){
cs.DrawLine(px,py+178,px-i,py+50);
cs.DrawLine(px,py+178,px+i,py+50); }
cs.SetTextSize (70);
cs.SetTextStyle (1);
cs.SetColor (255,255,255,255);
cs.DrawText ("LOVE",265,325);
cs.Update ();
}//mark6()
mark7 (){
cs.ClearDraw (0,src);
cs.SetFillMode (1);
cs.SetColor (205,250,200,255);
cs.DrawRect (10,10,710,710);
cs.SetColor (255,255,255,255);
cs.DrawRect (100,100,600,600);
cs.SetStrokeWidth (1);
cs.SetFillMode(0);
cs.SetColor (255,255,20,25);
cs.DrawRect (100,100,600,600);
//draw three triangle
cs.SetColor (255,255,25,25);
px=350;
py=100;
for (i=0;i<58;i++){ //draw triangle △
cs.DrawLine (px,py+100,px-i,py+200);
cs.DrawLine (px,py+100,px+i,py+200);
cs.DrawLine (px+58,py+200,px+58-i,py+300);
cs.DrawLine (px+58,py+200,px+58+i,py+300);
cs.DrawLine (px-58,py+200,px-58-i,py+300);
cs.DrawLine (px-58,py+200,px-58+i,py+300); }
cs.SetStrokeWidth (9);
cs.DrawCircle (px,py+233,138);
cs.SetFillMode (1);
cs.SetTextSize (60);
cs.SetTextStyle (1);
cs.DrawText ("三角牌轮胎",210,540);
cs.Update ();
}//mark7 ()
mark8(){
cs.ClearDraw (0,src);
cs.SetFillMode (1);
cs.SetColor (205,250,200,255);
cs.DrawRect (10,10,710,710);
cs.SetColor (255,255,255,255);
cs.DrawRect (100,100,600,600);
cs.SetStrokeWidth (1);
cs.SetFillMode(0);
cs.SetColor (255,255,20,25);
cs.DrawRect (100,100,600,600);
//draw three diamond
cs.SetColor (255,255,25,25);
px=350;
py=100;
for (i=0;i<58;i++){ //draw diamond △△d1-d3
cs.DrawLine (px,py+50,px-i,py+150);
cs.DrawLine (px,py+50,px+i,py+150);
cs.DrawLine (px,py+250,px-i,py+150);
cs.DrawLine (px,py+250,px+i,py+150);
cs.DrawLine (px-114,py+250,px-114-i,py+350);
cs.DrawLine (px-114,py+250,px-114+i,py+350);
cs.DrawLine (px-56,py+350,px-56-i,py+250);
cs.DrawLine (px-56,py+350,px-56+i,py+250);
cs.DrawLine (px+114,py+250,px+114-i,py+350);
cs.DrawLine (px+114,py+250,px+114+i,py+350);
cs.DrawLine (px+57,py+350,px+57-i,py+250);
cs.DrawLine (px+57,py+350,px+57+i,py+250);
}
cs.SetFillMode (2);
cs.SetTextSize (62);
cs.SetTextStyle (1);
cs.DrawText ("MITSUBISHI",178,520);
cs.Update ();
}//mark8 ()
mark9(){
cs.ClearDraw (0,src);
cs.SetFillMode (1);
cs.SetColor (205,250,200,255);
cs.DrawRect (10,10,710,710);
cs.SetColor (255,255,255,255);
cs.DrawRect (100,100,600,600);
cs.SetStrokeWidth (1);
cs.SetFillMode(0);
cs.SetColor (255,255,20,25);
cs.DrawRect (100,100,600,600);
px=350; //三色圈,原色 间色
py=300;
cs.SetFillMode (1);
cs.SetColor (175,255,0,0);
cs.DrawCircle (px,py-15,100);
cs.SetColor (175,0,255,0);
cs.DrawCircle (px-65,py+100,100);
cs.SetColor (175,0,0,255);
cs.DrawCircle (px+65,py+100,100);
cs.Update ();
}//mark9 ()
mark10(){
cs.ClearDraw (0,src);
cs.SetFillMode (1);
cs.SetColor (205,250,200,255);
cs.DrawRect (10,10,710,710);
cs.SetColor (255,255,255,255);
cs.DrawRect (100,100,600,600);
cs.SetStrokeWidth (1);
cs.SetFillMode(0);
cs.SetColor (255,255,20,25);
cs.DrawRect (100,100,600,600);
px=350; //花朵
py=300;
cs.SetFillMode (1);
cs.SetColor (175,255,0,255);
cs.DrawCircle (px,py-10,100);
cs.DrawOval (px-75,py+100,100,40,-140);
cs.DrawOval (px+75,py+100,100,40,140);
cs.SetColor (255,255,255,255);
cs.DrawOval (px,py-10,98,40,90);
cs.Update ();
}//mark10 ()
mark11(){
cs.ClearDraw (0,src);
cs.SetFillMode (1);
cs.SetColor (205,220,240,255);
cs.DrawRect (10,10,710,710);
cs.SetColor (255,255,255,255);
cs.DrawRect (100,100,600,600);
cs.SetStrokeWidth (1);
cs.SetFillMode(0);
cs.SetColor (255,255,20,25);
cs.DrawRect (100,100,600,600);
px=200; //
py=250;
cs.SetFillMode (1);
cs.SetColor (225,255,0,0);
cs.DrawCircle (px,py,80);
cs.SetColor (225,255,128,0);
cs.DrawCircle (px+100,py,80);
cs.SetColor (225,255,255,0);
cs.DrawCircle (px+200,py,80);
cs.SetColor (225,0,255,128);
cs.DrawCircle (px+300,py,80);
cs.SetColor (225,0,255,255);
cs.DrawCircle (px+50,py+150,80);
cs.SetColor (225,0,0,255);
cs.DrawCircle (px+150,py+150,80);
cs.SetColor (225,125,0,255);
cs.DrawCircle (px+250,py+150,80);
cs.SetFillMode (1);
cs.SetTextSize (40);
cs.SetTextStyle (1);
cs.SetColor (255,125,125,255);
cs.DrawText ("七彩圆",150,550);
cs.Update ();
}//mark11 ()
mark12 (){
cs.ClearDraw (0,src);
cs.SetFillMode (1);
cs.SetColor (205,250,200,255);
cs.DrawRect (10,10,710,710);
cs.SetColor (255,255,255,255);
cs.DrawRect (100,100,600,600);
cs.SetStrokeWidth (1);
cs.SetFillMode(0);
cs.SetColor (255,255,20,25);
cs.DrawRect (100,100,600,600);
px=350; //三叶草
py=260;
cs.SetFillMode (1);
cs.SetColor (255,0,195,00);
cs.DrawOval (px,py,50,100,0);
cs.DrawOval (px-75,py+80,100,50,-140);
cs.DrawOval (px+75,py+80,100,50,140);
cs.SetColor (255,255,255,255);
cs.SetStrokeWidth (3);
cs.DrawLine (350,150,350,395);
cs.DrawLine (196,278,350,395);
cs.DrawLine (504,278,350,395);
cs.SetTextSize (80);
cs.SetTextStyle (1);
cs.SetColor (255,0,195,0);
cs.DrawRect (347,400,353,420);
cs.DrawText ("三叶草",238,510);
cs.Update();
}//mark12 ()
mark13 (){
cs.ClearDraw (0,src);
cs.SetFillMode (1);
cs.SetColor (205,250,200,255);
cs.DrawRect (10,10,710,710);
cs.SetColor (255,255,255,255);
cs.DrawRect (100,100,600,600);
cs.SetStrokeWidth (1);
cs.SetFillMode(0);
cs.SetColor (255,255,20,25);
cs.DrawRect (100,100,600,600);
px=350; //三叶草
py=350;
cs.SetFillMode (1);
cs.SetColor (255,0,195,00);
cs.DrawCircle (px-120,py-20,45);
cs.DrawCircle (px-120,py+20,45);
cs.DrawCircle (px+120,py-20,45);
cs.DrawCircle (px+120,py+20,45);
cs.DrawCircle (px-20,py-120,45);
cs.DrawCircle (px+20,py-120,45);
for (i=0;i<120;i++){
cs.DrawLine (px-100,py+60-i,px+100,py-60+i); }
for (i=0;i<120;i++){
cs.DrawLine (px,py,px-60+i,py-100);}
cs.SetTextSize (80);
cs.SetTextStyle (1);
cs.SetColor (255,0,195,0);
cs.DrawRect (347,350,353,410);
cs.DrawText ("三叶草",238,515);
cs.Update();
}//mark13 ()
mark14 (){
cs.ClearDraw (0,src);
cs.SetFillMode (1);
cs.SetColor (55,250,150,205);
cs.DrawRect (10,10,710,710);
cs.SetColor (255,255,255,255);
cs.DrawRect (100,100,600,600);
cs.SetStrokeWidth (1);
cs.SetFillMode(0);
cs.SetColor (255,255,20,25);
cs.DrawRect (100,100,600,600);
px=350; //四叶草
py=300;
cs.SetFillMode (1);
cs.SetColor (255,0,195,00);
cs.DrawCircle (px-120,py-20,34);
cs.DrawCircle (px-120,py+20,34);
cs.DrawCircle (px+120,py-20,34);
cs.DrawCircle (px+120,py+20,34);
cs.DrawCircle (px-20,py-120,34);
cs.DrawCircle (px-20,py+120,34);
cs.DrawCircle (px+20,py-120,34);
cs.DrawCircle (px+20,py+120,34);
for (i=0;i<106;i++){
cs.DrawLine (px-110,py+52-i,px+110,py-52+i); }
for (i=0;i<100;i++){
cs.DrawLine (px-50+i,py+103,px+50-i,py-103);}
cs.SetTextSize (80);
cs.SetTextStyle (1);
cs.SetColor (255,0,195,0);
cs.DrawRect (347,388,353,410);
cs.DrawText ("四叶草",238,540);
cs.Update();
}//mark14 ()
mark15(){
cs.ClearDraw (0,src);
cs.SetFillMode (1);
cs.SetColor (55,20,210,250);
cs.DrawRect (10,10,710,710);
cs.SetColor (255,255,255,255);
cs.DrawRect (100,100,600,600);
cs.SetStrokeWidth (1);
cs.SetFillMode(0);
cs.SetColor (255,255,20,25);
cs.DrawRect (100,100,600,600);
px=350;
py=300;
cs.SetColor (255,255,175,0);
cs.SetStrokeWidth (13);
cs.DrawOval (px,py,140,130,180);
cs.DrawCircle (px,py,16);
cs.SetStrokeWidth (1);
cs.SetFillMode (1);
for (i=0;i<114;i++){
cs.DrawLine (px-110,py+56-i,px+110,py-56+i); }
for (i=0;i<120;i++){
cs.DrawLine (px-60+i,py+103,px+60-i,py-103);}
cs.SetTextSize (80);
cs.SetTextStyle (1);
cs.SetFillMode (1);
cs.SetColor (255,255,175,0);
cs.DrawText ("金十字",238,520);
cs.SetFillMode (0);
cs.SetStrokeWidth (2);
cs.SetColor (255,255,75,255);
cs.DrawText ("金十字",238,520);
cs.SetColor (255,255,255,0);
cs.DrawLine (px-45,py-95,px+45,py-95);
cs.DrawLine (px+45,py-95,px,py-15);
cs.DrawLine (px,py-15,px-45,py-95);
cs.DrawLine (px-45,py+95,px+45,py+95);
cs.DrawLine (px+45,py+95,px,py+15);
cs.DrawLine (px,py+15,px-45,py+95);
cs.DrawLine (px-101,py+44,px-101,py-44);
cs.DrawLine (px-101,py-44,px-15,py);
cs.DrawLine (px-15,py,px-101,py+44);
cs.DrawLine (px+101,py+44,px+101,py-44);
cs.DrawLine (px+101,py-44,px+15,py);
cs.DrawLine (px+15,py,px+101,py+44);
cs.DrawCircle (px,py,10);
cs.Update();
}//mark15 ()
mark16 (){
cs.ClearDraw (0,src);
cs.SetFillMode (1);
cs.SetColor (205,250,250,25);
cs.DrawRect (10,10,710,710);
cs.SetColor (255,255,255,255);
cs.DrawRect (100,100,600,600);
cs.SetStrokeWidth (1);
cs.SetFillMode(0);
cs.SetColor (255,255,20,25);
cs.DrawRect (100,100,600,600);
px=350;
py=300;
L=80;
cs.SetFillMode (1);
cs.SetColor (255,255,20,20);
for(i=0;i<5;i++){
a=pi/10*i*72;
sx1=(float)(px+L*sin(a));
sy1=(float)(py-L*cos(a));
cs.DrawCircle(sx1,sy1,60); }
cs.SetColor(255,250,250,250);
for(i=0;i<30;i++){
cs.SetFillMode (0);
a=pi/180*i*15;
sx1=(float)(px+70*sin(a));
sy1=(float)(py-70*cos(a));
sx2=(float)(px+20*sin(a));
sy2=(float)(py-20*cos(a));
cs.DrawLine(sx1,sy1,sx2,sy2);
cs.SetFillMode (1);
cs.DrawCircle(sx1,sy1,4); }
cs.SetFillMode (1);
cs.SetTextSize (80);
cs.SetTextStyle (1);
cs.SetColor (255,0,195,0);
cs.DrawText ("梅花牌",238,510);
cs.Update();
}//mark16 ()
mark17 (){
cs.ClearDraw (0,src);
cs.SetFillMode (1);
cs.SetColor (205,250,200,255);
cs.DrawRect (10,10,710,710);
cs.SetColor (255,255,255,255);
cs.DrawRect (100,100,600,600);
cs.SetStrokeWidth (1);
cs.SetFillMode(0);
cs.SetColor (255,255,20,25);
cs.DrawRect (100,100,600,600);
px=350;
py=300;
cs.SetColor(255,250,120,0);
cs.SetStrokeWidth (20);
cs.DrawCircle (px,py,90);
cs.SetStrokeWidth (1);
cs.SetFillMode (1);
for(i=0;i<8;i++){
a=pi/8*i*90;
L=115;
sx1=(float)(px+L*sin(a));
sy1=(float)(py-L*cos(a));
cs.DrawCircle(sx1,sy1,9); }
cs.DrawOval(px,py,8,120,45);
cs.DrawOval(px,py,8,120,90);
cs.DrawOval(px,py,8,120,135);
cs.DrawOval(px,py,8,120,180);
cs.DrawCircle (px,py,30);
cs.SetTextSize (60);
cs.SetTextStyle (1);
cs.SetColor (255,255,175,0);
cs.DrawText ("转运轮",263,515);
cs.SetFillMode (0);
cs.SetStrokeWidth (2);
cs.SetColor(255,250,0,0);
cs.DrawText ("转运轮",263,515);
cs.Update();
}//mark17()
mark18(){
cs.ClearDraw (0,src);
cs.SetFillMode (1);
cs.SetColor (205,250,200,255);
cs.DrawRect (10,10,710,710);
cs.SetColor (255,255,255,255);
cs.DrawRect (100,100,600,600);
cs.SetStrokeWidth (1);
cs.SetFillMode(0);
cs.SetColor (255,255,20,25);
cs.DrawRect (100,100,600,600);
px=220; // " e "
py=300;
cs.SetFillMode (1);
cs.SetColor (255,0,0,255);
cs.DrawCircle (px,py,80);
cs.SetColor (255,255,255,255);
cs.DrawCircle (px,py,70);
cs.SetColor (255,0,0,255);
cs.DrawCircle (px,py,40);
cs.SetColor(255,255,255,255);
cs.DrawRect (px-60,py-10,px+60,py+10);
cs.SetColor(255,0,0,255);
cs.DrawRect (px+20,py+10,px+70,py+20);
cs.SetTextSize (130);
cs.SetTextStyle (1);
cs.DrawText ("路通",320,360);
cs.Update ();
}//mark18 ()
mark19(){
cs.ClearDraw (0,src);
cs.SetFillMode (1);
cs.SetColor (205,250,200,255);
cs.DrawRect (10,10,710,710);
cs.SetColor (255,255,255,255);
cs.DrawRect (100,100,600,600);
cs.SetStrokeWidth (1);
cs.SetFillMode(0);
cs.SetColor (255,255,20,25);
cs.DrawRect (100,100,600,600);
px=210; //
py=300;
cs.SetFillMode (0);
cs.SetStrokeWidth (20);
cs.SetColor (255,5,190,25);
cs.DrawLine (px,py+5,px+100,py-70);
cs.DrawLine (px,py-5,px+100,py+70);
cs.DrawLine (px+190,py+5,px+90,py-70);
cs.DrawLine (px+190,py-5,px+90,py+70);
cs.DrawLine (px+90,py+5,px+190,py-70);
cs.DrawLine (px+90,py-5,px+190,py+70);
cs.DrawLine (px+280,py+5,px+180,py-70);
cs.DrawLine (px+280,py-5,px+180,py+70);
cs.SetFillMode (1);
cs.SetStrokeWidth (2);
cs.SetTextSize (80);
cs.SetTextStyle (1);
cs.DrawText ("双菱电器",195,470);
cs.Update ();
}//mark19()
mark20(){
cs.ClearDraw (0,src);
cs.SetFillMode (1);
cs.SetColor (205,250,200,255);
cs.DrawRect (10,10,710,710);
cs.SetColor (255,255,255,255);
cs.DrawRect (100,100,600,600);
cs.SetStrokeWidth (1);
cs.SetFillMode(0);
cs.SetColor (255,255,20,25);
cs.DrawRect (100,100,600,600);
px=350;
py=300;
cs.SetFillMode (0);
cs.SetStrokeWidth (22);
cs.SetColor (205,20,50,190);
cs.DrawOval (px,py,160,90,180);
cs.DrawOval (px,py-42,114,45,0);
cs.DrawOval (px,py+1,70,40,90);
cs.SetStrokeWidth (19);
cs.SetColor (255,215,215,215);
cs.DrawOval (px,py,160,90,180);
cs.DrawOval (px,py-42,114,45,0);
cs.DrawOval (px,py+1,70,40,90);
cs.SetFillMode (1);
cs.SetStrokeWidth (2);
cs.SetColor (255,255,25,195);
cs.SetTextSize (80);
cs.SetTextStyle (1);
cs.DrawText ("TOYOTA",200,480);
cs.Update ();
}//mark20 ()
mark21(){
cs.ClearDraw (0,src);
cs.SetFillMode (1);
cs.SetColor (205,250,200,255);
cs.DrawRect (10,10,710,710);
cs.SetColor (255,255,255,255);
cs.DrawRect (100,100,600,600);
cs.SetStrokeWidth (1);
cs.SetFillMode(0);
cs.SetColor (255,255,20,25);
cs.DrawRect (100,100,600,600);
px=320; //
py=170;
cs.SetFillMode (0);
cs.SetStrokeWidth (1);
cs.SetColor (255,255,150,0);
for (i=0;i<60;i++){
cs.DrawLine (px+60-i,py,px+120-i,py+120);
cs.DrawLine (px-60+i,py+120,px+i,py+240);}
cs.SetColor (215,255,185,0);
for (i=0;i<60;i++){
cs.DrawLine (px+60-i,py,px-0-i,py+120);
cs.DrawLine (px+60+i,py+120,px+i,py+240); }
cs.SetColor (255,255,120,5);
cs.SetFillMode (1);
cs.SetStrokeWidth (2);
cs.SetTextSize (80);
cs.SetTextStyle (1);
cs.DrawText ("雷诺汽车",195,510);
cs.Update ();
}//mark21 ()
mark22(){
cs.ClearDraw (0,src);
cs.SetFillMode (1);
cs.SetColor (205,250,200,255);
cs.DrawRect (10,10,710,710);
cs.SetColor (255,0,195,0);
cs.DrawRect (100,100,600,600);
cs.SetStrokeWidth (2);
cs.SetFillMode(0);
cs.SetColor (255,255,20,25);
cs.DrawRect (100,100,600,600);
px=350;
py=300;
cs.SetFillMode (1);
cs.SetStrokeWidth (19);
cs.SetColor (255,255,255,255);
cs.DrawOval (px,py-10,110,55,90);
cs.DrawOval (px+100,py+40,100,50,-45);
cs.DrawOval (px-100,py+40,100,50,45);
cs.SetStrokeWidth (2);
for (i=0;i<44;i++){
cs.DrawLine (px+187,py-52,px+178-i,py+6-i);
cs.DrawLine (px-187,py-52,px-178+i,py+6-i);}
for (i=0;i<64;i++){
cs.DrawLine (px,py-145,px-32+i,py-100);
cs.DrawLine (px,py+113,px-32+i,py+73);}
for (i=0;i<32;i++){
cs.DrawLine (px+15,py+118,px+55-i,py+118-i);
cs.DrawLine (px-15,py+118,px-55+i,py+118-i);}
cs.SetTextSize (130);
cs.SetTextStyle (1);
cs.DrawText ("adidas",155,530);
cs.SetColor (255,0,195,0);
cs.DrawRect (170,310,530,323);
cs.DrawRect (180,340,520,353);
cs.DrawRect (180,370,520,383);
cs.Update ();
}//mark22()
mark23(){
cs.ClearDraw (0,src);
cs.SetFillMode (1);
cs.SetColor (205,250,200,255);
cs.DrawRect (10,10,710,710);
cs.SetColor (255,125,155,255);
cs.DrawRect (100,100,600,600);
cs.SetStrokeWidth (2);
cs.SetFillMode(0);
cs.SetColor (255,255,20,25);
cs.DrawRect (100,100,600,600);
px=395;
py=200;
cs.SetFillMode (0);
cs.SetStrokeWidth (3);
cs.SetColor (255,255,255,255);
for (i=0;i<68;i++){
cs.DrawLine (px-i,py+i*0.6,px+100-i*1.25,py+180);
cs.DrawLine (px-70-i,py+60+i*0.6,px-i*1.28,py+180);
cs.DrawLine (px-140-i,py+120+i*0.6,px-100-i*1.37,py+180); }
cs.SetFillMode (1);
cs.SetStrokeWidth (2);
cs.SetTextSize (145);
cs.SetTextStyle (1);
cs.DrawText ("adidas",140,495);
cs.Update ();
}//mark23 ()
mark24(){
cs.ClearDraw (0,src);
cs.SetFillMode (1);
cs.SetColor (205,250,200,255);
cs.DrawRect (10,10,710,710);
cs.SetColor (255,255,255,255);
cs.DrawRect (50,140,660,500);
cs.SetStrokeWidth (2);
cs.SetFillMode(0);
cs.SetColor (255,255,20,25);
cs.DrawRect (50,140,660,500);
px=200;
py=320;
cs.SetFillMode (1);
cs.SetStrokeWidth (1);
cs.SetColor (255,25,180,25);
cs.DrawCircle (px,py,120);
cs.SetColor (255,255,255,255);
cs.DrawCircle (px,py,60);
cs.DrawRect (px,py,px+120,py-120);
cs.SetFillMode (0);
for (i=0;i<61;i++){
cs.SetColor (255,255-i*2,255-i*2,255-i*2);
cs.DrawCircle (px+60,py-60,i); }
cs.SetStrokeWidth (2);
cs.SetColor (255,25,180,25);
cs.SetFillMode (1);
cs.SetTextSize (80);
cs.SetTextStyle (1);
cs.DrawText ("中国人寿",330,370);
cs.DrawText ("中国人寿",332,370);
cs.SetTextSize (56);
cs.DrawText ("CHINA LIFE",335,430);
cs.Update ();
}//mark24 ()
mark25(){
cs.ClearDraw (0,src);
cs.SetFillMode (1);
cs.SetColor (205,250,200,255);
cs.DrawRect (10,10,710,710);
cs.SetColor (255,255,255,255);
cs.DrawRect (100,100,600,600);
cs.SetStrokeWidth (1);
cs.SetFillMode(0);
cs.SetColor (255,255,20,25);
cs.DrawRect (100,100,600,600);
px=300;
py=150;
cs.SetFillMode (0);
cs.SetStrokeWidth (2);
cs.SetColor (255,255,0,255);
for (i=0;i<120;i++){
cs.DrawLine(px-i,py+i,px+90-i,py+90+i);
cs.DrawLine(px-i,py+60+i,px+90-i,py+150+i);}
cs.SetColor (255,255,255,255);
for (i=0;i<60;i++){
cs.DrawLine (px-i,py+90+i,px+30-i,py+120+i);}
cs.SetFillMode (1);
cs.SetStrokeWidth (2);
cs.SetColor (255,25,25,195);
cs.SetTextSize (80);
cs.SetTextStyle (2);
cs.DrawText ("Lotto",350,420);
cs.SetTextSize (36);
cs.SetTextStyle (1);
cs.DrawText ("ITALIAN SPORT DESIGN",140,530);
cs.DrawLine (120,480,580,480);
cs.Update ();
}//mark25 ()
mark26(){
cs.ClearDraw (0,src);
cs.SetFillMode (1);
cs.SetColor (205,200,250,200);
cs.DrawRect (10,10,710,710);
cs.SetColor (255,255,255,255);
cs.DrawRect (100,100,600,600);
cs.SetStrokeWidth (2);
cs.SetFillMode(0);
cs.SetColor (255,255,20,25);
cs.DrawRect (100,100,600,600);
px=250;
py=180;
cs.SetFillMode (1);
cs.SetStrokeWidth (2);
cs.SetColor (255,255,25,195);
for (i=0;i<90;i++){
cs.DrawLine(px-i,py+i,px+90-i,py+90+i);
cs.DrawLine(px-i,py+60+i,px+90-i,py+150+i);}
cs.SetColor (255,255,255,255);
for (i=0;i<30;i++){
cs.DrawLine (px-i,py+90+i,px+30-i,py+120+i);}
cs.SetStrokeWidth (2);
cs.SetTextSize (60);
cs.SetTextStyle (1);
cs.SetColor (255,255,25,195);
cs.DrawText ("双菱电机",310,420);
cs.SetTextSize (36);
cs.DrawText ("Double Diamond Electric",140,530);
cs.DrawLine (120,480,580,480);
cs.Update ();
}//mark26 ()
mark27 (){
cs.ClearDraw (0,src);
cs.SetFillMode (1);
cs.SetColor (55,250,150,205);
cs.DrawRect (10,10,710,710);
cs.SetColor (255,255,255,255);
cs.DrawRect (100,100,600,600);
cs.SetStrokeWidth (2);
cs.SetFillMode(0);
cs.SetColor (255,255,20,25);
cs.DrawRect (100,100,600,600);
px=350; //
py=300;
cs.SetFillMode (1);
cs.SetColor (255,0,195,00);
for (i=0;i<80;i++){
cs.DrawLine (px-40+i,py-100,px+40-i,py+100);
cs.DrawLine (px-100,py-40+i,px+100,py+40-i);
cs.DrawLine(px,py+130,px-40+i,py+100);
cs.DrawLine(px,py-130,px-40+i,py-100);
cs.DrawLine(px+100,py-40+i,px+130,py);
cs.DrawLine(px-100,py-40+i,px-130,py); }
cs.SetColor (255,255,45,255);
for (i=0;i<30;i++){
cs.DrawLine (px-50-i,py-80+i,px+50+i,py+80-i);
cs.DrawLine (px-50-i,py+80-i,px+50+i,py-80+i); }
cs.DrawCircle (px-70,py-70,30);
cs.DrawCircle (px+70,py+70,30);
cs.DrawCircle (px+70,py-70,30);
cs.DrawCircle (px-70,py+70,30);
cs.SetTextSize (80);
cs.SetTextStyle (1);
cs.SetColor (255,0,195,0);
cs.DrawText ("晶花装饰",196,510);
cs.Update();
}//mark27()
mark28 (){
cs.ClearDraw (0,src);
cs.SetFillMode (1);
cs.SetColor (55,250,150,205);
cs.DrawRect (10,10,710,710);
cs.SetColor (255,255,255,255);
cs.DrawRect (100,100,600,600);
cs.SetStrokeWidth (2);
cs.SetFillMode(0);
cs.SetColor (255,255,20,25);
cs.DrawRect (100,100,600,600);
px=200; //
py=230;
cs.SetFillMode (1);
cs.SetColor (255,0,0,0);
cs.DrawRect (px,py,px+50,py+140);
cs.DrawRect (px+10,py+100,px+150,py+150);
cs.DrawRect (px+50,py+50,px+100,py+100);
cs.DrawCircle (px+10,py+140,10);
cs.SetColor (255,255,0,0);
cs.DrawRect (px+100,py-50,px+190,py);
cs.DrawRect (px+150,py-40,px+200,py+50);
cs.DrawCircle (px+190,py-40,10);
cs.DrawLine(px+50,py+1,px+100,py-49);
cs.DrawLine(px+50,py+50,px+100,py);
cs.DrawLine(px+100,py+50,px+150,py);
cs.DrawLine(px+100,py+100,px+150,py+50);
cs.DrawLine(px+149,py+100,px+199,py+50);
cs.SetColor (255,0,0,0);
cs.SetTextStyle (0);
cs.SetTextSize (65);
cs.DrawText ("SCG",373,376);
cs.DrawText ("SCG",376,376);
cs.DrawText ("SCG",379,376);
cs.SetTextSize (80);
cs.DrawText ("上海建工",200,500);
cs.DrawText ("上海建工",202,500);
cs.DrawText ("上海建工",204,500);
cs.Update();
}//mark28 ()
mark29(){
cs.ClearDraw (0,src);
cs.SetFillMode (1);
cs.SetColor (205,250,200,255);
cs.DrawRect (10,10,710,710);
cs.SetColor (255,255,255,255);
cs.DrawRect (100,100,600,600);
cs.SetStrokeWidth (1);
cs.SetFillMode(0);
cs.SetColor (255,255,20,25);
cs.DrawRect (100,100,600,600);
px=350;
py=280;
cs.SetFillMode (1);
cs.SetStrokeWidth (2);
cs.SetColor (255,0,0,225);
cs.DrawCircle(px,py,123);
cs.DrawCircle(px+16,py-51,80);
cs.SetFillMode (0);
// cs.SetColor (255,0,0,225);
for (i=0;i<83;i++){
cs.DrawLine (px-20+i,py-35-i,px+40+i,py+25-i);}
cs.SetColor (255,255,255,255);
for (i=0;i<60;i++){
cs.DrawLine (px-i,py-60+i,px+60-i,py+i);}
for (i=0;i<64;i++){
cs.DrawLine (px+60,py-2,px+124,py-2-i);}
cs.SetStrokeWidth (8);
cs.DrawLine (px+15,py-120,px+105,py-30);
cs.SetFillMode (1);
cs.SetStrokeWidth (2);
cs.DrawRect (px-27,py-127,px+4,py-121);
cs.DrawOval (px+8,py-120,14,6,195);
cs.DrawLine (px+40,py-141,px+130,py-51);
cs.SetColor (225,0,0,225);
cs.DrawOval (px+4,py-113,15,6,200);
cs.SetTextSize (40);
cs.SetTextStyle (1);
cs.DrawText ("China Contruction Bank",137,550);
cs.SetTextSize (75);
cs.SetTextStyle (0);
cs.DrawText ("中国建设银行",133,500);
cs.DrawText ("中国建设银行",135,500);
cs.DrawText ("中国建设银行",137,500);
cs.Update ();
}//mark29 ()
mark30(){
cs.ClearDraw (0,src);
cs.SetFillMode (1);
cs.SetColor (205,250,200,255);
cs.DrawRect (10,10,710,710);
cs.SetColor (255,255,255,255);
cs.DrawRect (100,100,600,600);
cs.SetStrokeWidth (1);
cs.SetFillMode(0);
cs.SetColor (255,255,20,25);
cs.DrawRect (100,100,600,600);
px=350; //
py=200;
cs.SetFillMode (1);
cs.SetStrokeWidth (1);
cs.SetColor (255,25,200,0);
cs.DrawRect (px-120,py,px+30,py+200);
cs.SetColor (255,255,255,255);
cs.DrawRect (px-100,py,px-90,py+200);
cs.DrawOval (px,py+120,70,50,90);
cs.SetColor (255,25,200,0);
cs.DrawOval (px+25,py+60,90,60,0);
cs.SetColor (255,255,255,255);
cs.DrawOval (px+10,py+70,40,33,0);
cs.SetColor (255,25,200,0);
cs.DrawCircle (px-30,py+85,20);
cs.SetFillMode (1);
cs.SetStrokeWidth (2);
cs.SetTextSize (70);
cs.SetTextStyle (1);
cs.DrawText ("Petter Sport",150,510);
cs.DrawText ("Petter Sport",155,510);
cs.Update ();
}//mark30 ()
mark31(){
cs.ClearDraw (0,src);
cs.SetFillMode (1);
cs.SetColor (205,250,200,255);
cs.DrawRect (10,10,710,780);
cs.SetColor (255,255,255,255);
cs.DrawRect (100,100,600,600);
cs.SetStrokeWidth (1);
cs.SetFillMode(0);
cs.SetColor (255,255,20,25);
cs.DrawRect (100,100,600,600);
px=350;
py=350;
L=150;
cs.SetFillMode(1);
cs.SetColor (255,0,155,0);
for (i=5;i<20;i++){// Draw
a=pi/180*i*24;
sx1=(float)(px-L*sin (a));
sy1=(float)(py+L*cos (a));
cs.DrawCircle(sx1,sy1,32); }
cs.SetColor (255,255,255,255);
cs.DrawCircle(px-88,py-122,33);
cs.DrawCircle(px+88,py-122,33);
cs.DrawCircle(px-143,py+47,33);
cs.DrawCircle(px+143,py+47,33);
cs.DrawCircle(px,py+150,32);
cs.SetColor (255,0,155,0);
for (i=0;i<124;i++){// Draw
cs.DrawLine(px,py,px-61+i,py-143); }
for (i=0;i<117;i++){// Draw
cs.DrawLine(px,py,px-112-i*0.3,py-100+i);
cs.DrawLine(px,py,px+112+i*0.3,py-100+i); }
for (i=0;i<197;i++){// Draw
cs.DrawLine(px,py,px-133+i*0.5,py+78+i*0.4);
cs.DrawLine(px,py,px+133-i*0.5,py+78+i*0.4); }
cs.SetFillMode (1);
cs.SetStrokeWidth (2);
cs.SetTextSize (80);
cs.SetTextStyle (1);
cs.DrawText ("五叶草花",195,700);
cs.Update ();
}//mark31 ()
mark32(){
cs.ClearDraw (0,src);
cs.SetFillMode (1);
cs.SetColor (205,250,200,255);
cs.DrawRect (10,10,710,710);
cs.SetColor (255,255,255,255);
cs.DrawRect (100,100,600,600);
cs.SetStrokeWidth (1);
cs.SetFillMode(0);
cs.SetColor (255,255,20,25);
cs.DrawRect (100,100,600,600);
px=350; //moon
py=300;
cs.SetFillMode (1);
cs.SetStrokeWidth (1);
cs.SetColor (255,255,0,255);
cs.DrawCircle (px-10,py,100);
cs.SetFillMode (1);
cs.SetColor (255,255,255,255);
cs.DrawCircle (px+20,py,77);
cs.SetColor (255,255,0,255);
cs.DrawCircle (px+75,py,40);
cs.SetColor (255,255,255,255);
cs.DrawCircle (px+40,py-35,33);
cs.DrawCircle (px+110,py-35,33);
cs.DrawCircle (px+40,py+35,33);
cs.DrawCircle (px+110,py+35,33);
cs.SetColor (255,255,0,255);
cs.SetFillMode (1);
cs.SetStrokeWidth (2);
cs.SetTextSize (80);
cs.SetTextStyle (1);
cs.DrawText ("星月家纺",195,510);
cs.Update ();
}//mark32()
mark33(){
cs.ClearDraw (0,src);
cs.SetFillMode (1);
cs.SetColor (205,220,250,225);
cs.DrawRect (10,10,710,710);
cs.SetColor (255,255,255,255);
cs.DrawRect (100,100,600,600);
cs.SetStrokeWidth (2);
cs.SetFillMode(0);
cs.SetColor (255,255,20,25);
cs.DrawRect (100,100,600,600);
px=350; //
py=300;
cs.SetFillMode (1);
cs.SetStrokeWidth (1);
cs.SetColor (255,255,0,5);
for (i=0;i<70;i++){
cs.DrawLine (px+170,py,px+90+i*0.5,py+i);
cs.DrawLine (px-170,py,px-90-i*0.5,py+i);
cs.DrawLine (px,py+90,px+80-i*0.5,py+90-i);
cs.DrawLine (px,py+90,px-80+i*0.5,py+90-i);
cs.DrawLine(px,py-120,px-35+i,py-60);
cs.DrawLine (px,py+59,px-35+i,py); }
cs.DrawCircle (px-85,py+45,45);
cs.DrawCircle (px+85,py+45,45);
cs.DrawCircle (px,py-30,46);
cs.SetFillMode (1);
cs.SetStrokeWidth (2);
cs.SetTextSize (80);
cs.SetTextStyle (1);
cs.DrawText ("红宝石花",195,510);
cs.Update ();
}//mark33 ()
mark34(){
cs.ClearDraw (0,src);
cs.SetFillMode (1);
cs.SetColor (205,220,250,225);
cs.DrawRect (10,10,710,710);
cs.SetColor (255,255,255,255);
cs.DrawRect (100,100,600,600);
cs.SetStrokeWidth (2);
cs.SetFillMode(0);
cs.SetColor (255,255,20,25);
cs.DrawRect (100,100,600,600);
px=350; //Chevrolet
py=230;
cs.SetFillMode (1);
cs.SetStrokeWidth (1);
cs.SetColor (255,225,160,0);
for (i=0;i<70;i++){
cs.DrawLine (px-175-i*0.3,py+i,px+195-i*0.3,py+i);}
cs.DrawRect (px-70,py-30,px+70,py+100);
cs.SetColor (255,245,240,0);
for (i=0;i<45;i++){
cs.DrawLine (px-160-i*0.3,py+10+i,px+175-i*0.3,py+10+i);}
cs.DrawRect (px-60,py-20,px+60,py+85);
cs.SetColor (255,225,160,0);
cs.SetFillMode (1);
cs.SetStrokeWidth (2);
cs.DrawLine (px,py-20,px,py+95);
cs.SetTextSize (80);
cs.SetTextStyle (1);
cs.DrawText ("雪 佛 兰",215,435);
cs.SetTextSize (60);
cs.DrawText ("CHEVROLET",180,500);
cs.Update ();
}//mark34 ()
mark35(){
cs.ClearDraw (0,src);
cs.SetFillMode (1);
cs.SetColor (205,220,250,225);
cs.DrawRect (10,10,710,710);
cs.SetColor (255,255,255,255);
cs.DrawRect (100,100,600,600);
cs.SetStrokeWidth (2);
cs.SetFillMode(0);
cs.SetColor (255,255,20,25);
cs.DrawRect (100,100,600,600);
px=350; //
py=260;
cs.SetFillMode (0);
cs.SetStrokeWidth (25);
cs.SetColor (255,25,180,0);
cs.DrawCircle (px-45,py+45,90);
cs.DrawCircle (px+45,py+45,90);
cs.SetFillMode (1);
cs.SetStrokeWidth (2);
cs.SetColor (255,25,80,180);
cs.DrawRect (px-42,py+2,px+42,py+22);
cs.DrawRect (px-22,py+2,px+22,py+82);
cs.SetColor (255,255,0,0);
cs.DrawRect (px-40,py+4,px+40,py+20);
cs.DrawRect (px-20,py+4,px+20,py+80);
cs.SetColor (255,25,180,0);
cs.SetTextSize (80);
cs.SetTextStyle (1);
cs.DrawText ("天和味精",195,500);
cs.Update ();
}//mark35()
mark36(){
cs.ClearDraw (0,src);
cs.SetFillMode (1);
cs.SetColor (205,220,250,225);
cs.DrawRect (10,10,710,710);
cs.SetColor (255,255,255,255);
cs.DrawRect (100,100,600,600);
cs.SetStrokeWidth (2);
cs.SetFillMode(0);
cs.SetColor (255,255,20,25);
cs.DrawRect (100,100,600,600);
px=350; //
py=300;
cs.SetFillMode (1);
cs.SetStrokeWidth (1);
cs.SetColor (255,255,0,155);
for (i=0;i<55;i++){
cs.DrawLine (px+110+i,py-2-i,px+2+i,py-2-i);
cs.DrawLine (px-110-i,py-2-i,px-2-i,py-2-i);
cs.DrawLine (px+110+i,py+2+i,px+2+i,py+2+i);
cs.DrawLine (px-110-i,py+2+i,px-2-i,py+2+i);
cs.DrawLine(px+2+i,py-2-i,px+2+i,py-110-i);
cs.DrawLine (px-2-i,py-3-i,px-2-i,py-110-i);
cs.DrawLine(px+2+i,py+3+i,px+2+i,py+110+i);
cs.DrawLine (px-2-i,py+4+i,px-2-i,py+110+i); }
cs.SetFillMode (1);
cs.SetStrokeWidth (2);
cs.SetTextSize (80);
cs.SetTextStyle (1);
cs.DrawText ("十字宝石",195,545);
cs.Update ();
}//mark36()
mark37(){
cs.ClearDraw (0,src);
cs.SetFillMode (1);
cs.SetColor (205,220,250,225);
cs.DrawRect (10,10,710,710);
cs.SetColor (255,255,255,255);
cs.DrawRect (100,100,600,600);
cs.SetStrokeWidth (2);
cs.SetFillMode(0);
cs.SetColor (255,255,20,25);
cs.DrawRect (100,100,600,600);
px=350; //
py=300;
cs.SetFillMode (1);
cs.SetStrokeWidth (1);
cs.SetColor (255,255,50,50);
cs.DrawCircle (px,py-125,39);
cs.DrawCircle (px,py+125,39);
cs.DrawCircle (px-125,py,39);
cs.DrawCircle (px+125,py,39);
cs.DrawRect (px-40,py-125,px+40,py+125);
cs.DrawRect (px-125,py-40,px+125,py+40);
cs.SetColor (255,150,50,255);
cs.DrawCircle (px,py-120,33);
cs.DrawCircle (px,py+120,33);
cs.DrawCircle (px-120,py,33);
cs.DrawCircle (px+120,py,33);
cs.DrawRect (px-33,py-120,px+33,py+120);
cs.DrawRect (px-120,py-33,px+120,py+33);
cs.SetFillMode (1);
cs.SetStrokeWidth (2);
cs.SetTextSize (80);
cs.SetTextStyle (1);
cs.DrawText ("十字星花",195,545);
cs.Update ();
}//mark37 ()
mark38(){
cs.ClearDraw (0,src);
cs.SetFillMode (1);
cs.SetColor (205,220,250,225);
cs.DrawRect (10,10,710,710);
cs.SetColor (255,255,255,255);
cs.DrawRect (100,100,600,600);
cs.SetStrokeWidth (2);
cs.SetFillMode(0);
cs.SetColor (255,255,20,25);
cs.DrawRect (100,100,600,600);
px=350; //
py=320;
cs.SetFillMode (1);
cs.SetStrokeWidth (1);
cs.SetColor (255,15,10,250);
cs.DrawCircle (px,py-10,170);
cs.SetColor (255,255,250,0);
cs.DrawCircle (px,py-10,160);
cs.SetColor (255,255,50,50);
for (i=0;i<53;i++){
cs.DrawLine (px+5+i,py-5-i,px+5+i,py-80-i);
cs.DrawLine (px-5-i,py-5-i,px-5-i,py-80-i);
cs.DrawLine (px+5+i,py+5-i,px+5+i,py+80-i);
cs.DrawLine (px-5-i,py+5-i,px-5-i,py+80-i);
cs.DrawLine (px+10+i,py+85-i,px+90+i,py+85-i);
cs.DrawLine (px-10-i,py+85-i,px-90-i,py+85-i); }
cs.SetColor (255,15,10,250);
cs.SetTextSize (80);
cs.SetTextStyle (1);
cs.DrawText ("南十字星",200,550);
cs.Update ();
}//mark38 ()
mark39(){
cs.ClearDraw (0,src);
cs.SetFillMode (1);
cs.SetColor (205,220,250,225);
cs.DrawRect (10,10,710,710);
cs.SetColor (255,255,255,255);
cs.DrawRect (100,100,600,600);
cs.SetStrokeWidth (2);
cs.SetFillMode(0);
cs.SetColor (255,255,20,25);
cs.DrawRect (100,100,600,600);
px=350; //
py=300;
cs.SetFillMode (1);
cs.SetStrokeWidth (1);
cs.SetColor (255,15,10,250);
cs.DrawCircle (px,py,150);
cs.SetColor (255,255,255,255);
cs.DrawCircle (px,py,140);
cs.SetColor (255,255,50,50);
for (i=0;i<48;i++){
cs.DrawLine (px+70+i,py-2-i,px+2+i,py-2-i);
cs.DrawLine (px-70-i,py-2-i,px-3-i,py-2-i);
cs.DrawLine (px+70+i,py+2+i,px+3+i,py+2+i);
cs.DrawLine (px-70-i,py+2+i,px-4-i,py+2+i);
cs.DrawLine(px+2+i,py-3-i,px+2+i,py-70-i);
cs.DrawLine (px-2-i,py-3-i,px-2-i,py-70-i);
cs.DrawLine(px+2+i,py+3+i,px+2+i,py+70+i);
cs.DrawLine (px-2-i,py+3+i,px-2-i,py+70+i); }
cs.SetColor (255,255,160,0);
cs.SetFillMode (1);
cs.SetStrokeWidth (2);
cs.SetTextSize (80);
cs.SetTextStyle (1);
cs.DrawText ("八面菱珑",195,545);
cs.Update ();
}//mark39 ()
mark40(){
cs.ClearDraw (0,src);
cs.SetFillMode (1);
cs.SetColor (205,220,250,225);
cs.DrawRect (10,10,710,710);
cs.SetColor (255,255,255,255);
cs.DrawRect (100,100,600,600);
cs.SetStrokeWidth (2);
cs.SetFillMode(0);
cs.SetColor (255,255,20,25);
cs.DrawRect (100,100,600,600);
px=350; //
py=300;
cs.SetFillMode (1);
cs.SetStrokeWidth (1);
cs.SetColor (175,255,130,50);
for (i=0;i<60;i++){
cs.DrawLine (px+90+i,py-i,px-30+i,py-i);
cs.DrawLine (px-90-i,py-i,px+30-i,py-i);
cs.DrawLine (px+90+i,py+i,px-30+i,py+i);
cs.DrawLine (px-90-i,py+i,px+30-i,py+i); }
cs.DrawCircle (px,py-80,50);
cs.DrawCircle (px,py+80,50);
cs.SetFillMode (1);
cs.SetStrokeWidth (1);
cs.SetTextSize (80);
cs.SetTextStyle (1);
cs.SetColor (255,25,200,20);
cs.DrawText ("X 星球",240,530);
cs.Update ();
}//mark40()
mark41(){
cs.ClearDraw (0,src);
cs.SetFillMode (1);
cs.SetColor (205,220,250,225);
cs.DrawRect (10,10,710,710);
cs.SetColor (255,255,255,255);
cs.DrawRect (100,100,600,600);
cs.SetStrokeWidth (2);
cs.SetFillMode(0);
cs.SetColor (255,255,20,25);
cs.DrawRect (100,100,600,600);
px=350; //
py=280;
cs.SetFillMode (1);
cs.SetStrokeWidth (1);
cs.SetColor (255,255,100,50);
for (i=0;i<65;i++){
cs.DrawLine (px+90+i,py-i,px+3+i,py-i);
cs.DrawLine (px-90-i,py-i,px-3-i,py-i);
cs.DrawLine (px+90+i,py+3+i,px+3+i,py+3+i);
cs.DrawLine (px-90-i,py+3+i,px-3-i,py+3+i);
cs.DrawLine (px+1+i,py-i,px-64+i,py-65-i);
cs.DrawLine (px+1+i,py+5+i,px-64+i,py+70+i); }
cs.SetFillMode (1);
cs.SetStrokeWidth (2);
cs.SetTextSize (80);
cs.SetTextStyle (1);
cs.DrawText ("六芒星型",195,525);
cs.Update ();
}//mark41()
mark42(){
cs.ClearDraw (0,src);
cs.SetFillMode (1);
cs.SetColor (205,220,250,225);
cs.DrawRect (10,10,710,710);
cs.SetColor (255,255,255,255);
cs.DrawRect (100,100,600,600);
cs.SetStrokeWidth (2);
cs.SetFillMode(0);
cs.SetColor (255,255,20,25);
cs.DrawRect (100,100,600,600);
px=350; //
py=300;
cs.SetFillMode (0);
cs.SetStrokeWidth (1);
cs.SetColor (255,150,50,255);
cs.SetStrokeWidth (19);
cs.DrawCircle (px,py,133);
cs.SetStrokeWidth (2);
for (i=0;i<108;i++){
cs.DrawLine (px,py-123,px-i,py+62);
cs.DrawLine (px,py-123,px+i,py+62);
cs.DrawLine (px,py+123,px-i,py-62);
cs.DrawLine (px,py+123,px+i,py-62); }
cs.SetColor (255,255,255,255);
cs.DrawLine (px-71,py+0,px+71,py+0);
cs.DrawLine (px-36,py-61,px+36,py+61);
cs.DrawLine (px-36,py+61,px+36,py-61);
cs.SetColor (255,150,50,255);
cs.SetFillMode (1);
cs.SetStrokeWidth (2);
cs.SetTextSize (80);
cs.SetTextStyle (1);
cs.DrawText ("六菱星花",195,545);
cs.Update ();
}//mark42 ()
mark43(){
cs.ClearDraw (0,src);
cs.SetFillMode (1);
cs.SetColor (205,220,250,225);
cs.DrawRect (10,10,710,710);
cs.SetColor (255,255,255,255);
cs.DrawCircle (350,350,282);
cs.SetStrokeWidth (3);
cs.SetFillMode(0);
cs.SetColor (255,255,20,25);
cs.DrawCircle (350,350,280);
px=350; // show bagua
py=350;
cs.SetFillMode (1);
cs.SetColor (255,0,0,0);
cs.DrawCircle (px,py,120);
cs.SetColor (255,255,255,255);
cs.DrawRect (px-120,py-120,px,py+120);
cs.DrawCircle (px,py-60,60);
cs.SetColor (255,0,0,0);
cs.DrawCircle (px,py+60,60);
cs.DrawCircle (px,py-60,16);
cs.SetColor (255,255,255,255);
cs.DrawCircle (px,py+60,15);
cs.SetFillMode (0);
cs.SetColor (255,0,0,0);
cs.DrawCircle (px,py,120);
cs.SetFillMode (1);
//up low
cs.DrawRect (px-30,py-210,px+30,py-150);
cs.DrawRect (px-30,py+210,px+30,py+150);
//left right
cs.DrawRect (px-210,py-30,px-150,py+30);
cs.DrawRect (px+210,py-30,px+150,py+30);
//up two corner and low two corner
cs.DrawRect (px-170,py-160,px-110,py-100);
cs.DrawRect (px+170,py-160,px+110,py-100);
cs.DrawRect (px-170,py+160,px-110,py+100);
cs.DrawRect (px+170,py+160,px+110,py+100);
cs.SetColor (255,255,255,255);
cs.DrawRect (px-30,py-192,px+30,py-189);
cs.DrawRect (px-30,py-172,px+30,py-169);//up
cs.DrawRect (px-30,py+192,px+30,py+189);
cs.DrawRect (px-30,py+172,px+30,py+169);
cs.DrawRect (px-3,py+210,px+3,py+150);//down
cs.DrawRect (px-210,py-9,px-150,py-12);
cs.DrawRect (px-210,py+9,px-150,py+12);
cs.DrawRect (px-177,py-10,px-183,py+10);//left
cs.DrawRect (px+210,py-9,px+150,py-12);
cs.DrawRect (px+210,py+9,px+150,py+12);
cs.DrawRect (px+177,py-30,px+183,py-10);
cs.DrawRect (px+177,py+30,px+183,py+10);//right
cs.DrawRect (px-170,py-142,px-110,py-139);
cs.DrawRect (px-170,py-122,px-110,py-119);
cs.DrawRect (px-137,py-160,px-143,py-140);
cs.DrawRect (px+170,py-142,px+110,py-139);
cs.DrawRect (px+170,py-122,px+110,py-119);
cs.DrawRect (px+137,py-120,px+143,py-100);
cs.DrawRect (px-170,py+142,px-110,py+139);
cs.DrawRect (px-170,py+122,px-110,py+119);
cs.DrawRect (px-137,py+140,px-143,py+100);
cs.DrawRect (px+170,py+142,px+110,py+139);
cs.DrawRect (px+170,py+122,px+110,py+119);
cs.DrawRect (px+137,py+160,px+143,py+120);
cs.SetStrokeWidth (1);
cs.SetTextSize (36);
cs.SetColor (255,0,0,0);
cs.DrawText ("乾",px-17,py-225);
cs.DrawText ("坤",px-17,py+250);
cs.DrawText ("离",px-255,py+15);
cs.DrawText ("坎",px+220,py+15);
cs.DrawText ("兑",px-215,py-115);
cs.DrawText ("巽",px+180,py-115);
cs.DrawText ("震",px-215,py+145);
cs.DrawText ("艮",px+180,py+145);
cs.Update ();
}//mark43()
mark44(){
cs.ClearDraw (0,src);
cs.SetFillMode (1);
cs.SetColor (205,200,250,225);
cs.DrawRect (10,10,710,710);
cs.SetColor (255,255,255,255);
cs.DrawRect (50,100,650,600);
cs.SetStrokeWidth (2);
cs.SetFillMode(0);
cs.SetColor (255,255,25,5);
cs.DrawRect (50,100,650,600);
px=80; //
py=150;
cs.SetFillMode (1);
cs.SetStrokeWidth (1);
cs.SetColor (255,245,240,0);
cs.DrawCircle (px+115,py+65,60);
cs.DrawCircle (px+120,py+175,65);
cs.DrawRect (px,py+4,px+120,py+220);
cs.SetColor (255,255,255,255);
for (i=2;i<18;i++) { cs.DrawRect(px+45,py+i*14-14,px+185,py+i*14-7); }
cs.SetColor (255,245,240,0);
cs.DrawRect (px,py+5,px+120,py+40);
cs.DrawRect (px,py+110,px+110,py+140);
cs.DrawRect (px,py+210,px+120,py+240);
cs.SetFillMode (1);
cs.SetStrokeWidth (2);
cs.SetTextSize (70);
cs.SetTextStyle (1);
cs.SetColor (255,25,0,80);
cs.DrawText ("中国光大银行",150,490);
cs.SetTextSize(31);
s="CHINA EVERBRIGHT BANK";
cs.DrawText (s,157,530);
cs.SetColor (255,125,50,200);
cs.SetTextSize (220);
cs.DrawText ("ank",270,385);
cs.Update ();
}//mark44()
mark45(){
cs.ClearDraw (0,src);
cs.SetFillMode (1);
cs.SetColor (205,220,250,225);
cs.DrawRect (10,10,710,710);
cs.SetColor (255,255,255,255);
cs.DrawRect (100,100,600,600);
cs.SetStrokeWidth (2);
cs.SetFillMode(0);
cs.SetColor (255,255,20,25);
cs.DrawRect (100,100,600,600);
px=350; //
py=290;
cs.SetFillMode (1);
cs.SetStrokeWidth (1);
cs.SetColor (235,170,170,170);
for (i=0;i<180;i++){
cs.DrawLine (px-140+i,py-30+i,px-40+i,py-30+i);
cs.DrawLine (px+140-i,py-30+i,px+40-i,py-30+i);}
cs.DrawRect (px-180,py-30,px-40,py);
cs.DrawRect (px-180,py+150,px-40,py+120);
cs.DrawRect (px+180,py-30,px+40,py);
cs.DrawRect (px+180,py+150,px+40,py+120);
cs.SetColor (255,10,240,50);
cs.DrawRect (px-170,py-20,px-100,py-10);
cs.DrawRect (px-170,py+140,px-100,py+130);
cs.DrawRect (px+170,py-20,px+100,py-10);
cs.DrawRect (px+170,py+140,px+100,py+130);
cs.SetFillMode (0);
cs.SetColor (255,10,240,50);
for (i=0;i<161;i++){
cs.DrawLine (px-110+i,py-20+i,px-50+i,py-20+i);
cs.DrawLine (px+110-i,py-20+i,px+50-i,py-20+i);}
for (i=0;i<62;i++){
cs.SetColor (255,0,255-i*2,0);
cs.DrawCircle (px,py-75,i); }
cs.SetFillMode (1);
cs.SetStrokeWidth (2);
cs.SetTextSize (80);
cs.SetTextStyle (1);
cs.DrawText ("星联文具",195,540);
cs.Update ();
}//mark45()
mark46(){
cs.ClearDraw (0,src);
cs.SetFillMode (1);
cs.SetColor (205,200,250,225);
cs.DrawRect (10,10,710,710);
cs.SetColor (255,255,255,255);
cs.DrawRect (100,100,600,600);
cs.SetStrokeWidth (2);
cs.SetFillMode(0);
cs.SetColor (255,255,25,5);
cs.DrawRect (100,100,600,600);
px=350; //
py=290;
cs.SetFillMode (1);
cs.SetStrokeWidth (1);
cs.SetColor (255,25,105,0);
cs.DrawCircle (px,py,135);
cs.SetColor (255,255,255,255);
cs.DrawCircle (px,py,110);
// cs.DrawRect (px,py+4,px+120,py+220);
cs.SetColor (255,25,105,0);
cs.DrawRect (px-40,py-120,px+40,py+34);
cs.DrawRect (px-33,py+10,px+33,py+38);
cs.DrawRect (px-15,py+38,px+15,py+110);
cs.DrawCircle (px-35,py+33,5);
cs.DrawCircle (px+35,py+33,5);
cs.SetColor (255,255,255,255);
cs.DrawRect (px-40,py-5,px+40,py+5);
cs.DrawRect (px-5,py-40,px+5,py+40);
cs.DrawRect (px-25,py-135,px+25,py-45);
cs.DrawRect (px-18,py-135,px+18,py-40);
cs.DrawCircle (px-20,py-45,5);
cs.DrawCircle (px+20,py-45,5);
cs.SetColor (255,25,105,0);
cs.DrawRect (px-15,py-135,px+15,py-60);
cs.DrawCircle (px,py-59,14);
cs.SetFillMode (1);
cs.SetStrokeWidth (2);
cs.SetTextSize (70);
cs.SetTextStyle (1);
// cs.SetColor (255,25,200,20);
cs.DrawText ("中国农业银行",150,500);
cs.SetTextSize(25);
s="AGRICULTURAL BANK OF CHINA";
cs.DrawText (s,160,540);
cs.Update ();
}//mark46()
mark47(){
cs.ClearDraw (0,src);
cs.SetFillMode (1);
cs.SetColor (205,200,250,225);
cs.DrawRect (10,10,710,710);
cs.SetColor (255,255,255,255);
cs.DrawRect (80,100,620,600);
cs.SetStrokeWidth (2);
cs.SetFillMode(0);
cs.SetColor (255,255,25,5);
cs.DrawRect (80,100,620,600);
px=350; //
py=280;
cs.SetFillMode (1);
cs.SetStrokeWidth (1);
cs.SetColor (255,235,0,0);
cs.DrawCircle (px,py,135);
cs.SetColor (255,255,255,255);
for (i=0;i<150;i++){
cs.DrawLine (px+40,py-120,px-45+i,py+60);
cs.DrawLine (px-40,py-120,px-105+i,py+60); }
cs.SetColor (255,235,0,0);
for (i=0;i<80;i++){
cs.DrawLine (px+20,py-40,px-20+i,py+65);
cs.DrawLine (px-53,py-40,px-93+i,py+65); }
cs.SetColor (255,255,255,255);
for (i=0;i<35;i++){ cs.DrawLine (px-105+i,py+60+i,px+105-i,py+60+i); }
for (i=0;i<7;i++) { cs.DrawRect(px+65,py+i*14-42,px+140,py+i*14-35); }
cs.SetFillMode (1);
cs.SetStrokeWidth (2);
cs.SetTextSize (70);
cs.SetTextStyle (1);
cs.SetColor (255,25,0,80);
cs.DrawText ("中国招商银行",150,500);
cs.SetTextSize(31);
s="CHINA MERCHANTS BANK";
cs.DrawText (s,157,540);
cs.Update ();
}//mark47()
mark48(){
cs.ClearDraw (0,src);
cs.SetFillMode (1);
cs.SetColor (205,200,250,225);
cs.DrawRect (10,10,710,710);
cs.SetColor (255,255,255,255);
cs.DrawRect (100,100,600,600);
cs.SetStrokeWidth (2);
cs.SetFillMode(0);
cs.SetColor (255,255,25,5);
cs.DrawRect (100,100,600,600);
px=350; //
py=280;
cs.SetFillMode (1);
cs.SetStrokeWidth (1);
cs.SetColor (255,255,0,0);
cs.DrawCircle (px,py,140);
cs.SetColor (255,255,255,255);
cs.DrawCircle (px,py,110);
cs.SetColor (255,255,0,0);
cs.DrawRect (px-15,py-120,px+15,py+120);
cs.DrawRect (px-45,py-55,px+45,py+55);
cs.DrawRect (px-70,py-30,px+70,py+30);
cs.DrawCircle (px-40,py-25,30);
cs.DrawCircle (px+40,py-25,30);
cs.DrawCircle (px-40,py+25,30);
cs.DrawCircle (px+40,py+25,30);
cs.SetColor (255,255,255,255);
cs.DrawRect (px-35,py-25,px+35,py+25);
cs.SetFillMode (1);
cs.SetStrokeWidth (2);
cs.SetTextSize (80);
cs.SetTextStyle (1);
cs.SetColor (255,25,0,80);
cs.DrawText ("中国银行",200,505);
cs.SetTextSize(38);
s="BANK OF CHINA";
cs.DrawText (s,205,550);
cs.Update ();
}//mark48()
mark49(){
cs.ClearDraw (0,src);
cs.SetFillMode (1);
cs.SetColor (205,220,250,225);
cs.DrawRect (10,10,710,710);
cs.SetColor (255,255,255,255);
cs.DrawRect (100,100,600,600);
cs.SetStrokeWidth (2);
cs.SetFillMode(0);
cs.SetColor (255,255,20,25);
cs.DrawRect (100,100,600,600);
px=350; //
py=300;
cs.SetFillMode (1);
cs.SetStrokeWidth (1);
cs.SetColor (255,255,0,0);
cs.DrawOval (px-65,py,110,70,-75);
cs.SetColor (255,5,0,250);
cs.DrawOval (px+65,py,110,70,-75);
cs.SetColor (255,255,255,255);
cs.DrawOval (px-40,py-3,70,50,-75);
cs.DrawOval (px+40,py+4,70,50,-75);
cs.SetColor (255,25,160,0);
cs.DrawCircle (px,py,45);
cs.SetFillMode (1);
cs.SetStrokeWidth (1);
cs.SetTextSize (60);
cs.SetTextStyle (1);
cs.SetColor (255,25,160,20);
cs.DrawText ("联合文教用品",180,500);
cs.SetColor (255,255,250,250);
cs.SetTextSize (70);
cs.DrawText ("C",327,325);
cs.Update ();
}//mark49()
mark50(){
cs.ClearDraw (0,src);
cs.SetFillMode (1);
cs.SetColor (205,220,250,225);
cs.DrawRect (10,10,710,710);
cs.SetColor (255,255,255,255);
cs.DrawRect (100,100,600,600);
cs.SetStrokeWidth (2);
cs.SetFillMode(0);
cs.SetColor (255,255,20,25);
cs.DrawRect (100,100,600,600);
px=330; //
py=180;
cs.SetFillMode (1);
cs.SetStrokeWidth (2);
cs.SetColor (255,255,130,50);
for (i=0;i<65;i++){
cs.SetColor (255,255,0,0);
cs.DrawLine (px-70+i,py+i,px-110+i,py+140+i);
cs.SetColor (255,0,205,0);
cs.DrawLine (px+i,py+i,px-40+i,py+140+i);
cs.SetColor (255,0,0,250);
cs.DrawLine (px+70+i,py+i,px+30+i,py+140+i); }
cs.SetColor (255,255,250,0);
cs.DrawCircle (px-100,py+170,40);
cs.SetFillMode (0);
cs.SetStrokeWidth (2);
cs.SetTextSize (40);
cs.SetTextStyle (1);
cs.SetColor (255,185,150,50); //金色
cs.DrawCircle (px+150,py+170,40);
cs.DrawCircle (px-100,py+170,40);
cs.DrawLine (px-100,py+130,px+155,py+130);
cs.DrawLine (px-100,py+210,px+155,py+210);
cs.SetColor (255,250,250,250);
// cs.DrawRect (px+115,py+135,px+150,py+210);
cs.SetColor (255,185,150,50); //金色
cs.SetFillMode (1);
cs.DrawText ("Colors Fashion",px-110,py+185);
cs.SetTextSize (80);
cs.DrawText ("三色服饰",200,500);
cs.Update ();
}//mark50()