Created
October 26, 2024 06:17
-
-
Save documentprocessing/c604ed891e41186d6f3d8ba1008fa4a3 to your computer and use it in GitHub Desktop.
Add image to PDF using QuestPDF
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using QuestPDF.Fluent; | |
using QuestPDF.Helpers; | |
using QuestPDF.Infrastructure; | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
// Create a PDF document | |
Document.Create(document => | |
{ | |
// Define document structure | |
document.Page(page => | |
{ | |
// Set page size and margin | |
page.Size(PageSizes.A4); | |
page.Margin(2, Unit.Centimetre); | |
// Add image to the PDF | |
page.Content() | |
.Image("path/to/your/image.jpg", ImageScaling.FitWidth); // Adjust the path accordingly | |
}); | |
}) | |
.GeneratePdf("ImageDocument.pdf"); // Save the PDF to a file | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment