Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
OLAT CI-CD Testing Project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor 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
Lars Oliver Dam
OLAT CI-CD Testing Project
Commits
db4dca54
Commit
db4dca54
authored
9 years ago
by
srosse
Browse files
Options
Downloads
Plain Diff
Merge OpenOLAT 10.3 to OpenOLAT default branch with 0ffa0f086b20256c9cc961a7d4c4e38d8532ec78
parents
742a9ba7
cca36191
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/main/java/org/olat/core/util/openxml/OpenXMLDocument.java
+5
-2
5 additions, 2 deletions
...main/java/org/olat/core/util/openxml/OpenXMLDocument.java
src/main/java/org/olat/core/util/openxml/OpenXMLUtils.java
+21
-1
21 additions, 1 deletion
src/main/java/org/olat/core/util/openxml/OpenXMLUtils.java
with
26 additions
and
3 deletions
src/main/java/org/olat/core/util/openxml/OpenXMLDocument.java
+
5
−
2
View file @
db4dca54
...
...
@@ -66,6 +66,8 @@ import fmath.conversion.ConvertFromLatexToMathML;
import
fmath.conversion.ConvertFromMathMLToWord
;
/**
* The page are A4 format, with 2.54cm margins on top, bottom, left and right.
*
*
* Initial date: 04.09.2013<br>
* @author srosse, stephane.rosse@frentix.com, http://www.frentix.com
...
...
@@ -227,7 +229,8 @@ public class OpenXMLDocument {
</w:sectPr>
*/
/**
* Must be done at the end of the document
* Must be done at the end of the document. The unit for the size of the
* page and the margin is in twips or twentieths of a point.
*/
public
void
appendPageSettings
()
{
Node
lastChild
=
bodyElement
.
getLastChild
();
...
...
@@ -1014,7 +1017,7 @@ public class OpenXMLDocument {
}
else
{
id
=
generateId
();
Size
size
=
ImageUtils
.
getImageSize
(
image
);
emuSize
=
OpenXMLUtils
.
convertPixelToEMUs
(
size
,
72
);
emuSize
=
OpenXMLUtils
.
convertPixelToEMUs
(
size
,
72
,
15.9
/* cm */
);
filename
=
getUniqueFilename
(
image
);
fileToImagesMap
.
put
(
image
,
new
DocReference
(
id
,
filename
,
emuSize
,
image
));
}
...
...
This diff is collapsed.
Click to expand it.
src/main/java/org/olat/core/util/openxml/OpenXMLUtils.java
+
21
−
1
View file @
db4dca54
...
...
@@ -58,8 +58,9 @@ public class OpenXMLUtils {
private
static
final
OLog
log
=
Tracing
.
createLoggerFor
(
OpenXMLUtils
.
class
);
public
static
final
double
emusPerInch
=
914400.0d
;
public
static
final
double
emusPerCm
=
360000.0d
;
public
static
final
Size
convertPixelToEMUs
(
Size
img
,
int
dpi
)
{
public
static
final
Size
convertPixelToEMUs
2
(
Size
img
,
int
dpi
)
{
int
widthPx
=
img
.
getWidth
();
int
heightPx
=
img
.
getHeight
();
double
horzRezDpi
=
dpi
*
1.0d
;
...
...
@@ -71,6 +72,25 @@ public class OpenXMLUtils {
return
new
Size
((
int
)
widthEmus
,
(
int
)
heightEmus
,
0
,
0
,
true
);
}
public
static
final
Size
convertPixelToEMUs
(
Size
img
,
int
dpi
,
double
maxWidthCm
)
{
int
widthPx
=
img
.
getWidth
();
int
heightPx
=
img
.
getHeight
();
double
horzRezDpi
=
dpi
*
1.0d
;
double
vertRezDpi
=
dpi
*
1.0d
;
double
widthEmus
=
(
widthPx
/
horzRezDpi
)
*
emusPerInch
;
double
heightEmus
=
(
heightPx
/
vertRezDpi
)
*
emusPerInch
;
double
maxWidthEmus
=
maxWidthCm
*
emusPerCm
;
if
(
widthEmus
>
maxWidthEmus
)
{
double
ratio
=
heightEmus
/
widthEmus
;
widthEmus
=
maxWidthEmus
;
heightEmus
=
widthEmus
*
ratio
;
}
return
new
Size
((
int
)
widthEmus
,
(
int
)
heightEmus
,
0
,
0
,
true
);
}
public
static
int
getSpanAttribute
(
String
name
,
Attributes
attrs
)
{
name
=
name
.
toLowerCase
();
int
span
=
-
1
;
...
...
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