Spire.Cloud.PDF 在 PDF 文档中绘制图形

 

Spire.Cloud.PDF API给开发者提供了pdfPathApi接口,用于为PDF文档绘制图形。本文将介绍如何使用该接口来在PDF文档中绘制线段和矩形图形。

详细步骤如下:

步骤一:通过冰蓝云官网(https://cloud.e-iceblue.cn/)注册账号并登陆,在“我的应用”版块创建应用程序,以获得App ID及App Key。

Spire.Cloud.PDF 在 PDF 文档中绘制图形

步骤二:点击导航栏“文档管理”,将示例PDF文档上传至“我的文档”。

Spire.Cloud.PDF 在 PDF 文档中绘制图形

步骤三:创建一个Maven应用程序,在pom.xml文件中添加Spire.Cloud.sdk的Maven依赖。详细步骤参考文章 通过 Maven 仓库安装 Spire.Cloud Web API

<repositories>
    <repository>
        <id>com.e-iceblue</id>
        <name>cloud</name>
        <url>http://repo.e-iceblue.cn/repository/maven-public/</url>
    </repository>
</repositories>

<dependencies>

    <dependency>
            <groupId> cloud </groupId>
            <artifactId>spire.cloud.sdk</artifactId>
            <version>3.5.0</version>
        </dependency>

    <dependency>
        <groupId>io.swagger</groupId>
        <artifactId>swagger-annotations</artifactId>
        <version>1.5.18</version>
    </dependency>

    <dependency>
        <groupId>com.squareup.okhttp</groupId>
        <artifactId>okhttp</artifactId>
        <version>2.7.5</version>
    </dependency>

    <dependency>
        <groupId>com.squareup.okhttp</groupId>
        <artifactId>logging-interceptor</artifactId>
        <version>2.7.5</version>
    </dependency>

    <dependency>
        <groupId> com.squareup.okio </groupId>
        <artifactId>okio</artifactId>
        <version>1.6.0</version>
    </dependency>

    <dependency>
        <groupId>com.google.code.gson</groupId>
        <artifactId>gson</artifactId>
        <version>2.8.1</version>
    </dependency>

    <dependency>
        <groupId>io.gsonfire</groupId>
        <artifactId>gson-fire</artifactId>
        <version>1.8.0</version>
    </dependency>

    <dependency>
        <groupId>org.threeten</groupId>
        <artifactId>threetenbp</artifactId>
        <version>1.3.5</version>
    </dependency>

</dependencies>

步骤四:在Maven程序中编写代码调用pdfPathApi接口给示例PDF文档绘制线段和矩形图形。

绘制线段

import spire.cloud.pdf.sdk.ApiException;
import spire.cloud.pdf.sdk.Configuration;
import spire.cloud.pdf.sdk.api.PdfPathApi;

public class DrawLine {
    private static String appId = "App ID";
    private static String appKey = "App Key";
    private static String baseUrl = "https://api.e-iceblue.cn";

    public static void main(String[] args) throws ApiException {
        //配置账号信息
        Configuration configuration = new Configuration(appId, appKey, baseUrl);
        //创建pdfPathApi实例
        PdfPathApi pdfPathApi = new PdfPathApi(configuration);
        //示例文档名称
        String name = "DrawLine.pdf";
        //设置生成文档的路径及名称
        String outPath = "DrawLine_output.pdf";
        //需要添加线段的文档页码索引
        int pageNumber = 1;
        //自定义设置线段的位置及大小
        float firstPointfX = 100;//线段插入位置的横坐标
        float firstPointfY = 250;//线段插入位置的纵坐标
        float secondPointfX = 350;//线段的长度
        float secondPointfY = 270;//线段的倾斜度
        //文档的打开密码,没有则为null
        String password = null;
        //使用冰蓝云配置的2G空间存贮文档,可设置为null
        String storage = null;
        //存放示例文档的文件夹,如果没有文件夹则为null
        String folder = null;
        //调用drawLine接口绘制线段
        pdfPathApi.drawLine(name, outPath, pageNumber, firstPointfX, firstPointfY, secondPointfX, secondPointfY, folder, storage, password);

    }
}

绘制效果:

Spire.Cloud.PDF 在 PDF 文档中绘制图形

绘制矩形

import spire.cloud.pdf.sdk.ApiException;
import spire.cloud.pdf.sdk.Configuration;
import spire.cloud.pdf.sdk.api.PdfPathApi;
import spire.cloud.pdf.sdk.model.RectangleF;

public class DrawRectangle {
    private static String appId = "App ID";
    private static String appKey = "App Key";
    private static String baseUrl = "https://api.e-iceblue.cn";

    public static void main(String[] args) throws ApiException {
        //配置账号信息
        Configuration configuration = new Configuration(appId, appKey, baseUrl);
        //创建pdfPathApi实例
        PdfPathApi pdfPathApi = new PdfPathApi(configuration);
        //示例文档名称
        String name = "DrawRectangle.pdf";
        //设置生成文档的路径及名称
        String outPath = "DrawRectangle_output.pdf";
        //需要添加矩形的文档页码索引
        int pageNumber = 1;
        //自定义设置矩形的位置及大小
        RectangleF rect = new RectangleF();
        rect.setX(100f);//矩形插入位置的横坐标
        rect.setY(150f);//矩形插入位置的纵坐标
        rect.setWidth(300f);//矩形的长度
        rect.setHeight(60f);//矩形的宽度
        //文档的打开密码,没有则为null
        String password = null;
        //使用冰蓝云配置的2G空间存贮文档,可设置为null
        String storage = null;
        //存放示例文档的文件夹,如果没有文件夹则为null
        String folder = null;
        //调用drawRectanglef接口绘制矩形
        pdfPathApi.drawRectanglef(name, outPath, pageNumber, rect, folder, storage, password);
    }
}

绘制效果:

Spire.Cloud.PDF 在 PDF 文档中绘制图形