-
-
Notifications
You must be signed in to change notification settings - Fork 893
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added custom renderer for entire layer #1215
Open
ishan-ironclad
wants to merge
1
commit into
wojtekmaj:main
Choose a base branch
from
ishan-ironclad:ishan-ironclad/customTextLayerRenderer
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Added custom renderer for entire layer #1215
ishan-ironclad
wants to merge
1
commit into
wojtekmaj:main
from
ishan-ironclad:ishan-ironclad/customTextLayerRenderer
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wojtekmaj
force-pushed
the
main
branch
2 times, most recently
from
February 12, 2023 19:18
36a36d4
to
e249af6
Compare
wojtekmaj
force-pushed
the
main
branch
5 times, most recently
from
March 8, 2023 12:49
26a73cc
to
33ea5de
Compare
wojtekmaj
force-pushed
the
main
branch
2 times, most recently
from
April 17, 2023 20:39
f5a9fd6
to
9243e45
Compare
wojtekmaj
force-pushed
the
main
branch
2 times, most recently
from
May 8, 2023 13:01
fbeabf1
to
240150a
Compare
taneliang
force-pushed
the
ishan-ironclad/customTextLayerRenderer
branch
from
July 25, 2023 22:00
4809c6b
to
8bc03af
Compare
Hmmm I'm not against it, think it could be a good addition, but yeah, we'll need docs and tests before this can be merged. I can't take care of this right now. In the meantime, have a look here: #614 (comment) |
wojtekmaj
force-pushed
the
main
branch
2 times, most recently
from
September 22, 2023 13:37
fc18d18
to
304893b
Compare
wojtekmaj
force-pushed
the
main
branch
4 times, most recently
from
October 23, 2023 12:56
653aa2c
to
9bb8a85
Compare
taneliang
force-pushed
the
ishan-ironclad/customTextLayerRenderer
branch
from
November 1, 2023 20:42
8bc03af
to
bf88495
Compare
wojtekmaj
force-pushed
the
main
branch
7 times, most recently
from
May 14, 2024 09:32
2d488c1
to
a077571
Compare
wojtekmaj
force-pushed
the
main
branch
5 times, most recently
from
June 10, 2024 23:04
1f758cc
to
ce6db03
Compare
wojtekmaj
force-pushed
the
main
branch
2 times, most recently
from
June 13, 2024 08:22
42a8c3c
to
0d68fee
Compare
wojtekmaj
force-pushed
the
main
branch
4 times, most recently
from
July 9, 2024 15:54
d0aabb2
to
736f3f3
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hi! I had to add a prop to custom-render all text-items at once, rather than one at a time for a search-highlighting use case at the organization I work for. We are looking to search for arbitrary-length phrases on a PDF page, and highlight them if they exist. The main problem being solved here is that longer items of text may be broken up across textLayer items, resulting in many search hits on the document being missed. Seems like this could be a popular use case of this API, so I think it'd be worth it to get this in. Let me know if there's any documentation or testing I'd need to add to get this contribution in.
Thanks!