Example usage for com.itextpdf.text Image setBorderColor

List of usage examples for com.itextpdf.text Image setBorderColor

Introduction

In this page you can find the example usage for com.itextpdf.text Image setBorderColor.

Prototype

public void setBorderColor(final BaseColor borderColor) 

Source Link

Document

Sets the color of the border.

Usage

From source file:utils.pdf.cv_templates.Template4.java

private void addImage(User user) throws DocumentException, IOException {
    Image photo_img;
    if (!user.photo.id.equals("")) {
        photo_img = Image//from www .j a v  a 2  s .  com
                .getInstance(String.format("https://s3.amazonaws.com/aunclickdelempleo2/" + user.photo.id));
    } else {
        photo_img = Image.getInstance(String.format("public/images/orientation/photo/ic_profile.png"));
    }

    photo_img.setAbsolutePosition(450, 690);
    photo_img.setAlignment(Image.LEFT | Image.TEXTWRAP);
    photo_img.setBorder(Image.BOX);
    photo_img.setBorderWidth(10);
    photo_img.setBorderColor(BaseColor.WHITE);
    photo_img.scaleToFit(1000, 115);
    document.add(photo_img);
}