PDF Generation Template Editor
Open-source visual PDF generation engine with customizable templates and developer-friendly APIs.
Open-source visual PDF generation engine with customizable templates and developer-friendly APIs.
div.setBackgroundColor(new CColor(240, 240, 240, 255));// Create a background image
CBackgroundImage bgImage = new CBackgroundImage();
// Set a single image source
bgImage.setSource("path/to/background.png");
ArrayList<String> sources = new ArrayList<>();
sources.add("path/to/image1.png");
sources.add("path/to/image2.png");
// Or set multiple image sources
bgImage.setSources(sources);
// Apply the background image
div.setBackgroundImage(bgImage);