【成图】

【Canvas与艺术】夏日绝句 李清照_canvas 诗词

【代码】
<!DOCTYPE html>
<html lang="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<head>
     <title>夏日绝句</title>
     <style type="text/css">
     .centerlize{
        margin:0 auto;
        width:1200px;
     }
     </style>
     </head>

     <body onload="init();">
        <div class="centerlize">
            <canvas id="myCanvas" width="12px" height="12px" style="border:1px dotted black;">
                如果看到这段文字说您的浏览器尚不支持HTML5 Canvas,请更换浏览器再试.
            </canvas>
            <img id="myImg" src="356.jpg" style="display:none;"/>
            <img id="myImg2" src="356-2.jpg" style="display:none;"/>
        </div>
     </body>
</html>
<script type="text/javascript">
<!--
/*****************************************************************
* 将全体代码(从<!DOCTYPE到script>)拷贝下来,粘贴到文本编辑器中,
* 另存为.html文件,再用chrome浏览器打开,就能看到实现效果。
******************************************************************/

// canvas的绘图环境
var ctx;

// 高宽
const WIDTH=512;
const HEIGHT=512;

// 舞台对象
var stage;

//-------------------------------
// 初始化
//-------------------------------
function init(){
    // 获得canvas对象
    var canvas=document.getElementById('myCanvas');  
    canvas.width=WIDTH;
    canvas.height=HEIGHT;

    // 初始化canvas的绘图环境
    ctx=canvas.getContext('2d');  
    ctx.translate(WIDTH/2,HEIGHT/2);// 原点平移

    // 准备
    stage=new Stage();    
    stage.init();

    // 开幕
    animate();
}

// 播放动画
function animate(){    
    stage.update();    
    stage.paintBg(ctx);
    stage.paintFg(ctx);     

    // 循环
    if(true){
        //sleep(100);
        window.requestAnimationFrame(animate);   
    }
}

