I am creating dynamic pdf files with tcpdf,fpdi,fpdf .The template pdf file is done in indesign and i wanted to use the x and y coordinates as a guide. (In design settings are in px). but when i put a picture
$pdf->Image($pic1, 10, 10, 100, 100, 'JPG', '', '', true, 300, '', false, false, 0, false, false, false);
the result image dimensions become like 280px X 280px . how can i stop tcpdf resizing my images? the same problem is for coordinates too. if i set up x and y coordinates to 100, the result is 280px too.
my tcpdf settings are in mm, i have tried different dpi settings too.