Open sati-bodhi opened 1 year ago
I've check upstream and found this:
epdfinfo.c
: if (! strcmp (type, "highlight"))
a = poppler_annot_text_markup_new_highlight (doc->pdf, r, garray);
else if (! strcmp (type, "squiggly"))
a = poppler_annot_text_markup_new_squiggly (doc->pdf, r, garray);
else if (! strcmp (type, "strike-out"))
a = poppler_annot_text_markup_new_strikeout (doc->pdf, r, garray);
else if (! strcmp (type, "underline"))
a = poppler_annot_text_markup_new_underline (doc->pdf, r, garray);
else
cerror_if_not (0, error_msg, "Unknown annotation type: %s", type);
It seems to me that this limitation is preset at the server level. But I wasn't able to reinstall the server to try it out.
Other tweaks I've made:
In pdf-annot.el
:
(defun pdf-annot-add-square-markup-annotation (list-of-edges
&optional color property-alist)
"Add a new square annotation in the selected window.
LIST-OF-EDGES defines the annotation boundary. COLOR defines the
annotation color and PROPERTY-ALIST defines additional annotation
properties. See also `pdf-annot-add-markup-annotation'."
(interactive (list (pdf-view-active-region t)))
(pdf-annot-add-markup-annotation list-of-edges 'square color property-alist))
In pdf-info.el
:
(defun pdf-info-creatable-annotation-types ()
(let ((features (pdf-info-features)))
(cond
((not (memq 'writable-annotations features)) nil)
((memq 'markup-annotations features)
(list 'text 'squiggly 'underline 'strike-out 'highlight 'square))
(t (list 'text)))))
Would be great to have a rectangular box and simple lines. Both of these are defined by two points. All other extras don't seem that much useful.
I think caret
is also very useful to indicate omissions and missing words.
it would be great also if there is freehand type of annotation, as sometimes you just want to mark a portion of a picture or when the pdf has watermark on it. it seems very distorted when adding highlight annotation
In
pdf-annot-markup-annotation-types
, we see a long list of "defined markup annotation types".But only a few are "listed" and supported in
pdf-annot-list-listed-types
:Just wondering if it is possible to extend the supported type at least to lines, squares and circles so that markup can be done more freely, especially when ocr (which most of the support types rely on) is not done or done poorly.
doesn't change anything, functionally speaking.