mirror of
https://github.com/UglyToad/PdfPig.git
synced 2025-06-28 15:30:17 +08:00
Fix writing explicit XYZ coordinates
This commit is contained in:
parent
63096de210
commit
17d50f071d
@ -921,7 +921,8 @@ namespace UglyToad.PdfPig.Writer
|
|||||||
page,
|
page,
|
||||||
NameToken.XYZ,
|
NameToken.XYZ,
|
||||||
new NumericToken(destination.Coordinates.Left ?? 0),
|
new NumericToken(destination.Coordinates.Left ?? 0),
|
||||||
new NumericToken(destination.Coordinates.Top ?? 0)
|
new NumericToken(destination.Coordinates.Top ?? 0),
|
||||||
|
new NumericToken(0)
|
||||||
});
|
});
|
||||||
|
|
||||||
case ExplicitDestinationType.FitPage:
|
case ExplicitDestinationType.FitPage:
|
||||||
|
Loading…
Reference in New Issue
Block a user