Tabnine Logo
PDInlineImage.getWidth
Code IndexAdd Tabnine to your IDE (free)

How to use
getWidth
method
in
org.apache.pdfbox.pdmodel.graphics.image.PDInlineImage

Best Java code snippets using org.apache.pdfbox.pdmodel.graphics.image.PDInlineImage.getWidth (Showing top 9 results out of 315)

origin: apache/pdfbox

/**
 * Draw an inline image at the x,y coordinates, with the default size of the image.
 *
 * @param inlineImage The inline image to draw.
 * @param x The x-coordinate to draw the inline image.
 * @param y The y-coordinate to draw the inline image.
 *
 * @throws IOException If there is an error writing to the stream.
 */
public void drawImage(PDInlineImage inlineImage, float x, float y) throws IOException
{
  drawImage(inlineImage, x, y, inlineImage.getWidth(), inlineImage.getHeight());
}
origin: apache/pdfbox

/**
 * Draw an inline image at the x,y coordinates, with the default size of the image.
 *
 * @param inlineImage The inline image to draw.
 * @param x The x-coordinate to draw the inline image.
 * @param y The y-coordinate to draw the inline image.
 *
 * @throws IOException If there is an error writing to the stream.
 * @deprecated Use {@link #drawImage(PDInlineImage, float, float)} instead.
 */
@Deprecated
public void drawInlineImage(PDInlineImage inlineImage, float x, float y) throws IOException
{
  drawImage(inlineImage, x, y, inlineImage.getWidth(), inlineImage.getHeight());
}
origin: apache/pdfbox

sb.append(inlineImage.getWidth());
origin: org.apache.pdfbox/pdfbox

/**
 * Draw an inline image at the x,y coordinates, with the default size of the image.
 *
 * @param inlineImage The inline image to draw.
 * @param x The x-coordinate to draw the inline image.
 * @param y The y-coordinate to draw the inline image.
 *
 * @throws IOException If there is an error writing to the stream.
 * @deprecated Use {@link #drawImage(PDInlineImage, float, float)} instead.
 */
@Deprecated
public void drawInlineImage(PDInlineImage inlineImage, float x, float y) throws IOException
{
  drawImage(inlineImage, x, y, inlineImage.getWidth(), inlineImage.getHeight());
}
origin: com.github.lafa.pdfbox/pdfbox

/**
 * Draw an inline image at the x,y coordinates, with the default size of the image.
 *
 * @param inlineImage The inline image to draw.
 * @param x The x-coordinate to draw the inline image.
 * @param y The y-coordinate to draw the inline image.
 *
 * @throws IOException If there is an error writing to the stream.
 * @deprecated Use {@link #drawImage(PDInlineImage, float, float)} instead.
 */
@Deprecated
public void drawInlineImage(PDInlineImage inlineImage, float x, float y) throws IOException
{
  drawImage(inlineImage, x, y, inlineImage.getWidth(), inlineImage.getHeight());
}
origin: org.apache.pdfbox/pdfbox

/**
 * Draw an inline image at the x,y coordinates, with the default size of the image.
 *
 * @param inlineImage The inline image to draw.
 * @param x The x-coordinate to draw the inline image.
 * @param y The y-coordinate to draw the inline image.
 *
 * @throws IOException If there is an error writing to the stream.
 */
public void drawImage(PDInlineImage inlineImage, float x, float y) throws IOException
{
  drawImage(inlineImage, x, y, inlineImage.getWidth(), inlineImage.getHeight());
}
origin: com.github.lafa.pdfbox/pdfbox

/**
 * Draw an inline image at the x,y coordinates, with the default size of the image.
 *
 * @param inlineImage The inline image to draw.
 * @param x The x-coordinate to draw the inline image.
 * @param y The y-coordinate to draw the inline image.
 *
 * @throws IOException If there is an error writing to the stream.
 */
public void drawImage(PDInlineImage inlineImage, float x, float y) throws IOException
{
  drawImage(inlineImage, x, y, inlineImage.getWidth(), inlineImage.getHeight());
}
origin: com.github.lafa.pdfbox/pdfbox

sb.append(inlineImage.getWidth());
origin: org.apache.pdfbox/pdfbox

sb.append(inlineImage.getWidth());
org.apache.pdfbox.pdmodel.graphics.imagePDInlineImagegetWidth

Popular methods of PDInlineImage

  • <init>
    Creates an inline image from the given parameters and data.
  • getFilters
    Returns a list of filters applied to this stream, or null if there are none.
  • createColorSpace
  • getBitsPerComponent
  • getColorSpace
  • getData
    Returns the inline image data.
  • getDecode
  • getHeight
  • getImage
  • isStencil
  • toLongName
  • createInputStream
  • toLongName,
  • createInputStream,
  • getColorKeyMask

Popular in Java

  • Making http post requests using okhttp
  • onRequestPermissionsResult (Fragment)
  • onCreateOptionsMenu (Activity)
  • requestLocationUpdates (LocationManager)
  • Timestamp (java.sql)
    A Java representation of the SQL TIMESTAMP type. It provides the capability of representing the SQL
  • Comparator (java.util)
    A Comparator is used to compare two objects to determine their ordering with respect to each other.
  • Executors (java.util.concurrent)
    Factory and utility methods for Executor, ExecutorService, ScheduledExecutorService, ThreadFactory,
  • Manifest (java.util.jar)
    The Manifest class is used to obtain attribute information for a JarFile and its entries.
  • ServletException (javax.servlet)
    Defines a general exception a servlet can throw when it encounters difficulty.
  • IOUtils (org.apache.commons.io)
    General IO stream manipulation utilities. This class provides static utility methods for input/outpu
  • Top Vim plugins
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