Codota Logo
PdfContentByte.endMarkedContentSequence
Code IndexAdd Codota to your IDE (free)

How to use
endMarkedContentSequence
method
in
com.itextpdf.text.pdf.PdfContentByte

Best Java code snippets using com.itextpdf.text.pdf.PdfContentByte.endMarkedContentSequence (Showing top 5 results out of 315)

  • Common ways to obtain PdfContentByte
private void myMethod () {
PdfContentByte p =
  • Codota IconPdfWriter writer;writer.getDirectContent()
  • Codota IconPdfStamper pdfStamper;pdfStamper.getOverContent(pageNum)
  • Codota IconPdfStamper pdfStamper;pdfStamper.getUnderContent(pageNum)
  • Smart code suggestions by Codota
}
origin: org.orbisgis/core-export

@Override
public void endFeature(long id, ResultSet rs) {
  cb.addTemplate(pTemp, lx, ly);
  cb.endMarkedContentSequence();
}
origin: com.itextpdf/itextpdf

private void closeMCBlockInt(IAccessibleElement element) {
  if (isTagged() && element.getRole() != null) {
    PdfStructureElement structureElement = pdf.getStructElement(element.getId());
    if (structureElement != null) {
      structureElement.writeAttributes(element);
    }
    if (writer.needToBeMarkedInContent(element)) {
      boolean inTextLocal = inText;
      if (inText)
        endText();
      endMarkedContentSequence();
      if (inTextLocal)
        beginText(true);
    }
  }
}
origin: com.itextpdf/itextg

private void closeMCBlockInt(IAccessibleElement element) {
  if (isTagged() && element.getRole() != null) {
    PdfStructureElement structureElement = pdf.getStructElement(element.getId());
    if (structureElement != null) {
      structureElement.writeAttributes(element);
    }
    if (writer.needToBeMarkedInContent(element)) {
      boolean inTextLocal = inText;
      if (inText)
        endText();
      endMarkedContentSequence();
      if (inTextLocal)
        beginText(true);
    }
  }
}
origin: com.itextpdf/itextpdf

canvas.endMarkedContentSequence();
origin: com.itextpdf/itextg

canvas.endMarkedContentSequence();
com.itextpdf.text.pdfPdfContentByteendMarkedContentSequence

Javadoc

Ends a marked content sequence

Popular methods of PdfContentByte

  • addTemplate
    adds a template with the given matrix.
  • createTemplate
  • beginText
    Starts the writing of text.
  • endText
    Ends the writing of text and makes the current font invalid.
  • lineTo
    Appends a straight line segment from the current point (x, y). The new current point is (x, y).
  • moveTo
    Move the current point (x, y), omitting any connecting line segment.
  • restoreState
    Restores the graphic state. saveState andrestoreState must be balanced.
  • saveState
    Saves the graphic state. saveState andrestoreState must be balanced.
  • setFontAndSize
    Set the font and the size for the subsequent text writing.
  • setLineWidth
    Changes the line width. The line width specifies the thickness of the line used to stroke a path and
  • stroke
    Strokes the path.
  • addImage
    Adds an Image to the page. The Image must have absolute positioning. The image can be placed inline.
  • stroke,
  • addImage,
  • setTextMatrix,
  • showText,
  • fill,
  • rectangle,
  • setColorFill,
  • setColorStroke,
  • setGState,
  • beginLayer

Popular in Java

  • Creating JSON documents from java classes using gson
  • compareTo (BigDecimal)
  • getResourceAsStream (ClassLoader)
    Returns a stream for the resource with the specified name. See #getResource(String) for a descriptio
  • findViewById (Activity)
  • BufferedWriter (java.io)
    Wraps an existing Writer and buffers the output. Expensive interaction with the underlying reader is
  • ResultSet (java.sql)
    An interface for an object which represents a database table entry, returned as the result of the qu
  • MessageFormat (java.text)
    MessageFormat provides a means to produce concatenated messages in language-neutral way. Use this to
  • TimerTask (java.util)
    A task that can be scheduled for one-time or repeated execution by a Timer.
  • Filter (javax.servlet)
    A filter is an object that performs filtering tasks on either the request to a resource (a servlet o
  • JButton (javax.swing)
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now