java setrotation_iText pdf中使用setRotation方法旋转图片

使用iText生产PDF时,你可以使用setRotation(final float r)或者setRotationDegrees(final float deg)方法来实现图片的旋转效果。

public void setRotation(double r)设定,参数r为弧度,如果旋转角度ss为30度,则参数r= Math.PI / 6

public void setRotationDegrees(final float deg);//deg为旋转的度数

package org.ajava.example.itextpdf;

import com.itextpdf.text.Document;

import com.itextpdf.text.DocumentException;

import com.itextpdf.text.Image;

import com.itextpdf.text.pdf.PdfWriter;

import java.io.FileOutputStream;

import java.io.IOException;

public class AjavaImageRotateDemo {

public static void main(String[] args) {

Document document = new Document();

try {

PdfWriter.getInstance(document,

new FileOutputStream("AjavaImageRotation.pdf"));

document.open();

String filename = "ajava/logo.gif";

Image image = Image.getInstance(filename);

image.setRotation(90f);

document.add(image);

String url = "http://ajava.org/template/eis_002_dzx/img/logo.gif";

image = Image.getInstance(url);

image.setRotationDegrees(90);//旋转90度

document.add(image);

} catch (DocumentException | IOException e) {

e.printStackTrace();

} finally {

document.close();

}

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值