fix annotations

This commit is contained in:
Pete Matsyburka
2024-01-19 01:15:13 +02:00
parent f69aa33f3d
commit 73fc2d92f7
+4 -4
View File
@@ -29,10 +29,10 @@ module Templates
{
'type' => 'external_link',
'value' => annot[:A][:URI],
'x' => left / page.width,
'y' => (page.height - top) / page.height,
'w' => (right - left) / page.width,
'h' => (top - bottom) / page.height
'x' => left / page.width.to_f,
'y' => (page.height - top) / page.height.to_f,
'w' => (right - left) / page.width.to_f,
'h' => (top - bottom) / page.height.to_f
}
end
end