// 舞台类
function Stage(){
    // 初始化
    this.init=function(){
        
    }

    // 更新
    this.update=function(){    
        
    }

    // 画背景
    this.paintBg=function(ctx){
        ctx.clearRect(-WIDTH/2,-HEIGHT/2,WIDTH,HEIGHT);// 清屏    
    }

    // 画前景
    this.paintFg=function(ctx){
        // 底色
        ctx.fillStyle = "white";
        ctx.fillRect(-WIDTH/2,-HEIGHT/2,WIDTH,HEIGHT);

        // 外凸圈
        var r=244;
        ctx.save();
        ctx.beginPath();
        ctx.arc(0,0,r,0,Math.PI*2,false);
        ctx.closePath();
        var lgrd=ctx.createLinearGradient(-r,-r,2*r,2*r);
        lgrd.addColorStop(0,"rgb(255,180,111)");
        lgrd.addColorStop(1,"rgb(0,0,0)");
        ctx.fillStyle=lgrd;
        ctx.fill();

        // 分隔圈
        ctx.save();
        ctx.beginPath();
        ctx.arc(0,0,241,0,Math.PI*2,false);
        ctx.closePath();
        ctx.strokeStyle="rgb(174,143,0)";
        ctx.stroke();

        // 中圈
        ctx.save();
        ctx.rotate(Math.PI*5/4);
        var r=240;
        ctx.beginPath();
        ctx.arc(0,0,r,0,Math.PI*2,false);
        ctx.closePath();
        ctx.clip();
        var img=document.getElementById("myImg");
        ctx.drawImage(img,0,0,300,300,-r,-r,2*r,2*r);
        ctx.restore();

        // 内凹圈
        var r=144;
        ctx.beginPath();
        ctx.arc(0,0,r,0,Math.PI*2,false);
        ctx.closePath();
        var lgrd=ctx.createLinearGradient(-r,-r,2*r,2*r);
        lgrd.addColorStop(0,"rgb(151,124,0)");
        lgrd.addColorStop(1,"rgb(255,180,111)");
        ctx.fillStyle=lgrd;
        ctx.fill();

        // 分隔圈
        ctx.beginPath();
        ctx.arc(0,0,141,0,Math.PI*2,false);
        ctx.closePath();
        ctx.strokeStyle="rgb(65,42,36)"
        ctx.stroke();

        // 内圈
        ctx.save();
        ctx.rotate(1*Math.PI+Math.PI/4);
        var r=140;        
        ctx.beginPath();
        ctx.arc(0,0,r,0,Math.PI*2,false);
        ctx.closePath();
        ctx.clip();
        var img=document.getElementById("myImg2");
        ctx.drawImage(img,50,202,2*r,2*r,-r,-r,2*r,2*r);
        ctx.restore();

        // 加个蒙版
        ctx.beginPath();
        ctx.arc(0,0,r,0,Math.PI*2,false);
        ctx.closePath();
        ctx.fillStyle="rgba(25,25,25,0.1)";
        ctx.fill();

        // 继电器纹路
        ctx.save();
        var R=240;
        var N=80;
        ctx.lineWidth=1;
        var T=R/27;
                
        for(var i=0;i<N;i++){
            var theta=Math.PI*2/N*i;
            var a=createPt(R*Math.cos(theta),R*Math.sin(theta));
            var angle1=Math.PI*2/N/5*4;
            var b=createPt(R*Math.cos(theta+angle1),R*Math.sin(theta+angle1));

            var r=T/4*3;
            var c=createPt(b.x+r*Math.cos(theta+angle1+Math.PI),b.y+r*Math.sin(theta+angle1+Math.PI));

            var angleC1C2=Math.PI*2/N/5*5;
            r=R-T*3/4;
            var c1=createPt(r*Math.cos(theta+angleC1C2),r*Math.sin(theta+angleC1C2));
            r=R-T*2/4;
            var c2=createPt(r*Math.cos(theta+angleC1C2),r*Math.sin(theta+angleC1C2));

            var angleD1D2=Math.PI*2/N/5*6;
            r=R-T*2/4;
            var d2=createPt(r*Math.cos(theta+angleD1D2),r*Math.sin(theta+angleD1D2));
            r=R-T*3/4;
            var d1=createPt(r*Math.cos(theta+angleD1D2),r*Math.sin(theta+angleD1D2));

            var angle2=Math.PI*2/N/5*7;
            r=R-T*3/4;
            var d=createPt(r*Math.cos(theta+angle2),r*Math.sin(theta+angle2));

            var r=T/4*1;
            var e=createPt(d.x+r*Math.cos(theta+angle2+Math.PI),d.y+r*Math.sin(theta+angle2+Math.PI));
            
            var angle3=Math.PI*2/N/5*3;
            r=R-T;
            var f=createPt(r*Math.cos(theta+angle3),r*Math.sin(theta+angle3));

            r=T/4*3;
            var g=createPt(f.x+r*Math.cos(theta+angle3),f.y+r*Math.sin(theta+angle3));

            var angleG1G2=Math.PI*2/N/5*2;
            r=R-T*1/4;
            var g1=createPt(r*Math.cos(theta+angleG1G2),r*Math.sin(theta+angleG1G2));
            r=R-T*2/4;
            var g2=createPt(r*Math.cos(theta+angleG1G2),r*Math.sin(theta+angleG1G2));

            var angleH1H2=Math.PI*2/N/5*1;
            r=R-T*1/4;
            var h1=createPt(r*Math.cos(theta+angleH1H2),r*Math.sin(theta+angleH1H2));
            r=R-T*2/4;
            var h2=createPt(r*Math.cos(theta+angleH1H2),r*Math.sin(theta+angleH1H2));


            var r=R-T/4;
            var h=createPt(r*Math.cos(theta),r*Math.sin(theta));

            ctx.fillStyle="gold";
            ctx.beginPath();
            ctx.moveTo(a.x,a.y);
            ctx.arc(0,0,R,theta,theta+angle1,false);
            ctx.lineTo(b.x,b.y);
            ctx.lineTo(c.x,c.y);
            ctx.arc(0,0,R-T*3/4,theta+angle1,theta+angleC1C2,false);
            ctx.lineTo(c1.x,c1.y);
            ctx.lineTo(c2.x,c2.y);
            ctx.arc(0,0,R-T*2/4,theta+angleC1C2,theta+angleD1D2,false);
            ctx.lineTo(d2.x,d2.y);
            ctx.lineTo(d1.x,d1.y);
            ctx.lineTo(d.x,d.y);
            ctx.lineTo(e.x,e.y);
            ctx.arc(0,0,R-T,theta+angle2,theta+angle3,true);
            ctx.lineTo(f.x,f.y);
            ctx.lineTo(g.x,g.y);
            ctx.arc(0,0,R-T/4,theta+angle3,theta+angleG1G2,true);
            ctx.lineTo(g1.x,g1.y);
            ctx.lineTo(g2.x,g2.y);
            ctx.arc(0,0,R-T/4*2,theta+angleG1G2,theta+angleH1H2,true);
            ctx.lineTo(h2.x,h2.y);
            ctx.lineTo(h1.x,h1.y);
            ctx.arc(0,0,R-T/4*1,theta+angleH1H2,theta,true);
            ctx.closePath();
            //ctx.stroke();
            ctx.fill();
        }
        ctx.restore();

        // 大金圈
        ctx.lineWidth=1;
        ctx.strokeStyle="gold";
        ctx.beginPath();
        ctx.arc(0,0,228,0,Math.PI*2,false);
        ctx.closePath();
        ctx.stroke();

        // 小金圈
        ctx.lineWidth=1;
        ctx.strokeStyle="gold";
        ctx.beginPath();
        ctx.arc(0,0,164,0,Math.PI*2,false);
        ctx.closePath();
        ctx.stroke();

        // 合掌纹饰绘制开始
        ctx.save()
        var R=160;             // 最外缘半径
        var   N=20;                 // 个数
        ctx.lineWidth=2;
        var T=R/12;             // 厚度,外缘到内缘的厚度
        const PART_T=T/3;         // 三分之一厚度
        const ANGLE=Math.PI*2/N; //分度角
        const PART_ANGLE=ANGLE/8;// 分度角的八分之一
                
        for(var i=0;i<N;i++){
            var theta=Math.PI*2/N*i;
            var r=R-T;
            var a=createPt(r*Math.cos(theta),r*Math.sin(theta));
            var b=createPt(r*Math.cos(theta+PART_ANGLE),r*Math.sin(theta+PART_ANGLE));

            r=T;
            var angle=theta+PART_ANGLE;
            var c=createPt(b.x+r*Math.cos(angle),b.y+r*Math.sin(angle));

            r=R;
            var d=createPt(r*Math.cos(theta+4*PART_ANGLE),r*Math.sin(theta+4*PART_ANGLE));

            angle=theta+4*PART_ANGLE+Math.PI;
            r=2*PART_T;
            var e=createPt(d.x+r*Math.cos(angle),d.y+r*Math.sin(angle));

            angle=theta+3*PART_ANGLE;
            r=R-2*PART_T;
            var f=createPt(r*Math.cos(angle),r*Math.sin(angle));

            angle=theta+3*PART_ANGLE;
            r=R-1*PART_T;
            var g=createPt(r*Math.cos(angle),r*Math.sin(angle));

            angle=theta+2*PART_ANGLE;
            r=R-1*PART_T;
            var h=createPt(r*Math.cos(angle),r*Math.sin(angle));

            angle=theta+2*PART_ANGLE;
            r=R-T;
            var j=createPt(r*Math.cos(angle),r*Math.sin(angle));

            angle=theta+7*PART_ANGLE;
            r=R-T;
            var k=createPt(r*Math.cos(angle),r*Math.sin(angle));

            angle=theta+7*PART_ANGLE;
            r=R-1*PART_T;
            var l=createPt(r*Math.cos(angle),r*Math.sin(angle));

            angle=theta+6*PART_ANGLE;
            r=R-1*PART_T;
            var m=createPt(r*Math.cos(angle),r*Math.sin(angle));

            angle=theta+6*PART_ANGLE;
            r=R-2*PART_T;
            var n=createPt(r*Math.cos(angle),r*Math.sin(angle));

            angle=theta+5*PART_ANGLE;
            r=R-2*PART_T;
            var o=createPt(r*Math.cos(angle),r*Math.sin(angle));

            angle=theta+5*PART_ANGLE;
            r=R;
            var p=createPt(r*Math.cos(angle),r*Math.sin(angle));

            angle=theta+8*PART_ANGLE;
            r=R;
            var q=createPt(r*Math.cos(angle),r*Math.sin(angle));

            angle=theta+8*PART_ANGLE;
            r=R-T;
            var s=createPt(r*Math.cos(angle),r*Math.sin(angle));
            
            ctx.strokeStyle="gold";
            ctx.beginPath();
            ctx.moveTo(a.x,a.y);
            ctx.arc(0,0,R-T,theta,theta+PART_ANGLE,false);
            ctx.lineTo(b.x,b.y);
            ctx.lineTo(c.x,c.y);
            ctx.arc(0,0,R,theta+PART_ANGLE,theta+4*PART_ANGLE,false);
            ctx.lineTo(d.x,d.y);
            ctx.lineTo(e.x,e.y);
            ctx.arc(0,0,R-2*PART_T,theta+4*PART_ANGLE,theta+3*PART_ANGLE,true);
            ctx.lineTo(f.x,f.y);
            ctx.lineTo(g.x,g.y);
            ctx.arc(0,0,R-1*PART_T,theta+3*PART_ANGLE,theta+2*PART_ANGLE,true);
            ctx.lineTo(h.x,h.y);
            ctx.lineTo(j.x,j.y);
            ctx.arc(0,0,R-T,theta+2*PART_ANGLE,theta+7*PART_ANGLE,false);
            ctx.lineTo(k.x,k.y);
            ctx.lineTo(l.x,l.y);
            ctx.arc(0,0,R-1*PART_T,theta+7*PART_ANGLE,theta+6*PART_ANGLE,true);
            ctx.lineTo(m.x,m.y);
            ctx.lineTo(n.x,n.y);
            ctx.arc(0,0,R-2*PART_T,theta+6*PART_ANGLE,theta+5*PART_ANGLE,true);
            ctx.lineTo(o.x,o.y);
            ctx.lineTo(p.x,p.y);
            ctx.arc(0,0,R,theta+5*PART_ANGLE,theta+8*PART_ANGLE,false);
            ctx.lineTo(q.x,q.y);
            ctx.lineTo(s.x,s.y);
            
            ctx.stroke();
        }
        ctx.restore();

        var color="black";
        writeText(ctx,0,-85,"《夏日绝句》","24px 方正宋刻本秀楷简体",color);
        writeText(ctx,50,-65,"李清照","12px 方正宋刻本秀楷简体",color);
        // 诗歌正文
        var start=createPt(0,-20);
        var gap=40;
        writeText(ctx,start.x,start.y,"生当作人杰","32px 方正宋刻本秀楷简体",color);
        writeText(ctx,start.x,start.y+gap,"死亦为鬼雄","32px 方正宋刻本秀楷简体",color);
        writeText(ctx,start.x,start.y+2*gap, "至今思项羽","32px 方正宋刻本秀楷简体",color);
        writeText(ctx,start.x,start.y+3*gap,"不肯过江东","32px 方正宋刻本秀楷简体",color);

        writeText(ctx,WIDTH/2-30,HEIGHT/2-5,"逆火原创","8px consolas","lightgrey");// 版权
    }
}

