Examples of circle()


Examples of com.lowagie.text.pdf.PdfContentByte.circle()

            cb.circle(250.0f, 500.0f, 200.0f);
            cb.circle(250.0f, 500.0f, 150.0f);
            cb.stroke();
            cb.setRGBColorFill(0xFF, 0x00, 0x00);
            cb.circle(250.0f, 500.0f, 100.0f);
            cb.fillStroke();
            cb.setRGBColorFill(0xFF, 0xFF, 0xFF);
            cb.circle(250.0f, 500.0f, 50.0f);
            cb.fill();
           
View Full Code Here

Examples of com.lowagie.text.pdf.PdfContentByte.circle()

            cb.stroke();
            cb.setRGBColorFill(0xFF, 0x00, 0x00);
            cb.circle(250.0f, 500.0f, 100.0f);
            cb.fillStroke();
            cb.setRGBColorFill(0xFF, 0xFF, 0xFF);
            cb.circle(250.0f, 500.0f, 50.0f);
            cb.fill();
           
            cb.sanityCheck();
        }
        catch(DocumentException de) {
View Full Code Here

Examples of com.lowagie.text.pdf.PdfContentByte.circle()

            cb.fill();
           
            // Stroke a circle with RGB alternate
            cb.setColorStroke(spc_rgb, 0.9f);
            cb.setLineWidth(5f);
            cb.circle(150f, 500f, 100f);
            cb.stroke();
           
            // Fill the circle with RGB alternate
            cb.setColorFill(spc_rgb, 0.9f);
            cb.circle(150f, 500f, 50f);
View Full Code Here

Examples of com.lowagie.text.pdf.PdfContentByte.circle()

            cb.circle(150f, 500f, 100f);
            cb.stroke();
           
            // Fill the circle with RGB alternate
            cb.setColorFill(spc_rgb, 0.9f);
            cb.circle(150f, 500f, 50f);
            cb.fill();
           
            // example with colorfill
            cb.setColorFill(spc_g, 0.5f);
            cb.moveTo(100f, 200f);
View Full Code Here

Examples of com.lowagie.text.pdf.PdfContentByte.circle()

            cb.circle(250.0f, 500.0f, 50.0f);
            cb.fill();
            cb.sanityCheck();
           
            cbu.setRGBColorFill(0xFF, 0x00, 0x00);
            cbu.circle(250.0f, 500.0f, 100.0f);
            cbu.fill();
            cbu.sanityCheck();
           
        }
        catch(DocumentException de) {
View Full Code Here

Examples of com.lowagie.text.pdf.PdfContentByte.circle()

      document.open();

      // step 4: we grab the ContentByte and do some stuff with it
      PdfContentByte cb = writer.getDirectContent();

      cb.circle(260.0f, 500.0f, 250.0f);
      cb.fill();
      cb.saveState();
      cb.setColorFill(Color.red);
      cb.circle(260.0f, 500.0f, 200.0f);
      cb.fill();
View Full Code Here

Examples of com.lowagie.text.pdf.PdfContentByte.circle()

      cb.circle(260.0f, 500.0f, 250.0f);
      cb.fill();
      cb.saveState();
      cb.setColorFill(Color.red);
      cb.circle(260.0f, 500.0f, 200.0f);
      cb.fill();
      cb.saveState();
      cb.setColorFill(Color.blue);
      cb.circle(260.0f, 500.0f, 150.0f);
      cb.fill();
View Full Code Here

Examples of com.lowagie.text.pdf.PdfContentByte.circle()

      cb.setColorFill(Color.red);
      cb.circle(260.0f, 500.0f, 200.0f);
      cb.fill();
      cb.saveState();
      cb.setColorFill(Color.blue);
      cb.circle(260.0f, 500.0f, 150.0f);
      cb.fill();
      cb.restoreState();
      cb.circle(260.0f, 500.0f, 100.0f);
      cb.fill();
      cb.restoreState();
View Full Code Here

Examples of com.lowagie.text.pdf.PdfContentByte.circle()

      cb.saveState();
      cb.setColorFill(Color.blue);
      cb.circle(260.0f, 500.0f, 150.0f);
      cb.fill();
      cb.restoreState();
      cb.circle(260.0f, 500.0f, 100.0f);
      cb.fill();
      cb.restoreState();
      cb.circle(260.0f, 500.0f, 50.0f);
      cb.fill();
     
View Full Code Here

Examples of com.lowagie.text.pdf.PdfContentByte.circle()

      cb.fill();
      cb.restoreState();
      cb.circle(260.0f, 500.0f, 100.0f);
      cb.fill();
      cb.restoreState();
      cb.circle(260.0f, 500.0f, 50.0f);
      cb.fill();
     
      cb.sanityCheck();
    } catch (DocumentException de) {
      System.err.println(de.getMessage());
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.