Tabnine Logo
Image.getAccessibleAttributes
Code IndexAdd Tabnine to your IDE (free)

How to use
getAccessibleAttributes
method
in
com.itextpdf.text.Image

Best Java code snippets using com.itextpdf.text.Image.getAccessibleAttributes (Showing top 4 results out of 315)

origin: com.itextpdf/itextpdf

public HashMap<PdfName, PdfObject> getAccessibleAttributes() {
  if (getImage() != null)
    return getImage().getAccessibleAttributes();
  else
    return accessibleAttributes;
}
origin: com.itextpdf/itextg

public HashMap<PdfName, PdfObject> getAccessibleAttributes() {
  if (getImage() != null)
    return getImage().getAccessibleAttributes();
  else
    return accessibleAttributes;
}
origin: com.itextpdf/itextpdf

writer.addDirectImageSimple(image);
PdfTemplate template = image.getTemplateData();
if (image.getAccessibleAttributes() != null) {
  for (PdfName key : image.getAccessibleAttributes().keySet()) {
    template.setAccessibleAttribute(key, image.getAccessibleAttribute(key));
origin: com.itextpdf/itextg

writer.addDirectImageSimple(image);
PdfTemplate template = image.getTemplateData();
if (image.getAccessibleAttributes() != null) {
  for (PdfName key : image.getAccessibleAttributes().keySet()) {
    template.setAccessibleAttribute(key, image.getAccessibleAttribute(key));
com.itextpdf.textImagegetAccessibleAttributes

Popular methods of Image

  • getInstance
    gets an instance of an Image
  • getHeight
  • getWidth
  • scaleAbsolute
    Scale the image to the dimensions of the rectangle
  • setAbsolutePosition
    Sets the absolute position of the Image.
  • getScaledHeight
    Gets the scaled height of the image.
  • getScaledWidth
    Gets the scaled width of the image.
  • scaleToFit
    Scales the images to the dimensions of the rectangle.
  • scalePercent
    Scale the width and height of an image to a certain percentage.
  • getICCProfile
    Gets the images ICC profile.
  • makeMask
    Make this Image a mask.
  • matrix
    Returns the transformation matrix of the image.
  • makeMask,
  • matrix,
  • setImageMask,
  • setRotation,
  • getAbsoluteX,
  • getAbsoluteY,
  • getAccessibleAttribute,
  • getAdditional,
  • getAlignment

Popular in Java

  • Parsing JSON documents to java classes using gson
  • notifyDataSetChanged (ArrayAdapter)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • getSupportFragmentManager (FragmentActivity)
  • Calendar (java.util)
    Calendar is an abstract base class for converting between a Date object and a set of integer fields
  • Collection (java.util)
    Collection is the root of the collection hierarchy. It defines operations on data collections and t
  • Date (java.util)
    A specific moment in time, with millisecond precision. Values typically come from System#currentTime
  • Dictionary (java.util)
    Note: Do not use this class since it is obsolete. Please use the Map interface for new implementatio
  • TimeZone (java.util)
    TimeZone represents a time zone offset, and also figures out daylight savings. Typically, you get a
  • Semaphore (java.util.concurrent)
    A counting semaphore. Conceptually, a semaphore maintains a set of permits. Each #acquire blocks if
  • Sublime Text for Python
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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