`

C# 添加文本、图片到PDF文档(基于Spire.Cloud.PDF.SDK)

阅读更多

Spire.Cloud.PDF.SDK提供了接口PdfTextApi及PdfImagesApi用于添加文本和图片到PDF文档,添加文本时,可格式化文本样式,包括文本字体类型、字号、字体样式、文本颜色、字符间距、行距、首行缩进、文本对齐方式、文本环绕方式等;添加图片时,可格式化图片,包括图片位置、高度、宽度等。本文将通过C#代码演示如何实现以上内容操作。

 

使用工具:

  • Spire.Cloud.PDF.SDK
  • Visual Studio

 

 

必要步骤:

步骤一:dll文件获取及导入

 

         方法1. 通过官网本地下载SDK文件包。(须在e-iceblue中国官网在线编辑板块中注册账号并登录)

        下载后,解压文件,将Spire.Cloud.Pdf.Sdk.dll文件及其他三个dll添加引用至VS程序;

         方法2. 在程序中通过Nuget搜索下载,直接导入所有dll。

 

 

 

步骤二:App ID及Key获取。在“我的应用”板块中创建应用以获得App ID及App Key。

步骤三:源文档上传。在“文档管理”板块,上传源文档。这里可以建文件夹,将文档存放在文件夹下。不建文件夹时,源文档及结果文档直接保存在根目录。本文示例中,建了两个文件夹,分别用于存放源文档及结果文档。(云平台提供免费1 万次调用次数和 2G 文档内存)

 

 C# 代码示例

 

 1. 添加文本到PDF

using System;
using Spire.Cloud.Pdf.Sdk.Client;
using Spire.Cloud.Pdf.Sdk.Api;
using Spire.Cloud.Pdf.Sdk.Model;


namespace AddText_Cloud.PDF
{
    class Program
    {
        static String appId = "App ID";
        static String appKey = "App Key";
        static void Main(string[] args)
        {
            //配置账号信息
            Configuration PdfConfiguration = new Configuration(appId, appKey);
            PdfTextApi PdfTextApi = new PdfTextApi(PdfConfiguration);

            string name = "sample.pdf";//源文档
            string outPath = "output/AddText.pdf";//结果文档路径
            int pageNumber = 2;//指定文本内容所在页码
            string folder = "input";//源文档所在文件夹
            Spire.Cloud.Pdf.Sdk.Model.Text text = new Spire.Cloud.Pdf.Sdk.Model.Text("This is a test. This is a test. This is a test. This is a test. This is a test. This is a test.",
                new Font(Font.FontTypeEnum.TrueType, "Arial", 13, Font.FontStyleEnum.Regular),
                new RectangleF(50, 320, 500, 200));//实例化文本信息(文本内容、字体类型、字号、字体样式、文本位置)
            text.BackgroundColor = new Color(255, 244, 164, 96);//设置文本背景色
            text.ForegroundColor = new Color(255, 135, 206, 235);//设置文本前景色
            text.CharSpacing = 5;//字符间距
            text.FirstLineIndent = 100;//首行缩进
            text.LineSpacing = 15;//行距
            text.HorizontalAlignment = Spire.Cloud.Pdf.Sdk.Model.Text.HorizontalAlignmentEnum.Left;//文本水平对齐方式    
            text.VerticalAlignment = Spire.Cloud.Pdf.Sdk.Model.Text.VerticalAlignmentEnum.Middle;//文本垂直对齐方式  
            text.WordSpacing = 12;//单词间距
            text.WordWrap = Spire.Cloud.Pdf.Sdk.Model.Text.WordWrapEnum.Character;//文本环绕方式

            //调用方法添加文本
            PdfTextApi.AddText(name, outPath, pageNumber, text, folder, null);
        }
    }
}

 

2. 添加图片到PDF

using Spire.Cloud.Pdf.Sdk.Api;
using Spire.Cloud.Pdf.Sdk.Client;
using System;
using System.IO;


namespace AddImg_Cloud.PDF
{
    class Program
    {
        static String appId = "App ID";
        static String appKey = "App Key";
        static void Main(string[] args)
        {
            //配置账号信息
            Configuration PdfConfiguration = new Configuration(appId, appKey);
            PdfImagesApi pdfImagesApi = new PdfImagesApi(PdfConfiguration);
           
            string name = "sample.pdf";//源文档
            string outPath = "output/AddImg.pdf";//结果文档路径
            int pageNumber = 2;//指定图片所在文档页码
            string folder = "input";//源文档所在文件夹
            string password = null;//源文档密码

            System.IO.Stream file = new FileStream("logo.png", FileMode.Open);//打开图片

            //指定图片位置及大小
            float x = 50;
            float y = 320;
            float width = 200;
            float height = 200;

            //调用方法添加图片
            pdfImagesApi.AddImage(name, outPath, pageNumber, file, x, y, width, height, folder, password);
        }
    }
}

 

 

(本文完)

 

0
1
分享到:
评论

相关推荐

    Spire.Cloud.PDF.SDK及WebAPI示例.zip

    Spire.Cloud.PDF.SDK是一款基于C#和.NET框架的PDF处理工具,专为开发者设计,提供了丰富的API功能,便于在应用程序中实现PDF的创建、编辑、保存和打印操作。这款SDK充分利用了云端服务,使开发者能够高效、便捷地...

    C# 对PDF文档加密、解密(基于Spire.Cloud.SDK for .NET)

    Spire.Cloud.SDK for .NET提供了接口PdfSecurityApi可用于加密、解密PDF文档。本文将通过C#代码演示具体加密及解密方法。 使用工具: Spire.Cloud.SDK for .NET Visual Studio 必要步骤: 步骤一: dll文件获取及...

    Spire.Cloud.Excel.SDK及WebAPI示例.zip

    Spire.Cloud.Excel.SDK和WebAPI是两个强大的工具,主要用于在云端处理Excel文档。这个压缩包提供的SDK(软件开发工具包)和Web API示例,帮助开发者利用C#和.NET框架来实现对Excel文件的创建、编辑、保存和打印功能...

    Spire.Cloud.Word.SDK及WebAPI示例.zip

    Spire.Cloud.Word.SDK和Web API是用于在云端处理Microsoft Word文档的强大工具,主要面向.NET开发者。这个压缩包“Spire.Cloud.Word.SDK及WebAPI示例.zip”提供了详细的示例代码和指南,帮助开发者理解如何利用这些...

    Spire.Cloud.Powerpoint.SDK及WebAPI示例.zip

    - **SDK介绍**:Spire.Powerpoint SDK是一个用于处理Microsoft PowerPoint文件的强大库,它允许程序员在C#环境中实现对PPT文件的各种操作,如创建新幻灯片、插入图片、添加文本、应用模板、转换格式等。 - **功能...

Global site tag (gtag.js) - Google Analytics