Re: Fwd: [QUESTION] why there is a horizontal line in middle of text-property displayed image?

2022-10-01 Thread Ihor Radchenko
"Christopher M. Miles" writes: > I replaced step 5 with step 6 by extracting the logic code of > org-link-beautify, but I found it does not have center-line. That's > really weird. > ... >(put-text-property > start end > 'display (create-image

Re: Fwd: [QUESTION] why there is a horizontal line in middle of text-property displayed image?

2022-10-01 Thread Christopher M. Miles
Ihor Radchenko writes: > "Christopher M. Miles" writes: > >> 2. install package =[M-x package-install RET org-link-beautify RET]= > > Hmm. Can you also reproduce without org-link-beautify? I replaced step 5 with step 6 by extracting the logic code of org-link-beautify, but I found it does

Re: Fwd: [QUESTION] why there is a horizontal line in middle of text-property displayed image?

2022-10-01 Thread Ihor Radchenko
"Christopher M. Miles" writes: > 2. install package =[M-x package-install RET org-link-beautify RET]= Hmm. Can you also reproduce without org-link-beautify? -- Ihor Radchenko, Org mode contributor, Learn more about Org mode at https://orgmode.org/. Support Org development at

Re: Fwd: [QUESTION] why there is a horizontal line in middle of text-property displayed image?

2022-10-01 Thread Christopher M. Miles
Ihor Radchenko writes: > "Christopher M. Miles" writes: > >>> Here is the prototype code which displaying image with text-property: >>> >>> #+begin_src emacs-lisp >>> (put-text-property start end >>>'display (create-image thumbnail nil nil :ascent 'center >>> :max-height

Re: Fwd: [QUESTION] why there is a horizontal line in middle of text-property displayed image?

2022-10-01 Thread Christopher M. Miles
Ihor Radchenko writes: > "Christopher M. Miles" writes: > >>> Here is the prototype code which displaying image with text-property: >>> >>> #+begin_src emacs-lisp >>> (put-text-property start end >>>'display (create-image thumbnail nil nil :ascent 'center >>> :max-height

Re: Fwd: [QUESTION] why there is a horizontal line in middle of text-property displayed image?

2022-09-30 Thread Ihor Radchenko
"Christopher M. Miles" writes: >> Here is the prototype code which displaying image with text-property: >> >> #+begin_src emacs-lisp >> (put-text-property start end >>'display (create-image thumbnail nil nil :ascent 'center >> :max-height thumbnail-size)) >> #+end_src >> >>