congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
PageResources.setOriginalResources
Code IndexAdd Tabnine to your IDE (free)

How to use
setOriginalResources
method
in
com.lowagie.text.pdf.PageResources

Best Java code snippets using com.lowagie.text.pdf.PageResources.setOriginalResources (Showing top 9 results out of 315)

origin: com.github.librepdf/openpdf

  PageStamp(PdfStamperImp stamper, PdfReader reader, PdfDictionary pageN) {
    this.pageN = pageN;
    pageResources = new PageResources();
    PdfDictionary resources = pageN.getAsDict(PdfName.RESOURCES);
    pageResources.setOriginalResources(resources, stamper.namePtr);
  }
}
origin: fr.opensagres.xdocreport.itext-gae/itext-gae

  PageStamp(PdfStamperImp stamper, PdfReader reader, PdfDictionary pageN) {
    this.pageN = pageN;
    pageResources = new PageResources();
    PdfDictionary resources = pageN.getAsDict(PdfName.RESOURCES);
    pageResources.setOriginalResources(resources, stamper.namePtr);
  }
}
origin: es.gob.afirma/afirma-crypto-pdf-itext

  PageStamp(PdfStamperImp stamper, PdfReader reader, PdfDictionary pageN) {
    this.pageN = pageN;
    this.pageResources = new PageResources();
    PdfDictionary resources = pageN.getAsDict(PdfName.RESOURCES);
    this.pageResources.setOriginalResources(resources, stamper.namePtr);
  }
}
origin: fr.opensagres.xdocreport.itext-gae/itext-gae

public PdfContentByte getUnderContent(){
  if (under == null) {
    if (pageResources == null) {
      pageResources = new PageResources();
      PdfDictionary resources = pageN.getAsDict(PdfName.RESOURCES);
      pageResources.setOriginalResources(resources, cstp.namePtr);
    }
    under = new PdfCopy.StampContent(cstp, pageResources);
  }
  return under;
}
 
origin: es.gob.afirma/afirma-crypto-pdf-itext

public PdfContentByte getUnderContent(){
  if (under == null) {
    if (pageResources == null) {
      pageResources = new PageResources();
      PdfDictionary resources = pageN.getAsDict(PdfName.RESOURCES);
      pageResources.setOriginalResources(resources, cstp.namePtr);
    }
    under = new PdfCopy.StampContent(cstp, pageResources);
  }
  return under;
}

origin: com.github.librepdf/openpdf

public PdfContentByte getOverContent() {
 if (over == null) {
  if (pageResources == null) {
   pageResources = new PageResources();
   PdfDictionary resources = pageN.getAsDict(PdfName.RESOURCES);
   pageResources.setOriginalResources(resources, cstp.namePtr);
  }
  over = new PdfCopy.StampContent(cstp, pageResources);
 }
 return over;
}
origin: fr.opensagres.xdocreport.itext-gae/itext-gae

public PdfContentByte getOverContent(){
  if (over == null) {
    if (pageResources == null) {
      pageResources = new PageResources();
      PdfDictionary resources = pageN.getAsDict(PdfName.RESOURCES);
      pageResources.setOriginalResources(resources, cstp.namePtr);
    }
    over = new PdfCopy.StampContent(cstp, pageResources);
  }
  return over;
}
 
origin: com.github.librepdf/openpdf

public PdfContentByte getUnderContent() {
 if (under == null) {
  if (pageResources == null) {
   pageResources = new PageResources();
   PdfDictionary resources = pageN.getAsDict(PdfName.RESOURCES);
   pageResources.setOriginalResources(resources, cstp.namePtr);
  }
  under = new PdfCopy.StampContent(cstp, pageResources);
 }
 return under;
}
origin: es.gob.afirma/afirma-crypto-pdf-itext

public PdfContentByte getOverContent(){
  if (over == null) {
    if (pageResources == null) {
      pageResources = new PageResources();
      PdfDictionary resources = pageN.getAsDict(PdfName.RESOURCES);
      pageResources.setOriginalResources(resources, cstp.namePtr);
    }
    over = new PdfCopy.StampContent(cstp, pageResources);
  }
  return over;
}

com.lowagie.text.pdfPageResourcessetOriginalResources

Popular methods of PageResources

  • <init>
  • addColor
  • addDefaultColor
  • addDefaultColorDiff
  • addExtGState
  • addFont
  • addPattern
  • addProperty
  • addShading
  • addXObject
  • getResources
  • hasResources
  • getResources,
  • hasResources,
  • translateName

Popular in Java

  • Making http requests using okhttp
  • getSystemService (Context)
  • getExternalFilesDir (Context)
  • putExtra (Intent)
  • Pointer (com.sun.jna)
    An abstraction for a native pointer data type. A Pointer instance represents, on the Java side, a na
  • PrintWriter (java.io)
    Wraps either an existing OutputStream or an existing Writerand provides convenience methods for prin
  • DateFormat (java.text)
    Formats or parses dates and times.This class provides factories for obtaining instances configured f
  • Collection (java.util)
    Collection is the root of the collection hierarchy. It defines operations on data collections and t
  • Dictionary (java.util)
    Note: Do not use this class since it is obsolete. Please use the Map interface for new implementatio
  • ExecutorService (java.util.concurrent)
    An Executor that provides methods to manage termination and methods that can produce a Future for tr
  • CodeWhisperer alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now