What is the best practice for linking images in TCPDF using PHP?

When linking images in TCPDF using PHP, it is best practice to use the `Image()` method provided by TCPDF to properly handle image linking and positioning within the PDF document. This method allows you to specify the image file path, position, dimensions, and other attributes easily.

// Include the TCPDF library
require_once('tcpdf/tcpdf.php');

// Create new TCPDF object
$pdf = new TCPDF();

// Add a page
$pdf->AddPage();

// Set image file path
$image_file = 'path/to/image.jpg';

// Set image position and dimensions
$pdf->Image($image_file, $x = 10, $y = 10, $w = 100, $h = 100, $type = '', $link = '', $align = '', $resize = false, $dpi = 300);

// Output the PDF
$pdf->Output('example.pdf', 'I');