node 문자 생 성 그림 의 예제 코드

3665 단어 node문자.그림.
오늘 사장 님 께 서 요 구 를 하 셨 습 니 다.서버 에서 초대장 을 만 들 려 고 합 니 다.음...................................................

거의 이렇게 되 었 다.

백 엔 드 루비 형 들 이 html 로 그림 을 돌 렸 어 요.너무 느리게 돌 았 다 고 해서 이 구 덩이 를 이 어 갔 어 요.
그래서 자기 전에 뒤 척 이 며 간단 한 실현 을 했다.
해결 방향
텍스트 변환 svg->svg 변환 png->그림 병합
관련 바퀴
  • images Node.js 경량급 크로스 플랫폼 이미지 코딩 라 이브 러 리,추가 설치 의존 필요 없습니다
  • text-to-svg 문자 svg
  • svg2png svg 회전 png 사진
  • 예제 코드
    
    'use strict';
    
    const fs = require('fs');
    const images = require('images');
    const TextToSVG = require('text-to-svg');
    const svg2png = require("svg2png");
    const Promise = require('bluebird');
    
    Promise.promisifyAll(fs);
    
    const textToSVG = TextToSVG.loadSync('fonts/      .ttf');
    
    const sourceImg = images('./i/webwxgetmsgimg.jpg');
    const sWidth = sourceImg.width();
    const sHeight = sourceImg.height();
    
    const svg1 = textToSVG.getSVG('   -   App', {
     x: 0,
     y: 0,
     fontSize: 24,
     anchor: 'top',
    });
    
    const svg2 = textToSVG.getSVG('     ', {
     x: 0,
     y: 0,
     fontSize: 16,
     anchor: 'top',
    });
    
    const svg3 = textToSVG.getSVG('     ', {
     x: 0,
     y: 0,
     fontSize: 32,
     anchor: 'top',
    });
    
    Promise.coroutine(function* generateInvitationCard() {
     const targetImg1Path = './i/1.png';
     const targetImg2Path = './i/2.png';
     const targetImg3Path = './i/3.png';
     const targetImg4Path = './i/qrcode.jpg';
     const [buffer1, buffer2, buffer3] = yield Promise.all([
      svg2png(svg1),
      svg2png(svg2),
     svg2png(svg3),
     ]);
    
     yield Promise.all([
      fs.writeFileAsync(targetImg1Path, buffer1),
      fs.writeFileAsync(targetImg2Path, buffer2),
      fs.writeFileAsync(targetImg3Path, buffer3),
     ]);
    
     const target1Img = images(targetImg1Path);
     const t1Width = target1Img.width();
     const t1Height = target1Img.height();
     const offsetX1 = (sWidth - t1Width) / 2;
     const offsetY1 = 200;
    
     const target2Img = images(targetImg2Path);
     const t2Width = target2Img.width();
     const t2Height = target2Img.height();
     const offsetX2 = (sWidth - t2Width) / 2;
     const offsetY2 = 240;
    
     const target3Img = images(targetImg3Path);
     const t3Width = target3Img.width();
     const t3Height = target3Img.height();
     const offsetX3 = (sWidth - t3Width) / 2;
     const offsetY3 = 270;
    
     const target4Img = images(targetImg4Path);
     const t4Width = target4Img.width();
     const t4Height = target4Img.height();
     const offsetX4 = (sWidth - t4Width) / 2;
     const offsetY4 = 400;
    
     images(sourceImg)
     .draw(target1Img, offsetX1, offsetY1)
     .draw(target2Img, offsetX2, offsetY2)
     .draw(target3Img, offsetX3, offsetY3)
     .draw(target4Img, offsetX4, offsetY4)
     .save('./i/card.png', { quality : 90 });
    })().catch(e => console.error(e));
    
    
    주의 사항
    text-to-svg 는 중국어 글꼴 지원 이 필요 합 니 다.그렇지 않 으 면 중국어 가 혼 란 스 러 워 집 니 다.
    제 낡은 컴퓨터 에서 한 번 실행 하 는 데 500 여 밀리초 밖 에 걸 리 지 않 았 습 니 다.충분 하 다 고 생각 합 니 다.공유 해서 여러분 께 참고 가 되 었 으 면 좋 겠 습 니 다.
    이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

    좋은 웹페이지 즐겨찾기