function PixelsToInches(Pixels, PixelsPerInch: Double): Double;
Statički pomoćni alat koji pretvara mjernu vrijednost između piksel / točka / inč jedinica. PDF koordinate su izražene u točkama (1 pt = 1/72 inča).
Convert a pixel measurement at the given DPI to inches. The conversion formula is value / DPI.
These helpers are class functions; you can call them without instantiating TPdf (e.g. TPdf.PixelsToInches(96)).
*To* functions on TPdf and TPdfView.
var
Margin: Double;
begin
Margin := TPdf.PixelsToInches(300);
Memo1.Lines.Add(Format('PixelsToInches(300) = %.4f', [Margin]));
end;