java.awt.print.PrinterIOException Java Examples
The following examples show how to use
java.awt.print.PrinterIOException.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: PSPrinterJob.java From dragonwell8_jdk with GNU General Public License v2.0 | 6 votes |
public Object run() { try { /* Write to a temporary file which will be spooled to * the printer then deleted. In the case that the file * is not removed for some reason, request that it is * removed when the VM exits. */ spoolFile = Files.createTempFile("javaprint", ".ps").toFile(); spoolFile.deleteOnExit(); result = new FileOutputStream(spoolFile); return result; } catch (IOException ex) { // If there is an IOError we subvert it to a PrinterException. pex = new PrinterIOException(ex); } return null; }
Example #2
Source File: PSPrinterJob.java From openjdk-8 with GNU General Public License v2.0 | 6 votes |
public Object run() { try { /* Write to a temporary file which will be spooled to * the printer then deleted. In the case that the file * is not removed for some reason, request that it is * removed when the VM exits. */ spoolFile = Files.createTempFile("javaprint", ".ps").toFile(); spoolFile.deleteOnExit(); result = new FileOutputStream(spoolFile); return result; } catch (IOException ex) { // If there is an IOError we subvert it to a PrinterException. pex = new PrinterIOException(ex); } return null; }
Example #3
Source File: PSPrinterJob.java From openjdk-8-source with GNU General Public License v2.0 | 6 votes |
public Object run() { try { /* Write to a temporary file which will be spooled to * the printer then deleted. In the case that the file * is not removed for some reason, request that it is * removed when the VM exits. */ spoolFile = Files.createTempFile("javaprint", ".ps").toFile(); spoolFile.deleteOnExit(); result = new FileOutputStream(spoolFile); return result; } catch (IOException ex) { // If there is an IOError we subvert it to a PrinterException. pex = new PrinterIOException(ex); } return null; }
Example #4
Source File: PSPrinterJob.java From jdk8u_jdk with GNU General Public License v2.0 | 6 votes |
public Object run() { try { /* Write to a temporary file which will be spooled to * the printer then deleted. In the case that the file * is not removed for some reason, request that it is * removed when the VM exits. */ spoolFile = Files.createTempFile("javaprint", ".ps").toFile(); spoolFile.deleteOnExit(); result = new FileOutputStream(spoolFile); return result; } catch (IOException ex) { // If there is an IOError we subvert it to a PrinterException. pex = new PrinterIOException(ex); } return null; }
Example #5
Source File: PSPrinterJob.java From hottub with GNU General Public License v2.0 | 6 votes |
public Object run() { try { /* Write to a temporary file which will be spooled to * the printer then deleted. In the case that the file * is not removed for some reason, request that it is * removed when the VM exits. */ spoolFile = Files.createTempFile("javaprint", ".ps").toFile(); spoolFile.deleteOnExit(); result = new FileOutputStream(spoolFile); return result; } catch (IOException ex) { // If there is an IOError we subvert it to a PrinterException. pex = new PrinterIOException(ex); } return null; }
Example #6
Source File: PSPrinterJob.java From jdk8u-jdk with GNU General Public License v2.0 | 6 votes |
public Object run() { try { /* Write to a temporary file which will be spooled to * the printer then deleted. In the case that the file * is not removed for some reason, request that it is * removed when the VM exits. */ spoolFile = Files.createTempFile("javaprint", ".ps").toFile(); spoolFile.deleteOnExit(); result = new FileOutputStream(spoolFile); return result; } catch (IOException ex) { // If there is an IOError we subvert it to a PrinterException. pex = new PrinterIOException(ex); } return null; }
Example #7
Source File: PSPrinterJob.java From openjdk-jdk9 with GNU General Public License v2.0 | 6 votes |
public OutputStream run() { try { /* Write to a temporary file which will be spooled to * the printer then deleted. In the case that the file * is not removed for some reason, request that it is * removed when the VM exits. */ spoolFile = Files.createTempFile("javaprint", ".ps").toFile(); spoolFile.deleteOnExit(); result = new FileOutputStream(spoolFile); return result; } catch (IOException ex) { // If there is an IOError we subvert it to a PrinterException. pex = new PrinterIOException(ex); } return null; }
Example #8
Source File: PSPrinterJob.java From jdk8u-jdk with GNU General Public License v2.0 | 6 votes |
public Object run() { try { /* Write to a temporary file which will be spooled to * the printer then deleted. In the case that the file * is not removed for some reason, request that it is * removed when the VM exits. */ spoolFile = Files.createTempFile("javaprint", ".ps").toFile(); spoolFile.deleteOnExit(); result = new FileOutputStream(spoolFile); return result; } catch (IOException ex) { // If there is an IOError we subvert it to a PrinterException. pex = new PrinterIOException(ex); } return null; }
Example #9
Source File: PSPrinterJob.java From Bytecoder with Apache License 2.0 | 6 votes |
public OutputStream run() { try { /* Write to a temporary file which will be spooled to * the printer then deleted. In the case that the file * is not removed for some reason, request that it is * removed when the VM exits. */ spoolFile = Files.createTempFile("javaprint", ".ps").toFile(); spoolFile.deleteOnExit(); result = new FileOutputStream(spoolFile); return result; } catch (IOException ex) { // If there is an IOError we subvert it to a PrinterException. pex = new PrinterIOException(ex); } return null; }
Example #10
Source File: PSPrinterJob.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 6 votes |
public Object run() { try { /* Write to a temporary file which will be spooled to * the printer then deleted. In the case that the file * is not removed for some reason, request that it is * removed when the VM exits. */ spoolFile = Files.createTempFile("javaprint", ".ps").toFile(); spoolFile.deleteOnExit(); result = new FileOutputStream(spoolFile); return result; } catch (IOException ex) { // If there is an IOError we subvert it to a PrinterException. pex = new PrinterIOException(ex); } return null; }
Example #11
Source File: PSPrinterJob.java From openjdk-jdk8u with GNU General Public License v2.0 | 6 votes |
public Object run() { try { /* Write to a temporary file which will be spooled to * the printer then deleted. In the case that the file * is not removed for some reason, request that it is * removed when the VM exits. */ spoolFile = Files.createTempFile("javaprint", ".ps").toFile(); spoolFile.deleteOnExit(); result = new FileOutputStream(spoolFile); return result; } catch (IOException ex) { // If there is an IOError we subvert it to a PrinterException. pex = new PrinterIOException(ex); } return null; }
Example #12
Source File: PSPrinterJob.java From jdk8u-dev-jdk with GNU General Public License v2.0 | 6 votes |
public Object run() { try { /* Write to a temporary file which will be spooled to * the printer then deleted. In the case that the file * is not removed for some reason, request that it is * removed when the VM exits. */ spoolFile = Files.createTempFile("javaprint", ".ps").toFile(); spoolFile.deleteOnExit(); result = new FileOutputStream(spoolFile); return result; } catch (IOException ex) { // If there is an IOError we subvert it to a PrinterException. pex = new PrinterIOException(ex); } return null; }
Example #13
Source File: PSPrinterJob.java From jdk8u60 with GNU General Public License v2.0 | 6 votes |
public Object run() { try { /* Write to a temporary file which will be spooled to * the printer then deleted. In the case that the file * is not removed for some reason, request that it is * removed when the VM exits. */ spoolFile = Files.createTempFile("javaprint", ".ps").toFile(); spoolFile.deleteOnExit(); result = new FileOutputStream(spoolFile); return result; } catch (IOException ex) { // If there is an IOError we subvert it to a PrinterException. pex = new PrinterIOException(ex); } return null; }
Example #14
Source File: PSPrinterJob.java From TencentKona-8 with GNU General Public License v2.0 | 6 votes |
public Object run() { try { /* Write to a temporary file which will be spooled to * the printer then deleted. In the case that the file * is not removed for some reason, request that it is * removed when the VM exits. */ spoolFile = Files.createTempFile("javaprint", ".ps").toFile(); spoolFile.deleteOnExit(); result = new FileOutputStream(spoolFile); return result; } catch (IOException ex) { // If there is an IOError we subvert it to a PrinterException. pex = new PrinterIOException(ex); } return null; }
Example #15
Source File: PSPrinterJob.java From jdk8u-jdk with GNU General Public License v2.0 | 5 votes |
public Object run() { if (spoolFile == null || !spoolFile.exists()) { pex = new PrinterException("No spool file"); return null; } try { /** * Spool to the printer. */ String fileName = spoolFile.getAbsolutePath(); String execCmd[] = printExecCmd(mDestination, mOptions, mNoJobSheet, getJobNameInt(), 1, fileName); Process process = Runtime.getRuntime().exec(execCmd); process.waitFor(); final int result = process.exitValue(); if (0 != result) { handleProcessFailure(process, execCmd, result); } } catch (IOException ex) { pex = new PrinterIOException(ex); } catch (InterruptedException ie) { pex = new PrinterException(ie.toString()); } finally { spoolFile.delete(); } return null; }
Example #16
Source File: PSPrinterJob.java From jdk8u_jdk with GNU General Public License v2.0 | 5 votes |
public Object run() { if (spoolFile == null || !spoolFile.exists()) { pex = new PrinterException("No spool file"); return null; } try { /** * Spool to the printer. */ String fileName = spoolFile.getAbsolutePath(); String execCmd[] = printExecCmd(mDestination, mOptions, mNoJobSheet, getJobNameInt(), 1, fileName); Process process = Runtime.getRuntime().exec(execCmd); process.waitFor(); final int result = process.exitValue(); if (0 != result) { handleProcessFailure(process, execCmd, result); } } catch (IOException ex) { pex = new PrinterIOException(ex); } catch (InterruptedException ie) { pex = new PrinterException(ie.toString()); } finally { spoolFile.delete(); } return null; }
Example #17
Source File: PSPrinterJob.java From hottub with GNU General Public License v2.0 | 5 votes |
public Object run() { if (spoolFile == null || !spoolFile.exists()) { pex = new PrinterException("No spool file"); return null; } try { /** * Spool to the printer. */ String fileName = spoolFile.getAbsolutePath(); String execCmd[] = printExecCmd(mDestination, mOptions, mNoJobSheet, getJobNameInt(), 1, fileName); Process process = Runtime.getRuntime().exec(execCmd); process.waitFor(); final int result = process.exitValue(); if (0 != result) { handleProcessFailure(process, execCmd, result); } } catch (IOException ex) { pex = new PrinterIOException(ex); } catch (InterruptedException ie) { pex = new PrinterException(ie.toString()); } finally { spoolFile.delete(); } return null; }
Example #18
Source File: PSPrinterJob.java From jdk8u-dev-jdk with GNU General Public License v2.0 | 5 votes |
public Object run() { if (spoolFile == null || !spoolFile.exists()) { pex = new PrinterException("No spool file"); return null; } try { /** * Spool to the printer. */ String fileName = spoolFile.getAbsolutePath(); String execCmd[] = printExecCmd(mDestination, mOptions, mNoJobSheet, getJobNameInt(), 1, fileName); Process process = Runtime.getRuntime().exec(execCmd); process.waitFor(); final int result = process.exitValue(); if (0 != result) { handleProcessFailure(process, execCmd, result); } } catch (IOException ex) { pex = new PrinterIOException(ex); } catch (InterruptedException ie) { pex = new PrinterException(ie.toString()); } finally { spoolFile.delete(); } return null; }
Example #19
Source File: PSPrinterJob.java From openjdk-8-source with GNU General Public License v2.0 | 5 votes |
public Object run() { if (spoolFile == null || !spoolFile.exists()) { pex = new PrinterException("No spool file"); return null; } try { /** * Spool to the printer. */ String fileName = spoolFile.getAbsolutePath(); String execCmd[] = printExecCmd(mDestination, mOptions, mNoJobSheet, getJobNameInt(), 1, fileName); Process process = Runtime.getRuntime().exec(execCmd); process.waitFor(); final int result = process.exitValue(); if (0 != result) { handleProcessFailure(process, execCmd, result); } } catch (IOException ex) { pex = new PrinterIOException(ex); } catch (InterruptedException ie) { pex = new PrinterException(ie.toString()); } finally { spoolFile.delete(); } return null; }
Example #20
Source File: PSPrinterJob.java From openjdk-8 with GNU General Public License v2.0 | 5 votes |
public Object run() { if (spoolFile == null || !spoolFile.exists()) { pex = new PrinterException("No spool file"); return null; } try { /** * Spool to the printer. */ String fileName = spoolFile.getAbsolutePath(); String execCmd[] = printExecCmd(mDestination, mOptions, mNoJobSheet, getJobNameInt(), 1, fileName); Process process = Runtime.getRuntime().exec(execCmd); process.waitFor(); final int result = process.exitValue(); if (0 != result) { handleProcessFailure(process, execCmd, result); } } catch (IOException ex) { pex = new PrinterIOException(ex); } catch (InterruptedException ie) { pex = new PrinterException(ie.toString()); } finally { spoolFile.delete(); } return null; }
Example #21
Source File: PSPrinterJob.java From jdk8u-jdk with GNU General Public License v2.0 | 4 votes |
/** * Prints the contents of the array of ints, 'data' * to the current page. The band is placed at the * location (x, y) in device coordinates on the * page. The width and height of the band is * specified by the caller. Currently the data * is 24 bits per pixel in BGR format. */ protected void printBand(byte[] bgrData, int x, int y, int width, int height) throws PrinterException { mPSStream.println(IMAGE_SAVE); /* Create a PS string big enough to hold a row of pixels. */ int psBytesPerRow = 3 * width; while (psBytesPerRow > MAX_PSSTR) { psBytesPerRow /= 2; } mPSStream.println(psBytesPerRow + IMAGE_STR); /* Scale and translate the unit image. */ mPSStream.println("[" + width + " 0 " + "0 " + height + " " + x + " " + y +"]concat"); /* Color Image invocation. */ mPSStream.println(width + " " + height + " " + 8 + "[" + width + " 0 " + "0 " + -height + " 0 " + height + "]" + "/imageSrc load false 3 colorimage"); /* Image data. */ int index = 0; byte[] rgbData = new byte[width*3]; try { for(int i = 0; i < height; i++) { index = swapBGRtoRGB(bgrData, index, rgbData); byte[] encodedData = rlEncode(rgbData); byte[] asciiData = ascii85Encode(encodedData); mPSStream.write(asciiData); mPSStream.println(""); } } catch (IOException e) { throw new PrinterIOException(e); } mPSStream.println(IMAGE_RESTORE); }
Example #22
Source File: PSPrinterJob.java From jdk8u_jdk with GNU General Public License v2.0 | 4 votes |
/** * Prints the contents of the array of ints, 'data' * to the current page. The band is placed at the * location (x, y) in device coordinates on the * page. The width and height of the band is * specified by the caller. Currently the data * is 24 bits per pixel in BGR format. */ protected void printBand(byte[] bgrData, int x, int y, int width, int height) throws PrinterException { mPSStream.println(IMAGE_SAVE); /* Create a PS string big enough to hold a row of pixels. */ int psBytesPerRow = 3 * width; while (psBytesPerRow > MAX_PSSTR) { psBytesPerRow /= 2; } mPSStream.println(psBytesPerRow + IMAGE_STR); /* Scale and translate the unit image. */ mPSStream.println("[" + width + " 0 " + "0 " + height + " " + x + " " + y +"]concat"); /* Color Image invocation. */ mPSStream.println(width + " " + height + " " + 8 + "[" + width + " 0 " + "0 " + -height + " 0 " + height + "]" + "/imageSrc load false 3 colorimage"); /* Image data. */ int index = 0; byte[] rgbData = new byte[width*3]; try { for(int i = 0; i < height; i++) { index = swapBGRtoRGB(bgrData, index, rgbData); byte[] encodedData = rlEncode(rgbData); byte[] asciiData = ascii85Encode(encodedData); mPSStream.write(asciiData); mPSStream.println(""); } } catch (IOException e) { throw new PrinterIOException(e); } mPSStream.println(IMAGE_RESTORE); }
Example #23
Source File: PSPrinterJob.java From openjdk-8 with GNU General Public License v2.0 | 4 votes |
/** * Prints the contents of the array of ints, 'data' * to the current page. The band is placed at the * location (x, y) in device coordinates on the * page. The width and height of the band is * specified by the caller. Currently the data * is 24 bits per pixel in BGR format. */ protected void printBand(byte[] bgrData, int x, int y, int width, int height) throws PrinterException { mPSStream.println(IMAGE_SAVE); /* Create a PS string big enough to hold a row of pixels. */ int psBytesPerRow = 3 * width; while (psBytesPerRow > MAX_PSSTR) { psBytesPerRow /= 2; } mPSStream.println(psBytesPerRow + IMAGE_STR); /* Scale and translate the unit image. */ mPSStream.println("[" + width + " 0 " + "0 " + height + " " + x + " " + y +"]concat"); /* Color Image invocation. */ mPSStream.println(width + " " + height + " " + 8 + "[" + width + " 0 " + "0 " + -height + " 0 " + height + "]" + "/imageSrc load false 3 colorimage"); /* Image data. */ int index = 0; byte[] rgbData = new byte[width*3]; try { for(int i = 0; i < height; i++) { index = swapBGRtoRGB(bgrData, index, rgbData); byte[] encodedData = rlEncode(rgbData); byte[] asciiData = ascii85Encode(encodedData); mPSStream.write(asciiData); mPSStream.println(""); } } catch (IOException e) { throw new PrinterIOException(e); } mPSStream.println(IMAGE_RESTORE); }
Example #24
Source File: PSPrinterJob.java From jdk8u-dev-jdk with GNU General Public License v2.0 | 4 votes |
/** * Prints the contents of the array of ints, 'data' * to the current page. The band is placed at the * location (x, y) in device coordinates on the * page. The width and height of the band is * specified by the caller. Currently the data * is 24 bits per pixel in BGR format. */ protected void printBand(byte[] bgrData, int x, int y, int width, int height) throws PrinterException { mPSStream.println(IMAGE_SAVE); /* Create a PS string big enough to hold a row of pixels. */ int psBytesPerRow = 3 * width; while (psBytesPerRow > MAX_PSSTR) { psBytesPerRow /= 2; } mPSStream.println(psBytesPerRow + IMAGE_STR); /* Scale and translate the unit image. */ mPSStream.println("[" + width + " 0 " + "0 " + height + " " + x + " " + y +"]concat"); /* Color Image invocation. */ mPSStream.println(width + " " + height + " " + 8 + "[" + width + " 0 " + "0 " + -height + " 0 " + height + "]" + "/imageSrc load false 3 colorimage"); /* Image data. */ int index = 0; byte[] rgbData = new byte[width*3]; try { for(int i = 0; i < height; i++) { index = swapBGRtoRGB(bgrData, index, rgbData); byte[] encodedData = rlEncode(rgbData); byte[] asciiData = ascii85Encode(encodedData); mPSStream.write(asciiData); mPSStream.println(""); } } catch (IOException e) { throw new PrinterIOException(e); } mPSStream.println(IMAGE_RESTORE); }
Example #25
Source File: PSPrinterJob.java From openjdk-8-source with GNU General Public License v2.0 | 4 votes |
/** * Prints the contents of the array of ints, 'data' * to the current page. The band is placed at the * location (x, y) in device coordinates on the * page. The width and height of the band is * specified by the caller. Currently the data * is 24 bits per pixel in BGR format. */ protected void printBand(byte[] bgrData, int x, int y, int width, int height) throws PrinterException { mPSStream.println(IMAGE_SAVE); /* Create a PS string big enough to hold a row of pixels. */ int psBytesPerRow = 3 * width; while (psBytesPerRow > MAX_PSSTR) { psBytesPerRow /= 2; } mPSStream.println(psBytesPerRow + IMAGE_STR); /* Scale and translate the unit image. */ mPSStream.println("[" + width + " 0 " + "0 " + height + " " + x + " " + y +"]concat"); /* Color Image invocation. */ mPSStream.println(width + " " + height + " " + 8 + "[" + width + " 0 " + "0 " + -height + " 0 " + height + "]" + "/imageSrc load false 3 colorimage"); /* Image data. */ int index = 0; byte[] rgbData = new byte[width*3]; try { for(int i = 0; i < height; i++) { index = swapBGRtoRGB(bgrData, index, rgbData); byte[] encodedData = rlEncode(rgbData); byte[] asciiData = ascii85Encode(encodedData); mPSStream.write(asciiData); mPSStream.println(""); } } catch (IOException e) { throw new PrinterIOException(e); } mPSStream.println(IMAGE_RESTORE); }
Example #26
Source File: PSPrinterJob.java From hottub with GNU General Public License v2.0 | 4 votes |
/** * Prints the contents of the array of ints, 'data' * to the current page. The band is placed at the * location (x, y) in device coordinates on the * page. The width and height of the band is * specified by the caller. Currently the data * is 24 bits per pixel in BGR format. */ protected void printBand(byte[] bgrData, int x, int y, int width, int height) throws PrinterException { mPSStream.println(IMAGE_SAVE); /* Create a PS string big enough to hold a row of pixels. */ int psBytesPerRow = 3 * width; while (psBytesPerRow > MAX_PSSTR) { psBytesPerRow /= 2; } mPSStream.println(psBytesPerRow + IMAGE_STR); /* Scale and translate the unit image. */ mPSStream.println("[" + width + " 0 " + "0 " + height + " " + x + " " + y +"]concat"); /* Color Image invocation. */ mPSStream.println(width + " " + height + " " + 8 + "[" + width + " 0 " + "0 " + -height + " 0 " + height + "]" + "/imageSrc load false 3 colorimage"); /* Image data. */ int index = 0; byte[] rgbData = new byte[width*3]; try { for(int i = 0; i < height; i++) { index = swapBGRtoRGB(bgrData, index, rgbData); byte[] encodedData = rlEncode(rgbData); byte[] asciiData = ascii85Encode(encodedData); mPSStream.write(asciiData); mPSStream.println(""); } } catch (IOException e) { throw new PrinterIOException(e); } mPSStream.println(IMAGE_RESTORE); }
Example #27
Source File: PSPrinterJob.java From jdk8u-jdk with GNU General Public License v2.0 | 4 votes |
/** * Prints the contents of the array of ints, 'data' * to the current page. The band is placed at the * location (x, y) in device coordinates on the * page. The width and height of the band is * specified by the caller. Currently the data * is 24 bits per pixel in BGR format. */ protected void printBand(byte[] bgrData, int x, int y, int width, int height) throws PrinterException { mPSStream.println(IMAGE_SAVE); /* Create a PS string big enough to hold a row of pixels. */ int psBytesPerRow = 3 * width; while (psBytesPerRow > MAX_PSSTR) { psBytesPerRow /= 2; } mPSStream.println(psBytesPerRow + IMAGE_STR); /* Scale and translate the unit image. */ mPSStream.println("[" + width + " 0 " + "0 " + height + " " + x + " " + y +"]concat"); /* Color Image invocation. */ mPSStream.println(width + " " + height + " " + 8 + "[" + width + " 0 " + "0 " + -height + " 0 " + height + "]" + "/imageSrc load false 3 colorimage"); /* Image data. */ int index = 0; byte[] rgbData = new byte[width*3]; try { for(int i = 0; i < height; i++) { index = swapBGRtoRGB(bgrData, index, rgbData); byte[] encodedData = rlEncode(rgbData); byte[] asciiData = ascii85Encode(encodedData); mPSStream.write(asciiData); mPSStream.println(""); } } catch (IOException e) { throw new PrinterIOException(e); } mPSStream.println(IMAGE_RESTORE); }
Example #28
Source File: PSPrinterJob.java From openjdk-jdk9 with GNU General Public License v2.0 | 4 votes |
/** * Prints the contents of the array of ints, 'data' * to the current page. The band is placed at the * location (x, y) in device coordinates on the * page. The width and height of the band is * specified by the caller. Currently the data * is 24 bits per pixel in BGR format. */ protected void printBand(byte[] bgrData, int x, int y, int width, int height) throws PrinterException { mPSStream.println(IMAGE_SAVE); /* Create a PS string big enough to hold a row of pixels. */ int psBytesPerRow = 3 * width; while (psBytesPerRow > MAX_PSSTR) { psBytesPerRow /= 2; } mPSStream.println(psBytesPerRow + IMAGE_STR); /* Scale and translate the unit image. */ mPSStream.println("[" + width + " 0 " + "0 " + height + " " + x + " " + y +"]concat"); /* Color Image invocation. */ mPSStream.println(width + " " + height + " " + 8 + "[" + width + " 0 " + "0 " + -height + " 0 " + height + "]" + "/imageSrc load false 3 colorimage"); /* Image data. */ int index = 0; byte[] rgbData = new byte[width*3]; try { for(int i = 0; i < height; i++) { index = swapBGRtoRGB(bgrData, index, rgbData); byte[] encodedData = rlEncode(rgbData); byte[] asciiData = ascii85Encode(encodedData); mPSStream.write(asciiData); mPSStream.println(""); } } catch (IOException e) { throw new PrinterIOException(e); } mPSStream.println(IMAGE_RESTORE); }
Example #29
Source File: PSPrinterJob.java From Bytecoder with Apache License 2.0 | 4 votes |
/** * Prints the contents of the array of ints, 'data' * to the current page. The band is placed at the * location (x, y) in device coordinates on the * page. The width and height of the band is * specified by the caller. Currently the data * is 24 bits per pixel in BGR format. */ protected void printBand(byte[] bgrData, int x, int y, int width, int height) throws PrinterException { mPSStream.println(IMAGE_SAVE); /* Create a PS string big enough to hold a row of pixels. */ int psBytesPerRow = 3 * width; while (psBytesPerRow > MAX_PSSTR) { psBytesPerRow /= 2; } mPSStream.println(psBytesPerRow + IMAGE_STR); /* Scale and translate the unit image. */ mPSStream.println("[" + width + " 0 " + "0 " + height + " " + x + " " + y +"]concat"); /* Color Image invocation. */ mPSStream.println(width + " " + height + " " + 8 + "[" + width + " 0 " + "0 " + -height + " 0 " + height + "]" + "/imageSrc load false 3 colorimage"); /* Image data. */ int index = 0; byte[] rgbData = new byte[width*3]; try { for(int i = 0; i < height; i++) { index = swapBGRtoRGB(bgrData, index, rgbData); byte[] encodedData = rlEncode(rgbData); byte[] asciiData = ascii85Encode(encodedData); mPSStream.write(asciiData); mPSStream.println(""); } } catch (IOException e) { throw new PrinterIOException(e); } mPSStream.println(IMAGE_RESTORE); }
Example #30
Source File: PSPrinterJob.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 4 votes |
/** * Prints the contents of the array of ints, 'data' * to the current page. The band is placed at the * location (x, y) in device coordinates on the * page. The width and height of the band is * specified by the caller. Currently the data * is 24 bits per pixel in BGR format. */ protected void printBand(byte[] bgrData, int x, int y, int width, int height) throws PrinterException { mPSStream.println(IMAGE_SAVE); /* Create a PS string big enough to hold a row of pixels. */ int psBytesPerRow = 3 * width; while (psBytesPerRow > MAX_PSSTR) { psBytesPerRow /= 2; } mPSStream.println(psBytesPerRow + IMAGE_STR); /* Scale and translate the unit image. */ mPSStream.println("[" + width + " 0 " + "0 " + height + " " + x + " " + y +"]concat"); /* Color Image invocation. */ mPSStream.println(width + " " + height + " " + 8 + "[" + width + " 0 " + "0 " + -height + " 0 " + height + "]" + "/imageSrc load false 3 colorimage"); /* Image data. */ int index = 0; byte[] rgbData = new byte[width*3]; try { for(int i = 0; i < height; i++) { index = swapBGRtoRGB(bgrData, index, rgbData); byte[] encodedData = rlEncode(rgbData); byte[] asciiData = ascii85Encode(encodedData); mPSStream.write(asciiData); mPSStream.println(""); } } catch (IOException e) { throw new PrinterIOException(e); } mPSStream.println(IMAGE_RESTORE); }