/*----------------------------------------------------------
函数:用于创建随机颜色
----------------------------------------------------------*/
function buildRndColor(){
    const N=255;
    var r=Math.ceil(Math.random()*N);
    var g=Math.ceil(Math.random()*N);
    var b=Math.ceil(Math.random()*N);

    return "rgb("+r+","+g+","+b+")";
}

/*----------------------------------------------------------
函数:用于绘制实心圆,用途是标记点以辅助作图
ctx:绘图上下文
x:矩形中心横坐标
y:矩形中心纵坐标
r:圆半径
color:填充圆的颜色
----------------------------------------------------------*/
function drawSolidCircle(ctx,x,y,r,color){
    ctx.fillStyle=color;
    ctx.beginPath();
    ctx.arc(x,y,r,0,Math.PI*2,false);
    ctx.closePath();
    ctx.fill();
}

/*----------------------------------------------------------
函数:用于绘制正方形
ctx:绘图上下文
x:矩形中心横坐标
y:矩形中心纵坐标
sideLength:正方形边长
----------------------------------------------------------*/
function drawSquare(ctx,x,y,sideLength){
    drawRect(ctx,x,y,sideLength,sideLength);
}

/*----------------------------------------------------------
函数:用于绘制矩形
ctx:绘图上下文
x:矩形中心横坐标
y:矩形中心纵坐标
width:矩形宽
height:矩形高
----------------------------------------------------------*/
function drawRect(ctx,x,y,width,height){
    ctx.beginPath();
    ctx.moveTo(x-width/2,y-height/2);
    ctx.lineTo(x+width/2,y-height/2);
    ctx.lineTo(x+width/2,y+height/2);
    ctx.lineTo(x-width/2,y+height/2);
    ctx.closePath();
}

