我正在使用此代码在我使用 PDFLib 生成的 PDF 的框中呈现图像
$p = new pdflib();
if ($p->begin_document("", "") == 0)
throw new Exception("Error: " . $p->get_errmsg());
$p->begin_page_ext(0, 0, "width=792 height=612");
$image = $p->load_image("auto", "01.jpg", "");
$p->fit_image($image, 100,200,"boxsize={300 500} fitmethod=entire showborder");
这按预期工作。现在需要像上面指定的那样在框内旋转图像。
我试过这个:
$p->fit_image($image, 100,200,"boxsize={300 500} fitmethod=entire showborder rotate 15");
但它没有产生任何结果。
更新:当我尝试上面没有显示边框的代码时,它可以工作:
$p->fit_image($image, 100,200,"boxsize={300 500} fitmethod=entire rotate 15");
知道为什么会这样吗?