I have this code below which generates a PDF from an image.
Set(
MYPDF2;
PDF(Image8;
{
Orientation: PaperOrientation.Portrait;
Size: PaperSize.A4;
DPI: 1;
ExpandContainers: true
}
)
)
i have another code which downloads my generated PDF on an attachment form:
{Name:"NON-FORMEE.pdf";value:MYPDF2}
My issue is that i have created multiple labels text to my image. I need to Generate PDF with my image and all its labels.text inside.
How can i archieve this?