• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

TypeScript jspdf.addImage函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了TypeScript中jspdf.addImage函数的典型用法代码示例。如果您正苦于以下问题:TypeScript addImage函数的具体用法?TypeScript addImage怎么用?TypeScript addImage使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了addImage函数的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。

示例1: function

 var createPDF = function (imgData:string) {
     var doc = new jsPDF();
     doc.addImage(imgData, 'JPEG', 10, 10, 50, 50, 'monkey'); // Cache the image using the alias 'monkey'
     doc.addImage('monkey', 70, 10, 100, 120); // use the cached 'monkey' image, JPEG is optional regardless
     doc.addImage({
         imageData: imgData,
         angle: -20,
         x: 10,
         y: 78,
         w: 45,
         h: 58
     });
     doc.output('datauri');
 };
开发者ID:AlexGalays,项目名称:DefinitelyTyped,代码行数:14,代码来源:jspdf-tests.ts


示例2: function

 var createPDF = function (imgData: string) {
     var doc = new jsPDF();
     doc.addImage(imgData, 'JPEG', 10, 10, 50, 50, 'monkey'); // Cache the image using the alias 'monkey'
     doc.addImage('monkey', 70, 10, 100, 120); // use the cached 'monkey' image, JPEG is optional regardless
     doc.addImage({
         imageData: imgData,
         rotation: -20,
         x: 10,
         y: 78,
         width: 45,
         height: 58
     });
     doc.output('datauri', {filename: 'test.pdf'});
 };
开发者ID:MrRio,项目名称:jsPDF,代码行数:14,代码来源:jspdf-tests.ts


示例3: formatDate

export const printPayment = (
  account: Linode.Account,
  payment: Linode.Payment
) => {
  try {
    const date = formatDate(payment.date, { format: 'YYYY-MM-DD' });
    const paymentId = payment.id;
    const amount = payment.usd;
    const tableEnd = tableBodyStart + cellHeight;
    const doc = new jsPDF({
      unit: 'px'
    });

    const addTable = () => {
      doc.setFontSize(10);

      const header = [
        { name: 'Description', prompt: 'Description', width: 292 },
        { name: 'Date', prompt: 'Date', width: 128 },
        { name: 'Amount', prompt: 'Amount', width: 128 }
      ] as any[]; // assert type 'any' because per source code this is an extended and more advanced way of usage

      const itemRows = [
        {
          Description: 'Payment. Thank you.', // Automatic line breaks don't work well. Doing it manually
          Date: renderDate(date),
          Amount: '$' + amount
        }
      ];

      doc.table(leftPadding, 140, itemRows, header, {
        fontSize: 12,
        printHeaders: true,
        autoSize: false,
        margins: {
          left: 15,
          top: 10,
          width: 800,
          bottom: 0
        }
      });
    };

    const addTotalAmount = () => {
      doc.setFontSize(13);
      doc.setFontStyle('bold');
      // Empty line
      doc.cell(leftPadding, tableEnd, 411, 10, ' ', 1, 'left');
      // "Total" cell
      doc.cell(
        leftPadding,
        tableEnd + 10,
        374,
        20,
        'Payment Total:    ',
        2,
        'right'
      );
      // Total value cell
      doc.cell(
        leftPadding + 300,
        tableEnd + 10,
        37,
        20,
        `$${Number(amount).toFixed(2)}`,
        2,
        'left'
      );
      // reset text format
      doc.setFontStyle('normal');
    };

    doc.addImage(LinodeLogo, 'JPEG', 150, 5, 120, 50);
    addLeftHeader(doc, 1, 1, date, 'Payment');
    addRightHeader(doc, account);
    addTitle(doc, `Receipt for Payment #${paymentId}`);
    addTable();
    addFooter(doc);
    addTotalAmount();

    doc.save(`payment-${date}.pdf`);
  } catch (e) {
    console.error(e);
  }
};
开发者ID:displague,项目名称:manager,代码行数:85,代码来源:PdfGenerator.ts


示例4: test_addImage

function test_addImage() {
    
    var doc = new jsPDF();  
    doc.addImage({imageData: '/image.png', x: 0, y: 0, width: 100, height: 100});
}
开发者ID:MrRio,项目名称:jsPDF,代码行数:5,代码来源:jspdf-tests.ts



注:本文中的jspdf.addImage函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
TypeScript jspdf.addPage函数代码示例发布时间:2022-05-25
下一篇:
TypeScript jspdf.addHTML函数代码示例发布时间:2022-05-25
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap