Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
Iparapheur Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Libriciel
i-Parapheur
iparapheur4
Iparapheur Core
Commits
dc75880c
Commit
dc75880c
authored
1 year ago
by
lhameury
Browse files
Options
Downloads
Patches
Plain Diff
Stop calling libriciel-pdf on every page when searching for sigtag
parent
61244053
No related branches found
No related tags found
No related merge requests found
Pipeline
#68167
failed
1 year ago
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
iparapheur-core/src/main/java/coop/libriciel/utils/poppler/PopplerUtils.java
+26
-29
26 additions, 29 deletions
.../main/java/coop/libriciel/utils/poppler/PopplerUtils.java
with
26 additions
and
29 deletions
iparapheur-core/src/main/java/coop/libriciel/utils/poppler/PopplerUtils.java
+
26
−
29
View file @
dc75880c
...
...
@@ -90,37 +90,34 @@ public class PopplerUtils {
}
public
TagSearchResult
getTextLocation
(
String
path
,
String
toFind
)
{
int
count
=
getPageCount
(
path
);
for
(
int
i
=
0
;
i
<
count
;
i
++)
{
TagSearchResult
tagSearchResult
=
new
TagSearchResult
();
PopplerCallResult
result
=
doCall
(
CommandType
.
LOCATE
.
value
(),
toFind
,
CommandType
.
PAGE
.
value
(),
String
.
valueOf
(
i
),
CommandType
.
FILE
.
value
(),
path
);
if
(
result
.
resultCode
==
0
)
{
// Top, Right, Bottom, Left
String
[]
rectData
=
result
.
output
.
split
(
","
);
if
(
rectData
.
length
!=
4
)
{
log
.
error
(
result
.
output
);
log
.
error
(
result
.
error
);
return
null
;
}
Rectangle
rectangle
=
new
Rectangle
();
rectangle
.
width
=
Math
.
abs
(
Math
.
round
(
Float
.
parseFloat
(
rectData
[
1
].
trim
())
-
Float
.
parseFloat
(
rectData
[
3
].
trim
())));
rectangle
.
height
=
Math
.
round
(
Float
.
parseFloat
(
rectData
[
0
].
trim
())
-
Float
.
parseFloat
(
rectData
[
2
].
trim
()));
rectangle
.
x
=
Math
.
round
(
Float
.
parseFloat
(
rectData
[
3
].
trim
()));
rectangle
.
y
=
Math
.
round
(
Float
.
parseFloat
(
rectData
[
2
].
trim
())
-
Math
.
abs
(
rectangle
.
height
));
tagSearchResult
.
page
=
i
+
1
;
tagSearchResult
.
rectangle
=
rectangle
;
return
tagSearchResult
;
}
else
{
if
(!
result
.
error
.
isEmpty
())
{
log
.
error
(
result
.
error
);
}
TagSearchResult
tagSearchResult
=
new
TagSearchResult
();
PopplerCallResult
result
=
doCall
(
CommandType
.
LOCATE
.
value
(),
toFind
,
CommandType
.
FILE
.
value
(),
path
);
if
(
result
.
resultCode
==
0
)
{
// Top, Right, Bottom, Left
String
[]
rectData
=
result
.
output
.
split
(
","
);
if
(
rectData
.
length
!=
5
)
{
log
.
error
(
result
.
output
);
log
.
error
(
result
.
error
);
return
null
;
}
Rectangle
rectangle
=
new
Rectangle
();
rectangle
.
width
=
Math
.
abs
(
Math
.
round
(
Float
.
parseFloat
(
rectData
[
1
].
trim
())
-
Float
.
parseFloat
(
rectData
[
3
].
trim
())));
rectangle
.
height
=
Math
.
round
(
Float
.
parseFloat
(
rectData
[
0
].
trim
())
-
Float
.
parseFloat
(
rectData
[
2
].
trim
()));
rectangle
.
x
=
Math
.
round
(
Float
.
parseFloat
(
rectData
[
3
].
trim
()));
rectangle
.
y
=
Math
.
round
(
Float
.
parseFloat
(
rectData
[
2
].
trim
())
-
Math
.
abs
(
rectangle
.
height
));
tagSearchResult
.
page
=
Integer
.
parseInt
(
rectData
[
4
].
trim
())
+
1
;
tagSearchResult
.
rectangle
=
rectangle
;
return
tagSearchResult
;
}
else
{
if
(!
result
.
error
.
isEmpty
())
{
log
.
error
(
result
.
error
);
}
}
return
null
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment