Caption is significantly slower than Annotate or Text #637
Unanswered
CharlesSchimmel
asked this question in
General
Replies: 1 comment
-
The |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi all,
I have a situation where I'm essentially doing this a bunch of times:
And I've found it significantly faster to use
MagickImage.Annotate
orDrawables.Text
thanRead("caption")
andRead("label")
. I haven't triedRead("label")
. What might be the reason for this? I would assume it's either the extra work to figure out the best text size to fit an image, or the.Read()
option splitting up the whole image generation into multiple ImageMagick calls instead of condensing into as few as possible. Any other recommendations for performant, autofitting text?This library is great by the way!
Beta Was this translation helpful? Give feedback.
All reactions