diff --git a/lib/mixins/annotations.js b/lib/mixins/annotations.js index f670e04..cfb4212 100644 --- a/lib/mixins/annotations.js +++ b/lib/mixins/annotations.js @@ -3,6 +3,11 @@ export default { options.Type = 'Annot'; options.Rect = this._convertRect(x, y, w, h); options.Border = [0, 0, 0]; + + if (options.Subtype === 'Link' && typeof options.F === 'undefined') { + options.F = 1 << 2; // Print Annotaion Flag + } + if (options.Subtype !== 'Link') { if (options.C == null) { options.C = this._normalizeColor(options.color || [0, 0, 0]);