Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

jsp program for client side printer to print these 2 strings on 3/3 inch page

 
Greenhorn
Posts: 7
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Report post to moderator
this is for normal java program for print 2 strings on 3/3 inch page

but i want in jsp program for client side printer to print these 2 strings on 3/3 inch page

import java.awt.BasicStroke;
import java.awt.Color;
import java.awt.Font;
import java.awt.FontMetrics;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.font.FontRenderContext;
import java.awt.font.LineBreakMeasurer;
import java.awt.font.TextAttribute;
import java.awt.font.TextLayout;
import java.awt.geom.Point2D;
import java.awt.geom.Rectangle2D;
import java.awt.print.Book;
import java.awt.print.PageFormat;
import java.awt.print.Printable;
import java.awt.print.PrinterJob;
import java.text.AttributedString;
import java.util.Vector;
import java.awt.image.*;
import java.awt.*;
import java.awt.font.*;
import java.awt.print.Paper;
import java.awt.geom.*;
import java.awt.print.*;

public class Min12 {
public static String text2print;
public static String text1print;
public static void main (String [] args) {
text2print=" HAI ";
text1print="Hello....";
Pi dezetekst=new Pi();

}
}
class Pi extends Min12 {

private final static int POINTS_PER_INCH = 1;

private PageFormat pgFormat = new PageFormat();
private Book book = new Book();
private Paper p;
private int W;
private int H;

public Pi() {
p = new Paper();
p.setSize(W = 188, H = 188); //3" x 3"
// p.setImageableArea(20, 21, 2 ,286); //half inch margins
pgFormat.setPaper(p);
//--- Create a new PrinterJob object
PrinterJob printJob = PrinterJob.getPrinterJob ();
//--- Create a new book to add pages to
//--- Add the cover page using the default page format for this print job
book.append (new IntroPage (), pgFormat);
//--- Tell the printJob to use the book as the pageable object
printJob.setPageable (book);
try {
printJob.print();

} catch (Exception PrintException) {
PrintException.printStackTrace();
}
}
public void setPrint(String printmij)
{
text2print=printmij;
}

private class IntroPage implements Printable{


public int print (Graphics g, PageFormat pageFormat, int page) {
Graphics2D g2d = (Graphics2D) g;
g2d.setPaint (Color.black);
String titleText = text2print;
String titleText1 = text1print;
g2d.setClip(null);
Font titleFont1 = new Font ("arial", Font.BOLD,30);
g2d.setFont(titleFont1);
g2d.drawString (titleText, 4,20);
Font titleFont2 = new Font ("arial", Font.PLAIN,18);
g2d.setFont (titleFont2);
g2d.drawString (titleText1, 10,35);
return (PAGE_EXISTS);
}
}
}
 
Sheriff
Posts: 14691
16
Eclipse IDE VI Editor Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Report post to moderator
Please do not post the same question. Please continue in the other thread :
https://coderanch.com/t/292309/JSP/java/want-jsp-program-client-side
 
The first person to drink cow's milk. That started off as a dare from this tiny ad:
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com
    Bookmark Topic Watch Topic
  • New Topic