Skip to content
Snippets Groups Projects
Commit db4dca54 authored by srosse's avatar srosse
Browse files

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
......@@ -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));
}
......
......@@ -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 convertPixelToEMUs2(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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment