import com.paperstyles.*;
import java.awt.Color;
public class PaperStylesExample {
public static void main(String[] args) {
PrintStyle printStyle = new PrintStyle(PaperSize.A4);
ParagraphStyle paragraphStyle = new ParagraphStyle();
paragraphStyle.setAlignment(Alignment.CENTER);
title.setParagraphStyle(paragraphStyle);
printStyle.addText(title);
content.setParagraphStyle(paragraphStyle);
printStyle.addText(content);
ImageStyle imageStyle = new ImageStyle("path/to/image.jpg");
printStyle.addImage(imageStyle);
printStyle.setPageNumbering(true);
printStyle.print();
}
}