Skip to content
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

8248908: Printer.createPageLayout() returns 0.75" margins instead of hardware margins #266

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -698,7 +698,10 @@ private void populateMedia() {
for (int i=0; i<media.length; i++) {
Media m = media[i];
if (m instanceof MediaSizeName) {
pSet.add(addPaper(((MediaSizeName)m)));
Paper p = addPaper(((MediaSizeName)m));
if (p != null) {
pSet.add(p);
}
} else if (m instanceof MediaTray) {
tSet.add(addPaperSource((MediaTray)m));
}
Expand Down Expand Up @@ -782,22 +785,34 @@ private synchronized final PaperSource addPaperSource(MediaTray tray) {
private final Map<Paper, MediaSizeName> paperToMediaMap
= new HashMap<Paper, MediaSizeName>();

private Paper createPaper(MediaSizeName media) {
Paper paper = null;
MediaSize sz = MediaSize.getMediaSizeForName(media);
if (sz != null) {
double pw = sz.getX(1) / 1000.0;
double ph = sz.getY(1) / 1000.0;
paper = PrintHelper.createPaper(media.toString(),
pw, ph, Units.MM);
}
return paper;
}

private synchronized final Paper addPaper(MediaSizeName media) {
Paper paper = predefinedPaperMap.get(media);
if (paper == null ) {
MediaSize sz = MediaSize.getMediaSizeForName(media);
if (sz != null) {
double pw = sz.getX(1) / 1000.0;
double ph = sz.getY(1) / 1000.0;
paper = PrintHelper.createPaper(media.toString(),
pw, ph, Units.MM);
}
if (paper == null) {
paper = createPaper(media);
}
/* If that failed create a Paper from the default MediaSizeName */
if (paper == null) {
paper = Paper.NA_LETTER;
Media m = (Media)service.getDefaultAttributeValue(Media.class);
if (m instanceof MediaSizeName) {
paper = createPaper((MediaSizeName)m);
}
}
if (paper != null) {
paperToMediaMap.put(paper, media);
mediaToPaperMap.put(media, paper);
}
paperToMediaMap.put(paper, media);
mediaToPaperMap.put(media, paper);
return paper;
}

Expand Down
@@ -0,0 +1,94 @@
/*
* Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/

package test.javafx.print;

import javafx.application.Platform;

import javafx.print.PageLayout;
import javafx.print.PageOrientation;
import javafx.print.Paper;
import javafx.print.Printer;
import static javafx.print.Printer.MarginType.HARDWARE_MINIMUM;

import javax.print.PrintService;
import javax.print.PrintServiceLookup;
import javax.print.attribute.HashPrintRequestAttributeSet;
import javax.print.attribute.PrintRequestAttributeSet;
import javax.print.attribute.standard.Media;
import javax.print.attribute.standard.MediaPrintableArea;
import static javax.print.attribute.standard.MediaPrintableArea.INCH;
import javax.print.attribute.standard.MediaSizeName;

import org.junit.Test;
import static org.junit.Assert.fail;
import static org.junit.Assume.assumeNotNull;

public class MarginsTest {

@Test public void test() {

Printer printer = Printer.getDefaultPrinter();
assumeNotNull(printer);

PageLayout layout =
printer.createPageLayout(Paper.NA_LETTER,
PageOrientation.PORTRAIT,
HARDWARE_MINIMUM);

int lm = (int)Math.round(layout.getLeftMargin());
int rm = (int)Math.round(layout.getRightMargin());
int bm = (int)Math.round(layout.getBottomMargin());
int tm = (int)Math.round(layout.getTopMargin());

System.out.println("FX : lm=" + lm + " rm=" + rm +
" tm=" + tm + " bm=" + bm);
/* 0.75ins * 72 = 54 pts */
if (lm != 54 || rm != 54 || tm != 54 || bm != 54) {
return; // Got something other than default.
}

/* Could this be what we got from 2D ? Unlikely but check. */
PrintService service = PrintServiceLookup.lookupDefaultPrintService();
/* If this is null, too much chance of false positive to continue */
if (service == null) {
return;
}
PrintRequestAttributeSet pras = new HashPrintRequestAttributeSet();
pras.add(MediaSizeName.NA_LETTER);
MediaPrintableArea[] mpa = (MediaPrintableArea[])service.
getSupportedAttributeValues(MediaPrintableArea.class, null, pras);
if (mpa.length == 0) { // never null.
return;
}
int mlm = (int)(Math.round(mpa[0].getX(INCH)*72));
int mtm = (int)(Math.round(mpa[0].getX(INCH)*72));
System.out.println("2D : lm=" + mlm + " tm= " + mtm);
if (mlm == 54 && mtm == 54) {
return;
}
fail("Margins differ.");
}
}