mirror of
https://github.com/UglyToad/PdfPig.git
synced 2025-11-24 16:53:20 +08:00
Fix writing explicit XYZ coordinates
This commit is contained in:
@@ -921,7 +921,8 @@ namespace UglyToad.PdfPig.Writer
|
||||
page,
|
||||
NameToken.XYZ,
|
||||
new NumericToken(destination.Coordinates.Left ?? 0),
|
||||
new NumericToken(destination.Coordinates.Top ?? 0)
|
||||
new NumericToken(destination.Coordinates.Top ?? 0),
|
||||
new NumericToken(0)
|
||||
});
|
||||
|
||||
case ExplicitDestinationType.FitPage:
|
||||
|
||||
Reference in New Issue
Block a user