Git Product home page Git Product logo

solstice23's Introduction

Hi there 👋






Visitor count

solstice23's People

Contributors

solstice23 avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

solstice23's Issues

想请教一个leonsans导出为svg的问题

你好,看你的这个README好像是leosans导出的svg

我在leosans的一个issue里 cmiscm/leonsans/issues/5 看到了一个方法:导出为canvas再用canvas2svg

但是我出现了一个困惑(我是前端小白

魔改官方demo的这段代码之后,我成功draw出了一个canvas出来:

<script>let leon, canvas, ctx;

const sw = 800;
const sh = 600;
const pixelRatio = 2;

function init() {
    canvas = document.createElement('canvas');
    document.body.appendChild(canvas);
    ctx = canvas.getContext("2d");
    
    canvas.width = sw * pixelRatio;
    canvas.height = sh * pixelRatio;
    canvas.style.width = sw + 'px';
    canvas.style.height = sh + 'px';
    ctx.scale(pixelRatio, pixelRatio);

    leon = new LeonSans({
        text: 'Lu Shuyu',
        color: ['#f08300'],
        size: 100,
        weight: 600,
        drawing: ['1']
    });

    let i, total = leon.drawing.length;
    for (i = 0; i < total; i++) {
    TweenMax.fromTo(leon.drawing[i], 1.6, {
        value: 0
    }, {
        delay: i * 0.5,
        value: 1,
        ease: Power4.easeOut
    });
}

    requestAnimationFrame(animate);
}

function animate(t) {
    requestAnimationFrame(animate);

    ctx.clearRect(0, 0, sw, sh);

    const x = (sw - leon.rect.w) / 2;
    const y = (sh - leon.rect.h) / 2;
    leon.position(x, y);

    leon.draw(ctx);  
}
window.onload = () => {
    init();
};
</script>

但是在研究canvas2svg的时候,我发现它的使用方法是一步一步画,然后导出为svg的
image

所以我现在就比较迷,我有两个想法:

  1. 把leosans的draw函数魔改为一条条画的命令,然后用canvas2svg画出来
  2. 把画好的canvas用某种办法传入canvas2svg里面然后画出来

这个是怎么处理的呢?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.