/*----------------------------------------------------------
函数:创建一个二维坐标点
x:横坐标
y:纵坐标
Pt即Point
----------------------------------------------------------*/
function createPt(x,y){
    var retval={};
    retval.x=x;
    retval.y=y;
    return retval;
}

/*----------------------------------------------------------
函数:延时若干毫秒
milliseconds:毫秒数
----------------------------------------------------------*/
function sleep(milliSeconds) {
    const date = Date.now();
    let currDate = null;
    while (currDate - date < milliSeconds) {
        currDate = Date.now();
    } 
}

/*----------------------------------------------------------
函数:书写文字
ctx:绘图上下文
x:横坐标
y:纵坐标
text:文字
font:字体
color:颜色
----------------------------------------------------------*/
function writeText(ctx,x,y,text,font,color){
    ctx.save();
    ctx.textBaseline="bottom";
    ctx.textAlign="center";
    ctx.font = font;
    ctx.fillStyle=color;
    ctx.fillText(text,x,y);
    ctx.restore();
}

/*-------------------------------------------------------------
生当作人杰 死亦为鬼雄 至今思项羽 不肯过江东
--------------------------------------------------------------*/
//-->
</script>
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.
  • 24.
  • 25.
  • 26.
  • 27.
  • 28.
  • 29.
  • 30.
  • 31.
  • 32.
  • 33.
  • 34.
  • 35.
  • 36.
  • 37.
  • 38.
  • 39.
  • 40.
  • 41.
  • 42.
  • 43.
  • 44.
  • 45.
  • 46.
  • 47.
  • 48.
  • 49.
  • 50.
  • 51.
  • 52.
  • 53.
  • 54.
  • 55.
  • 56.
  • 57.
  • 58.
  • 59.
  • 60.
  • 61.
  • 62.
  • 63.
  • 64.
  • 65.
  • 66.
  • 67.
  • 68.
  • 69.
  • 70.
  • 71.
  • 72.
  • 73.
  • 74.
  • 75.
  • 76.
  • 77.
  • 78.
  • 79.
  • 80.
  • 81.
  • 82.
  • 83.
  • 84.
  • 85.
  • 86.
  • 87.
  • 88.
  • 89.
  • 90.
  • 91.
  • 92.
  • 93.
  • 94.
  • 95.
  • 96.
  • 97.
  • 98.
  • 99.
  • 100.
  • 101.
  • 102.
  • 103.
  • 104.
  • 105.
  • 106.
  • 107.
  • 108.
  • 109.
  • 110.
  • 111.
  • 112.
  • 113.
  • 114.
  • 115.
  • 116.
  • 117.
  • 118.
  • 119.
  • 120.
  • 121.
  • 122.
  • 123.
  • 124.
  • 125.
  • 126.
  • 127.
  • 128.
  • 129.
  • 130.
  • 131.
  • 132.
  • 133.
  • 134.
  • 135.
  • 136.
  • 137.
  • 138.
  • 139.
  • 140.
  • 141.
  • 142.
  • 143.
  • 144.
  • 145.
  • 146.
  • 147.
  • 148.
  • 149.
  • 150.
  • 151.
  • 152.
  • 153.
  • 154.
  • 155.
  • 156.
  • 157.
  • 158.
  • 159.
  • 160.
  • 161.
  • 162.
  • 163.
  • 164.
  • 165.
  • 166.
  • 167.
  • 168.
  • 169.
  • 170.
  • 171.
  • 172.
  • 173.
  • 174.
  • 175.
  • 176.
  • 177.
  • 178.
  • 179.
  • 180.
  • 181.
  • 182.
  • 183.
  • 184.
  • 185.
  • 186.
  • 187.
  • 188.
  • 189.
  • 190.
  • 191.
  • 192.
  • 193.
  • 194.
  • 195.
  • 196.
  • 197.
  • 198.
  • 199.
  • 200.
  • 201.
  • 202.
  • 203.
  • 204.
  • 205.
  • 206.
  • 207.
  • 208.
  • 209.
  • 210.
  • 211.
  • 212.
  • 213.
  • 214.
  • 215.
  • 216.
  • 217.
  • 218.
  • 219.
  • 220.
  • 221.
  • 222.
  • 223.
  • 224.
  • 225.
  • 226.
  • 227.
  • 228.
  • 229.
  • 230.
  • 231.
  • 232.
  • 233.
  • 234.
  • 235.
  • 236.
  • 237.
  • 238.
  • 239.
  • 240.
  • 241.
  • 242.
  • 243.
  • 244.
  • 245.
  • 246.
  • 247.
  • 248.
  • 249.
  • 250.
  • 251.
  • 252.
  • 253.
  • 254.
  • 255.
  • 256.
  • 257.
  • 258.
  • 259.
  • 260.
  • 261.
  • 262.
  • 263.
  • 264.
  • 265.
  • 266.
  • 267.
  • 268.
  • 269.
  • 270.
  • 271.
  • 272.
  • 273.
  • 274.
  • 275.
  • 276.
  • 277.
  • 278.
  • 279.
  • 280.
  • 281.
  • 282.
  • 283.
  • 284.
  • 285.
  • 286.
  • 287.
  • 288.
  • 289.
  • 290.
  • 291.
  • 292.
  • 293.
  • 294.
  • 295.
  • 296.
  • 297.
  • 298.
  • 299.
  • 300.
  • 301.
  • 302.
  • 303.
  • 304.
  • 305.
  • 306.
  • 307.
  • 308.
  • 309.
  • 310.
  • 311.
  • 312.
  • 313.
  • 314.
  • 315.
  • 316.
  • 317.
  • 318.
  • 319.
  • 320.
  • 321.
  • 322.
  • 323.
  • 324.
  • 325.
  • 326.
  • 327.
  • 328.
  • 329.
  • 330.
  • 331.
  • 332.
  • 333.
  • 334.
  • 335.
  • 336.
  • 337.
  • 338.
  • 339.
  • 340.
  • 341.
  • 342.
  • 343.
  • 344.
  • 345.
  • 346.
  • 347.
  • 348.
  • 349.
  • 350.
  • 351.
  • 352.
  • 353.
  • 354.
  • 355.
  • 356.
  • 357.
  • 358.
  • 359.
  • 360.
  • 361.
  • 362.
  • 363.
  • 364.
  • 365.
  • 366.
  • 367.
  • 368.
  • 369.
  • 370.
  • 371.
  • 372.
  • 373.
  • 374.
  • 375.
  • 376.
  • 377.
  • 378.
  • 379.
  • 380.
  • 381.
  • 382.
  • 383.
  • 384.
  • 385.
  • 386.
  • 387.
  • 388.
  • 389.
  • 390.
  • 391.
  • 392.
  • 393.
  • 394.
  • 395.
  • 396.
  • 397.
  • 398.
  • 399.
  • 400.
  • 401.
  • 402.
  • 403.
  • 404.
  • 405.
  • 406.
  • 407.
  • 408.
  • 409.
  • 410.
  • 411.
  • 412.
  • 413.
  • 414.
  • 415.
  • 416.
  • 417.
  • 418.
  • 419.
  • 420.
  • 421.
  • 422.
  • 423.
  • 424.
  • 425.
  • 426.
  • 427.
  • 428.
  • 429.
  • 430.
  • 431.
  • 432.
  • 433.
  • 434.
  • 435.
  • 436.
  • 437.
  • 438.
  • 439.
  • 440.
  • 441.
  • 442.
  • 443.
  • 444.
  • 445.
  • 446.
  • 447.
  • 448.
  • 449.
  • 450.
  • 451.
  • 452.
  • 453.
  • 454.
  • 455.
  • 456.
  • 457.
  • 458.
  • 459.
  • 460.
  • 461.
  • 462.
  • 463.
  • 464.
  • 465.
  • 466.
  • 467.
  • 468.
  • 469.
  • 470.
  • 471.
  • 472.
  • 473.
  • 474.
  • 475.
  • 476.
  • 477.
  • 478.
  • 479.
  • 480.
  • 481.
  • 482.
  • 483.
  • 484.
  • 485.
  • 486.
  • 487.
  • 488.
  • 489.
  • 490.
  • 491.
  • 492.
  • 493.
  • 494.
  • 495.
  • 496.
  • 497.
【底图两张】

356.jpg

【Canvas与艺术】夏日绝句 李清照_canvas 诗词_02

356-2.jpg

【Canvas与艺术】夏日绝句 李清照_canvas 诗词_03

END