home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 February / PCWorld_2002-02_cd.bin / Software / Vyzkuste / pdflib / pdflib-4.0.1.sit / pdflib-4.0.1 / bind / java / pdflib.java < prev    next >
Encoding:
Java Source  |  2001-07-04  |  59.6 KB  |  1,339 lines  |  [TEXT/javc]

  1. /* $Id: pdflib.java,v 1.13.2.2 2001/05/11 12:38:08 york Exp $
  2.  *
  3.  * PDFlib Java class
  4.  */
  5.  
  6. package com.pdflib;
  7.  
  8. import java.io.*;
  9.  
  10. /** PDFlib -- a library for generating PDF on the fly.
  11.     Note that this is only a syntax summary. For complete information
  12.     please refer to the PDFlib API reference manual which is available
  13.     in the PDF file PDFlib-manual.pdf in the PDFlib distribution.
  14.     @author Thomas Merz
  15.     @version 4.0.1
  16. */
  17.  
  18. public final class pdflib {
  19.  
  20.     // The initialization code for loading the PDFlib shared library.
  21.     // The library name will be transformed into something platform-
  22.     // specific by the VM, e.g. libpdf_java.so or pdf_java.dll.
  23.  
  24.     static {
  25.     try {
  26.         System.loadLibrary("pdf_java");
  27.     } catch (UnsatisfiedLinkError e) {
  28.         System.err.println(
  29.         "Cannot load the PDFlib shared library/DLL for Java.\n" +
  30.         "Make sure that LD_LIBRARY_PATH (Unix) or PATH (Win32)\n" +
  31.         "points to the directory with the PDFlib shared library/DLL.\n" +
  32.         e);
  33.         System.exit(1);
  34.     }
  35.     PDF_boot();
  36.     }
  37.  
  38.     // ------------------------------------------------------------------------
  39.     // public functions
  40.  
  41.     /** Create a new PDF object. */
  42.     public pdflib() throws
  43.     OutOfMemoryError, IOException, IllegalArgumentException,
  44.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  45.     RuntimeException, InternalError, UnknownError
  46.     {
  47.     p = PDF_new();
  48.     }
  49.  
  50.     /** Open a new PDF file associated with p, using the supplied file name.
  51.         @return -1 on error, 1 on success.
  52.      */
  53.     public final int open_file(String filename) throws
  54.     OutOfMemoryError, IOException, IllegalArgumentException,
  55.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  56.     RuntimeException, InternalError, UnknownError
  57.     {
  58.     return PDF_open_file(p, filename);
  59.     }
  60.     
  61.     /** Close the generated PDF file. */
  62.     public final void close() throws
  63.     OutOfMemoryError, IOException, IllegalArgumentException,
  64.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  65.     RuntimeException, InternalError, UnknownError
  66.     {
  67.     PDF_close(p);
  68.     }
  69.  
  70.     /** Get the contents of the PDF output buffer. The result must be used
  71.         by the client before calling any other PDFlib function. Must not be
  72.         called within page descriptions.
  73.         @return A byte array containing the PDF output generated so far.
  74.      */
  75.     public final byte[] get_buffer() throws
  76.     OutOfMemoryError, IOException, IllegalArgumentException,
  77.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  78.     RuntimeException, InternalError, UnknownError
  79.     {
  80.     return PDF_get_buffer(p);
  81.     }
  82.  
  83.     /** Start a new page. */
  84.     public final void begin_page(float width, float height) throws
  85.     OutOfMemoryError, IOException, IllegalArgumentException,
  86.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  87.     RuntimeException, InternalError, UnknownError
  88.     {
  89.     PDF_begin_page(p, width, height);
  90.     }
  91.  
  92.     /** Finish the page. */
  93.     public final void end_page() throws
  94.     OutOfMemoryError, IOException, IllegalArgumentException,
  95.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  96.     RuntimeException, InternalError, UnknownError
  97.     {
  98.     PDF_end_page(p);
  99.     }
  100.  
  101.     /** Set some PDFlib parameters with string type */
  102.     public final void set_parameter(String key, String value) throws
  103.     OutOfMemoryError, IOException, IllegalArgumentException,
  104.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  105.     RuntimeException, InternalError, UnknownError
  106.     {
  107.     PDF_set_parameter(p, key, value);
  108.     }
  109.  
  110.     /** Get some PDFlib parameters with string type
  111.         @return A string containing the requested parameter.
  112.      */
  113.     public final String get_parameter(String key, float mod) throws
  114.     OutOfMemoryError, IOException, IllegalArgumentException,
  115.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  116.     RuntimeException, InternalError, UnknownError
  117.     {
  118.     return PDF_get_parameter(p, key, mod);
  119.     }
  120.  
  121.     /** Set some PDFlib parameters with float type */
  122.     public final void set_value(String key, float value) throws
  123.     OutOfMemoryError, IOException, IllegalArgumentException,
  124.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  125.     RuntimeException, InternalError, UnknownError
  126.     {
  127.     PDF_set_value(p, key, value);
  128.     }
  129.  
  130.     /** Get the value of some PDFlib parameters with float type
  131.         @return The requested parameter value.
  132.      */
  133.     public final float get_value(String key, float mod) throws
  134.     OutOfMemoryError, IOException, IllegalArgumentException,
  135.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  136.     RuntimeException, InternalError, UnknownError
  137.     {
  138.     return PDF_get_value(p, key, mod);
  139.     }
  140.  
  141.     /** Prepare a font for later use with PDF_setfont(). The metrics will be
  142.         loaded, and if embed is nonzero, the font file will be checked (but not
  143.         yet used. Encoding is one of "builtin", "macroman", "winansi", "host",
  144.         or a user-defined name, or the name of a CMap.
  145.     @return A valid font handle.
  146.      */
  147.     public final int findfont(String fontname, String encoding, int embed) throws
  148.     OutOfMemoryError, IOException, IllegalArgumentException,
  149.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  150.     RuntimeException, InternalError, UnknownError
  151.     {
  152.     return PDF_findfont(p, fontname, encoding, embed);
  153.     }
  154.  
  155.     /** Set the current font in the given size. The font descriptor must have
  156.         been retrieved via PDF_findfont().
  157.      */
  158.     public final void setfont(int font, float fontsize) throws
  159.     OutOfMemoryError, IOException, IllegalArgumentException,
  160.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  161.     RuntimeException, InternalError, UnknownError
  162.     {
  163.     PDF_setfont(p, font, fontsize);
  164.     }
  165.  
  166.     /** Print text in the current font and size at the current position. */
  167.     public final void show(String text) throws
  168.     OutOfMemoryError, IOException, IllegalArgumentException,
  169.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  170.     RuntimeException, InternalError, UnknownError
  171.     {
  172.     PDF_show(p, text);
  173.     }
  174.  
  175.     /** Print text in the current font at (x, y). */
  176.     public final void show_xy(String text, float x, float y) throws
  177.     OutOfMemoryError, IOException, IllegalArgumentException,
  178.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  179.     RuntimeException, InternalError, UnknownError
  180.     {
  181.     PDF_show_xy(p, text, x, y);
  182.     }
  183.  
  184.     /** Print text at the next line. */
  185.     public final void continue_text(String text) throws
  186.     OutOfMemoryError, IOException, IllegalArgumentException,
  187.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  188.     RuntimeException, InternalError, UnknownError
  189.     {
  190.     PDF_continue_text(p, text);
  191.     }
  192.  
  193.     /** Format text in the current font and size into the supplied text box
  194.         according to the requested formatting mode. If width and height
  195.         are 0, only a single line is placed at the point (left, bottom) in
  196.         the requested mode.
  197.         @return Number of characters which didn't fit in the box.
  198.      */
  199.     public final int show_boxed(String text, float left, float bottom,
  200.         float width, float height, String hmode, String reserved) throws
  201.     OutOfMemoryError, IOException, IllegalArgumentException,
  202.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  203.     RuntimeException, InternalError, UnknownError
  204.     {
  205.     return PDF_show_boxed(p, text, left, bottom, width, height,
  206.             hmode, reserved);
  207.     }
  208.  
  209.     /** Set the text output position to (x, y). */
  210.     public final void set_text_pos(float x, float y) throws
  211.     OutOfMemoryError, IOException, IllegalArgumentException,
  212.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  213.     RuntimeException, InternalError, UnknownError
  214.     {
  215.     PDF_set_text_pos(p, x, y);
  216.     }
  217.  
  218.     /** Get the width of text in an arbitrary font which has been selected
  219.         with PDF_findfont().
  220.         @return Width of text in the supplied font and size.
  221.      */
  222.     public final float stringwidth(String text, int font, float size) throws
  223.     OutOfMemoryError, IOException, IllegalArgumentException,
  224.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  225.     RuntimeException, InternalError, UnknownError
  226.     {
  227.     return PDF_stringwidth(p, text, font, size);
  228.     }
  229.  
  230.     /** Set the current dash pattern to b black and w white units. */
  231.     public final void setdash(float b, float w) throws
  232.     OutOfMemoryError, IOException, IllegalArgumentException,
  233.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  234.     RuntimeException, InternalError, UnknownError
  235.     {
  236.     PDF_setdash(p, b, w);
  237.     }
  238.  
  239.     /** Set a more complicated dash pattern defined by an array. */
  240.     public final void setpolydash(float[] dasharray) throws
  241.     OutOfMemoryError, IOException, IllegalArgumentException,
  242.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  243.     RuntimeException, InternalError, UnknownError
  244.     {
  245.     PDF_setpolydash(p, dasharray);
  246.     }
  247.  
  248.     /** Set the flatness to a value between 0 and 100 inclusive. */
  249.     public final void setflat(float flatness) throws
  250.     OutOfMemoryError, IOException, IllegalArgumentException,
  251.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  252.     RuntimeException, InternalError, UnknownError
  253.     {
  254.     PDF_setflat(p, flatness);
  255.     }
  256.  
  257.     /** Set the line join parameter to a value between 0 and 2 inclusive. */
  258.     public final void setlinejoin(int linejoin) throws
  259.     OutOfMemoryError, IOException, IllegalArgumentException,
  260.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  261.     RuntimeException, InternalError, UnknownError
  262.     {
  263.     PDF_setlinejoin(p, linejoin);
  264.     }
  265.  
  266.     /** Set the linecap parameter to a value between 0 and 2 inclusive. */
  267.     public final void setlinecap(int linecap) throws
  268.     OutOfMemoryError, IOException, IllegalArgumentException,
  269.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  270.     RuntimeException, InternalError, UnknownError
  271.     {
  272.     PDF_setlinecap(p, linecap);
  273.     }
  274.  
  275.     /** Set the miter limit to a value greater than or equal to 1. */
  276.     public final void setmiterlimit(float miter) throws
  277.     OutOfMemoryError, IOException, IllegalArgumentException,
  278.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  279.     RuntimeException, InternalError, UnknownError
  280.     {
  281.     PDF_setmiterlimit(p, miter);
  282.     }
  283.  
  284.     /** Set the current linewidth to width. */
  285.     public final void setlinewidth(float width) throws
  286.     OutOfMemoryError, IOException, IllegalArgumentException,
  287.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  288.     RuntimeException, InternalError, UnknownError
  289.     {
  290.     PDF_setlinewidth(p, width);
  291.     }
  292.  
  293.     /** Save the current graphics state. */
  294.     public final void save() throws
  295.     OutOfMemoryError, IOException, IllegalArgumentException,
  296.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  297.     RuntimeException, InternalError, UnknownError
  298.     {
  299.     PDF_save(p);
  300.     }
  301.  
  302.     /** Restore the most recently saved graphics state. */
  303.     public final void restore() throws
  304.     OutOfMemoryError, IOException, IllegalArgumentException,
  305.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  306.     RuntimeException, InternalError, UnknownError
  307.     {
  308.     PDF_restore(p);
  309.     }
  310.  
  311.     /** Translate the origin of the coordinate system to (tx, ty). */
  312.     public final void translate(float tx, float ty) throws
  313.     OutOfMemoryError, IOException, IllegalArgumentException,
  314.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  315.     RuntimeException, InternalError, UnknownError
  316.     {
  317.     PDF_translate(p, tx, ty);
  318.     }
  319.  
  320.     /** Scale the coordinate system by (sx, sy). */
  321.     public final void scale(float sx, float sy) throws
  322.     OutOfMemoryError, IOException, IllegalArgumentException,
  323.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  324.     RuntimeException, InternalError, UnknownError
  325.     {
  326.     PDF_scale(p, sx, sy);
  327.     }
  328.  
  329.     /** Rotate the coordinate system by phi degrees. */
  330.     public final void rotate(float phi) throws
  331.     OutOfMemoryError, IOException, IllegalArgumentException,
  332.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  333.     RuntimeException, InternalError, UnknownError
  334.     {
  335.     PDF_rotate(p, phi);
  336.     }
  337.  
  338.     /** Skew the coordinate system in x and y direction by alpha and beta
  339.         degrees
  340.      */
  341.     public final void skew(float alpha, float beta) throws
  342.     OutOfMemoryError, IOException, IllegalArgumentException,
  343.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  344.     RuntimeException, InternalError, UnknownError
  345.     {
  346.     PDF_skew(p, alpha, beta);
  347.     }
  348.  
  349.     /** Concatenate a matrix to the CTM. a*d must not be equal to b*c. */
  350.     public final void concat(float a, float b, float c, float d, float e, float f) throws
  351.     OutOfMemoryError, IOException, IllegalArgumentException,
  352.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  353.     RuntimeException, InternalError, UnknownError
  354.     {
  355.     PDF_concat(p, a, b, c, d, e, f);
  356.     }
  357.  
  358.     /** Set the current point to (x, y). */
  359.     public final void moveto(float x, float y) throws
  360.     OutOfMemoryError, IOException, IllegalArgumentException,
  361.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  362.     RuntimeException, InternalError, UnknownError
  363.     {
  364.     PDF_moveto(p, x, y);
  365.     }
  366.  
  367.     /** Draw a line from the current point to (x, y). */
  368.     public final void lineto(float x, float y) throws
  369.     OutOfMemoryError, IOException, IllegalArgumentException,
  370.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  371.     RuntimeException, InternalError, UnknownError
  372.     {
  373.     PDF_lineto(p, x, y);
  374.     }
  375.  
  376.     /** Draw a Bezier curve from the current point, using 3 more control
  377.         points.
  378.      */
  379.     public final void curveto(float x1, float y1, float x2, float y2, float x3, float y3) throws
  380.     OutOfMemoryError, IOException, IllegalArgumentException,
  381.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  382.     RuntimeException, InternalError, UnknownError
  383.     {
  384.     PDF_curveto(p, x1, y1, x2, y2, x3, y3);
  385.     }
  386.  
  387.     /** Draw a circle with center (x, y) and radius r. */
  388.     public final void circle(float x, float y, float r) throws
  389.     OutOfMemoryError, IOException, IllegalArgumentException,
  390.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  391.     RuntimeException, InternalError, UnknownError
  392.     {
  393.     PDF_circle(p, x, y, r);
  394.     }
  395.  
  396.     /** Draw a circular arc with center (x, y) and radius r from alpha1
  397.         to alpha2.
  398.      */
  399.     public final void arc(float x, float y, float r, float alpha1, float alpha2) throws
  400.     OutOfMemoryError, IOException, IllegalArgumentException,
  401.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  402.     RuntimeException, InternalError, UnknownError
  403.     {
  404.     PDF_arc(p, x, y, r, alpha1, alpha2);
  405.     }
  406.  
  407.     /** Draw a rectangle at lower left (x, y) with width and height. */
  408.     public final void rect(float x, float y, float width, float height) throws
  409.     OutOfMemoryError, IOException, IllegalArgumentException,
  410.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  411.     RuntimeException, InternalError, UnknownError
  412.     {
  413.     PDF_rect(p, x, y, width, height);
  414.     }
  415.  
  416.     /** Close the current path. */
  417.     public final void closepath() throws
  418.     OutOfMemoryError, IOException, IllegalArgumentException,
  419.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  420.     RuntimeException, InternalError, UnknownError
  421.     {
  422.     PDF_closepath(p);
  423.     }
  424.  
  425.     /** Stroke the path with the current color and line width,and clear it. */
  426.     public final void stroke() throws
  427.     OutOfMemoryError, IOException, IllegalArgumentException,
  428.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  429.     RuntimeException, InternalError, UnknownError
  430.     {
  431.     PDF_stroke(p);
  432.     }
  433.  
  434.     /** Close the path, and stroke it. */
  435.     public final void closepath_stroke() throws
  436.     OutOfMemoryError, IOException, IllegalArgumentException,
  437.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  438.     RuntimeException, InternalError, UnknownError
  439.     {
  440.     PDF_closepath_stroke(p);
  441.     }
  442.  
  443.     /** Fill the interior of the path with the current fill color. */
  444.     public final void fill() throws
  445.     OutOfMemoryError, IOException, IllegalArgumentException,
  446.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  447.     RuntimeException, InternalError, UnknownError
  448.     {
  449.     PDF_fill(p);
  450.     }
  451.  
  452.     /** Fill and stroke the path with the current fill and stroke color. */
  453.     public final void fill_stroke() throws
  454.     OutOfMemoryError, IOException, IllegalArgumentException,
  455.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  456.     RuntimeException, InternalError, UnknownError
  457.     {
  458.     PDF_fill_stroke(p);
  459.     }
  460.  
  461.     /** Close the path, fill, and stroke it. */
  462.     public final void closepath_fill_stroke() throws
  463.     OutOfMemoryError, IOException, IllegalArgumentException,
  464.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  465.     RuntimeException, InternalError, UnknownError
  466.     {
  467.     PDF_closepath_fill_stroke(p);
  468.     }
  469.  
  470.     /** End the current path.
  471.     @deprecated Use one of the stroke, fill, or clip functions instead.
  472.     */
  473.     public final void endpath() throws
  474.     OutOfMemoryError, IOException, IllegalArgumentException,
  475.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  476.     RuntimeException, InternalError, UnknownError
  477.     {
  478.     PDF_endpath(p);
  479.     }
  480.  
  481.     /** Use the current path as clipping path. */
  482.     public final void clip() throws
  483.     OutOfMemoryError, IOException, IllegalArgumentException,
  484.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  485.     RuntimeException, InternalError, UnknownError
  486.     {
  487.     PDF_clip(p);
  488.     }
  489.  
  490.     /** Set the current fill color to a gray value between 0 and 1 inclusive. */
  491.     public final void setgray_fill(float g) throws
  492.     OutOfMemoryError, IOException, IllegalArgumentException,
  493.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  494.     RuntimeException, InternalError, UnknownError
  495.     {
  496.     PDF_setgray_fill(p, g);
  497.     }
  498.  
  499.     /** Set the current stroke color to a gray value between 0 and 1
  500.         inclusive.
  501.       */
  502.     public final void setgray_stroke(float g) throws
  503.     OutOfMemoryError, IOException, IllegalArgumentException,
  504.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  505.     RuntimeException, InternalError, UnknownError
  506.     {
  507.     PDF_setgray_stroke(p, g);
  508.     }
  509.  
  510.     /** Set the current fill and stroke color. */
  511.     public final void setgray(float g) throws
  512.     OutOfMemoryError, IOException, IllegalArgumentException,
  513.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  514.     RuntimeException, InternalError, UnknownError
  515.     {
  516.     PDF_setgray(p, g);
  517.     }
  518.  
  519.     /** Set the current fill color to the supplied RGB values. */
  520.     public final void setrgbcolor_fill(float red, float green, float blue) throws
  521.     OutOfMemoryError, IOException, IllegalArgumentException,
  522.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  523.     RuntimeException, InternalError, UnknownError
  524.     {
  525.     PDF_setrgbcolor_fill(p, red, green, blue);
  526.     }
  527.  
  528.     /** Set the current stroke color to the supplied RGB values. */
  529.     public final void setrgbcolor_stroke(float red, float green, float blue) throws
  530.     OutOfMemoryError, IOException, IllegalArgumentException,
  531.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  532.     RuntimeException, InternalError, UnknownError
  533.     {
  534.     PDF_setrgbcolor_stroke(p, red, green, blue);
  535.     }
  536.  
  537.     /** Set the current fill and stroke color to the supplied RGB values. */
  538.     public final void setrgbcolor(float red, float green, float blue) throws
  539.     OutOfMemoryError, IOException, IllegalArgumentException,
  540.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  541.     RuntimeException, InternalError, UnknownError
  542.     {
  543.     PDF_setrgbcolor(p, red, green, blue);
  544.     }
  545.  
  546.     /** Place an image at the lower left corner (x, y), and scale it. */
  547.     public final void place_image(int image, float x, float y, float scale) throws
  548.     OutOfMemoryError, IOException, IllegalArgumentException,
  549.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  550.     RuntimeException, InternalError, UnknownError
  551.     {
  552.     PDF_place_image(p, image, x, y, scale);
  553.     }
  554.  
  555.     /** Use image data from a variety of data sources.  Supported types
  556.         are "jpeg", "ccitt", "raw".  Supported sources are "memory",x
  557.     "fileref", "url". len is only used for type="raw", params is only
  558.     used for type="ccitt".
  559.     @return A valid image descriptor, or -1 on error.
  560.      */ 
  561.     public final int open_image(String type, String source, byte[] data, long length, int width, int height, int components, int bpc, String params) throws
  562.     OutOfMemoryError, IOException, IllegalArgumentException,
  563.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  564.     RuntimeException, InternalError, UnknownError
  565.     {
  566.     return PDF_open_image(p, type, source, data, length, width, height, components, bpc, params);
  567.     }
  568.  
  569.     /** Open an image for later use.  Supported types are "jpeg", "tiff",
  570.         "gif", and "png" (depending on configuration, however). stringparam
  571.     is either "", "mask", "masked", or "page". intparam is either 0,
  572.     the image number of the applied mask, or the page.
  573.     @return A valid image descriptor, or -1 on error.
  574.      */
  575.     public final int open_image_file(String type, String filename, String stringparam, int intparam) throws
  576.     OutOfMemoryError, IOException, IllegalArgumentException,
  577.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  578.     RuntimeException, InternalError, UnknownError
  579.     {
  580.     return PDF_open_image_file(p, type, filename, stringparam, intparam);
  581.     }
  582.  
  583.     /** Close an image retrieved with one of the PDF_open_image*() functions. */
  584.     public final void close_image(int image) throws
  585.     OutOfMemoryError, IOException, IllegalArgumentException,
  586.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  587.     RuntimeException, InternalError, UnknownError
  588.     {
  589.     PDF_close_image(p, image);
  590.     }
  591.  
  592.     /** Open a raw CCITT image for later use.
  593.     @return A valid image descriptor, or -1 on error.
  594.      */
  595.     public final int open_CCITT(String filename, int width, int height, int BitReverse, int K, int BlackIs1) throws
  596.     OutOfMemoryError, IOException, IllegalArgumentException,
  597.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  598.     RuntimeException, InternalError, UnknownError
  599.     {
  600.     return PDF_open_CCITT(p, filename, width, height, BitReverse, K, BlackIs1);
  601.     }
  602.  
  603.     /** Add a nested bookmark under parent, or a new top-level bookmark if
  604.         parent = 0. text may be Unicode.  If open = 1, child bookmarks will
  605.     be folded out, and invisible if open = 0.
  606.     @return A bookmark descriptor which may be used as parent for
  607.     subsequent nested bookmarks.
  608.      */
  609.     public final int add_bookmark(String text, int parent, int open) throws
  610.     OutOfMemoryError, IOException, IllegalArgumentException,
  611.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  612.     RuntimeException, InternalError, UnknownError
  613.     {
  614.     return PDF_add_bookmark(p, text, parent, open);
  615.     }
  616.  
  617.     /** Fill document information field key with value. value may be Unicode. */
  618.     public final void set_info(String key, String value) throws
  619.     OutOfMemoryError, IOException, IllegalArgumentException,
  620.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  621.     RuntimeException, InternalError, UnknownError
  622.     {
  623.     PDF_set_info(p, key, value);
  624.     }
  625.  
  626.     /** Add a file attachment annotation. description and author may be Unicode.
  627.         icon is one of "graph, "paperclip", "pushpin", or "tag".
  628.      */
  629.     public final void attach_file(float llx, float lly, float urx, float ury, String filename, String description, String author, String mimetype, String icon) throws
  630.     OutOfMemoryError, IOException, IllegalArgumentException,
  631.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  632.     RuntimeException, InternalError, UnknownError
  633.     {
  634.     PDF_attach_file(p, llx, lly, urx, ury, filename, description, author, mimetype, icon);
  635.     }
  636.  
  637.     /** Add a note annotation. contents and title may be Unicode. icon is one
  638.         of "comment, "insert", "note", "paragraph", "newparagraph", "key",
  639.     or "help".
  640.      */
  641.     public final void add_note(float llx, float lly, float urx, float ury, String contents, String title, String icon, int open) throws
  642.     OutOfMemoryError, IOException, IllegalArgumentException,
  643.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  644.     RuntimeException, InternalError, UnknownError
  645.     {
  646.     PDF_add_note(p, llx, lly, urx, ury, contents, title, icon, open);
  647.     }
  648.  
  649.     /** Add a file link annotation (to a PDF file). */
  650.     public final void add_pdflink(float llx, float lly, float urx, float ury, String filename, int page, String dest) throws
  651.     OutOfMemoryError, IOException, IllegalArgumentException,
  652.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  653.     RuntimeException, InternalError, UnknownError
  654.     {
  655.     PDF_add_pdflink(p, llx, lly, urx, ury, filename, page, dest);
  656.     }
  657.  
  658.     /** Add a launch annotation (arbitrary file type). */
  659.     public final void add_launchlink(float llx, float lly, float urx, float ury, String filename) throws
  660.     OutOfMemoryError, IOException, IllegalArgumentException,
  661.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  662.     RuntimeException, InternalError, UnknownError
  663.     {
  664.     PDF_add_launchlink(p, llx, lly, urx, ury, filename);
  665.     }
  666.  
  667.     /** Add a link annotation with a target within the current file.
  668.         dest can be "fullpage" or "fitwidth".
  669.      */
  670.     public final void add_locallink(float llx, float lly, float urx, float ury, int page, String dest) throws
  671.     OutOfMemoryError, IOException, IllegalArgumentException,
  672.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  673.     RuntimeException, InternalError, UnknownError
  674.     {
  675.     PDF_add_locallink(p, llx, lly, urx, ury, page, dest);
  676.     }
  677.  
  678.     /** Add a weblink annotation. */
  679.     public final void add_weblink(float llx, float lly, float urx, float ury, String url) throws
  680.     OutOfMemoryError, IOException, IllegalArgumentException,
  681.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  682.     RuntimeException, InternalError, UnknownError
  683.     {
  684.     PDF_add_weblink(p, llx, lly, urx, ury, url);
  685.     }
  686.  
  687.     /** Set the border style for all kinds of annotations.
  688.         These settings are used for all annotations until a new style is set.
  689.          Supported border style names are "solid" and "dashed".
  690.      */
  691.     public final void set_border_style(String style, float width) throws
  692.     OutOfMemoryError, IOException, IllegalArgumentException,
  693.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  694.     RuntimeException, InternalError, UnknownError
  695.     {
  696.     PDF_set_border_style(p, style, width);
  697.     }
  698.  
  699.     /** Set the border color for all kinds of annotations. */
  700.     public final void set_border_color(float red, float green, float blue) throws
  701.     OutOfMemoryError, IOException, IllegalArgumentException,
  702.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  703.     RuntimeException, InternalError, UnknownError
  704.     {
  705.     PDF_set_border_color(p, red, green, blue);
  706.     }
  707.  
  708.     /** Set the border dash style for all kinds of annotations.
  709.         See PDF_setdash().
  710.      */
  711.     public final void set_border_dash(float b, float w) throws
  712.     OutOfMemoryError, IOException, IllegalArgumentException,
  713.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  714.     RuntimeException, InternalError, UnknownError
  715.     {
  716.     PDF_set_border_dash(p, b, w);
  717.     }
  718.  
  719.     /** Open an existing PDF document and prepare it for later use. */
  720.     public final int open_pdi(String filename, String stringparam, int intparam) throws
  721.     OutOfMemoryError, IOException, IllegalArgumentException,
  722.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  723.     RuntimeException, InternalError, UnknownError
  724.     {
  725.     return PDF_open_pdi(p, filename, stringparam, intparam);
  726.     }
  727.  
  728.     /** Close all open page handles, and close the input PDF document. */
  729.     public final void close_pdi(int doc) throws
  730.     OutOfMemoryError, IOException, IllegalArgumentException,
  731.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  732.     RuntimeException, InternalError, UnknownError
  733.     {
  734.     PDF_close_pdi(p, doc);
  735.     }
  736.  
  737.     /** Prepare a page for later use with PDF_place_pdi_page(). */
  738.     public final int open_pdi_page(int doc, int page, String label) throws
  739.     OutOfMemoryError, IOException, IllegalArgumentException,
  740.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  741.     RuntimeException, InternalError, UnknownError
  742.     {
  743.     return PDF_open_pdi_page(p, doc, page, label);
  744.     }
  745.  
  746.     /** Close the page handle, and free all page-related resources. */
  747.     public final void close_pdi_page(int page) throws
  748.     OutOfMemoryError, IOException, IllegalArgumentException,
  749.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  750.     RuntimeException, InternalError, UnknownError
  751.     {
  752.     PDF_close_pdi_page(p, page);
  753.     }
  754.  
  755.     /** Place a PDF page at the lower left corner (x, y), and scale it. */
  756.     public final void place_pdi_page(int page, float x, float y, float sx, float sy) throws
  757.     OutOfMemoryError, IOException, IllegalArgumentException,
  758.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  759.     RuntimeException, InternalError, UnknownError
  760.     {
  761.     PDF_place_pdi_page(p, page, x, y, sx, sy);
  762.     }
  763.  
  764.     /** Get the contents of some PDI document parameter with string type. */
  765.     public final String get_pdi_parameter(String key, int doc, int page, int index) throws
  766.     OutOfMemoryError, IOException, IllegalArgumentException,
  767.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  768.     RuntimeException, InternalError, UnknownError
  769.     {
  770.     return PDF_get_pdi_parameter(p, key, doc, page, index);
  771.     }
  772.  
  773.     /** Get the contents of some PDI document parameter with numerical type. */
  774.     public final float get_pdi_value(String key, int doc, int page, int index) throws
  775.     OutOfMemoryError, IOException, IllegalArgumentException,
  776.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  777.     RuntimeException, InternalError, UnknownError
  778.     {
  779.     return PDF_get_pdi_value(p, key, doc, page, index);
  780.     }
  781.  
  782.  
  783.     /** Start a new pattern definition. */
  784.     public final int begin_pattern(float width, float height, float xstep, float ystep, int painttype) throws
  785.     OutOfMemoryError, IOException, IllegalArgumentException,
  786.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  787.     RuntimeException, InternalError, UnknownError
  788.     {
  789.     return PDF_begin_pattern(p, width, height, xstep, ystep, painttype);
  790.     }
  791.  
  792.     /** Finish a pattern definition. */
  793.     public final void end_pattern() throws
  794.     OutOfMemoryError, IOException, IllegalArgumentException,
  795.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  796.     RuntimeException, InternalError, UnknownError
  797.     {
  798.     PDF_end_pattern(p);
  799.     }
  800.  
  801.     /** Start a new template definition. */
  802.     public final int begin_template(float width, float height) throws
  803.     OutOfMemoryError, IOException, IllegalArgumentException,
  804.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  805.     RuntimeException, InternalError, UnknownError
  806.     {
  807.     return PDF_begin_template(p, width, height);
  808.     }
  809.  
  810.     /** Finish a template definition. */
  811.     public final void end_template() throws
  812.     OutOfMemoryError, IOException, IllegalArgumentException,
  813.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  814.     RuntimeException, InternalError, UnknownError
  815.     {
  816.     PDF_end_template(p);
  817.     }
  818.  
  819.     /** Set the current color space and color.
  820.         type is "fill", "stroke", or "both".
  821.      */
  822.     public final void setcolor(String type, String colorspace, float c1, float c2, float c3, float c4) throws
  823.     OutOfMemoryError, IOException, IllegalArgumentException,
  824.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  825.     RuntimeException, InternalError, UnknownError
  826.     {
  827.     PDF_setcolor(p, type, colorspace, c1, c2, c3, c4);
  828.     }
  829.  
  830.     /** Make a named spot color from the current color. */
  831.     public final int makespotcolor(String spotname) throws
  832.     OutOfMemoryError, IOException, IllegalArgumentException,
  833.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  834.     RuntimeException, InternalError, UnknownError
  835.     {
  836.     return PDF_makespotcolor(p, spotname);
  837.     }
  838.  
  839.     /** Draw a clockwise circular arc from alpha to beta degrees. */
  840.     public final void arcn(float x, float y, float r, float alpha, float beta) throws
  841.     OutOfMemoryError, IOException, IllegalArgumentException,
  842.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  843.     RuntimeException, InternalError, UnknownError
  844.     {
  845.     PDF_arcn(p, x, y, r, alpha, beta);
  846.     }
  847.  
  848.     /** Add an existing image as thumbnail for the current page. */
  849.     public final void add_thumbnail(int image) throws
  850.     OutOfMemoryError, IOException, IllegalArgumentException,
  851.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  852.     RuntimeException, InternalError, UnknownError
  853.     {
  854.     PDF_add_thumbnail(p, image);
  855.     }
  856.  
  857.     /** Explicitly set the current transformation matrix. */
  858.     public final void setmatrix(float a, float b, float c, float d, float e, float f) throws
  859.     OutOfMemoryError, IOException, IllegalArgumentException,
  860.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  861.     RuntimeException, InternalError, UnknownError
  862.     {
  863.     PDF_setmatrix(p, a, b, c, d, e, f);
  864.     }
  865.  
  866.     /** Reset all implicit color and graphics state parameters to their
  867.         defaults.
  868.      */
  869.     public final void initgraphics() throws
  870.     OutOfMemoryError, IOException, IllegalArgumentException,
  871.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  872.     RuntimeException, InternalError, UnknownError
  873.     {
  874.     PDF_initgraphics(p);
  875.     }
  876.  
  877.  
  878.     // ------------------------------------------------------------------------
  879.     // private functions
  880.  
  881.     private long p;
  882.  
  883.     protected final void finalize()  throws
  884.         OutOfMemoryError, IOException, IllegalArgumentException,
  885.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  886.         RuntimeException, InternalError, UnknownError
  887.     {
  888.     PDF_delete(p);
  889.     }
  890.  
  891.     private final static void classFinalize() {
  892.     PDF_shutdown();
  893.     }
  894.  
  895.     private final static native void PDF_boot();
  896.  
  897.     private final static native void PDF_shutdown();
  898.  
  899.     private final static native synchronized long PDF_new() throws
  900.     OutOfMemoryError, IOException, IllegalArgumentException,
  901.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  902.     RuntimeException, InternalError, UnknownError;
  903.  
  904.     private final static native synchronized void PDF_delete(long jarg0) throws
  905.         OutOfMemoryError, IOException, IllegalArgumentException,
  906.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  907.         RuntimeException, InternalError, UnknownError;
  908.  
  909.     private final static native int PDF_open_file(long jarg0, String jarg1) throws
  910.         OutOfMemoryError, IOException, IllegalArgumentException,
  911.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  912.         RuntimeException, InternalError, UnknownError;
  913.  
  914.     private final static native void PDF_close(long jarg0) throws
  915.         OutOfMemoryError, IOException, IllegalArgumentException,
  916.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  917.         RuntimeException, InternalError, UnknownError;
  918.  
  919.     private final static native byte[] PDF_get_buffer(long jarg0) throws
  920.         OutOfMemoryError, IOException, IllegalArgumentException,
  921.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  922.         RuntimeException, InternalError, UnknownError;
  923.  
  924.     private final static native void PDF_begin_page(long jarg0, float jarg1, float jarg2) throws
  925.         OutOfMemoryError, IOException, IllegalArgumentException,
  926.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  927.         RuntimeException, InternalError, UnknownError;
  928.  
  929.     private final static native void PDF_end_page(long jarg0) throws
  930.         OutOfMemoryError, IOException, IllegalArgumentException,
  931.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  932.         RuntimeException, InternalError, UnknownError;
  933.  
  934.     private final static native void PDF_set_parameter(long jarg0, String jarg1, String jarg2) throws
  935.         OutOfMemoryError, IOException, IllegalArgumentException,
  936.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  937.         RuntimeException, InternalError, UnknownError;
  938.  
  939.     private final static native String PDF_get_parameter(long jarg0, String key, float mod) throws
  940.         OutOfMemoryError, IOException, IllegalArgumentException,
  941.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  942.         RuntimeException, InternalError, UnknownError;
  943.  
  944.     private final static native void PDF_set_value(long jarg0, String jarg1, float jarg2) throws
  945.         OutOfMemoryError, IOException, IllegalArgumentException,
  946.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  947.         RuntimeException, InternalError, UnknownError;
  948.  
  949.     private final static native float PDF_get_value(long jarg0, String key, float mod) throws
  950.         OutOfMemoryError, IOException, IllegalArgumentException,
  951.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  952.         RuntimeException, InternalError, UnknownError;
  953.  
  954.     private final static native int PDF_findfont(long jarg0, String jarg1, String jarg2, int jarg3) throws
  955.         OutOfMemoryError, IOException, IllegalArgumentException,
  956.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  957.         RuntimeException, InternalError, UnknownError;
  958.  
  959.     private final static native void PDF_setfont(long jarg0, int jarg1, float jarg2) throws
  960.         OutOfMemoryError, IOException, IllegalArgumentException,
  961.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  962.         RuntimeException, InternalError, UnknownError;
  963.  
  964.     private final static native void PDF_show(long jarg0, String jarg1) throws
  965.         OutOfMemoryError, IOException, IllegalArgumentException,
  966.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  967.         RuntimeException, InternalError, UnknownError;
  968.  
  969.     private final static native void PDF_show_xy(long jarg0, String jarg1, float jarg2, float jarg3) throws
  970.         OutOfMemoryError, IOException, IllegalArgumentException,
  971.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  972.         RuntimeException, InternalError, UnknownError;
  973.  
  974.     private final static native void PDF_continue_text(long jarg0, String jarg1) throws
  975.         OutOfMemoryError, IOException, IllegalArgumentException,
  976.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  977.         RuntimeException, InternalError, UnknownError;
  978.  
  979.     private final static native int PDF_show_boxed(long jarg0, String jarg1, float jarg2, float jarg3, float jarg4, float jarg5, String jarg6, String jarg7) throws
  980.         OutOfMemoryError, IOException, IllegalArgumentException,
  981.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  982.         RuntimeException, InternalError, UnknownError;
  983.  
  984.     private final static native void PDF_set_text_pos(long jarg0, float jarg1, float jarg2) throws
  985.         OutOfMemoryError, IOException, IllegalArgumentException,
  986.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  987.         RuntimeException, InternalError, UnknownError;
  988.  
  989.     private final static native float PDF_stringwidth(long jarg0, String jarg1, int jarg2, float jarg3) throws
  990.         OutOfMemoryError, IOException, IllegalArgumentException,
  991.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  992.         RuntimeException, InternalError, UnknownError;
  993.  
  994.     private final static native void PDF_setdash(long jarg0, float jarg1, float jarg2) throws
  995.         OutOfMemoryError, IOException, IllegalArgumentException,
  996.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  997.         RuntimeException, InternalError, UnknownError;
  998.  
  999.     private final static native void PDF_setpolydash(long jarg0, float[] jarg1) throws
  1000.         OutOfMemoryError, IOException, IllegalArgumentException,
  1001.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1002.         RuntimeException, InternalError, UnknownError;
  1003.  
  1004.     private final static native void PDF_setflat(long jarg0, float jarg1) throws
  1005.         OutOfMemoryError, IOException, IllegalArgumentException,
  1006.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1007.         RuntimeException, InternalError, UnknownError;
  1008.  
  1009.     private final static native void PDF_setlinejoin(long jarg0, int jarg1) throws
  1010.         OutOfMemoryError, IOException, IllegalArgumentException,
  1011.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1012.         RuntimeException, InternalError, UnknownError;
  1013.  
  1014.     private final static native void PDF_setlinecap(long jarg0, int jarg1) throws
  1015.         OutOfMemoryError, IOException, IllegalArgumentException,
  1016.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1017.         RuntimeException, InternalError, UnknownError;
  1018.  
  1019.     private final static native void PDF_setmiterlimit(long jarg0, float jarg1) throws
  1020.         OutOfMemoryError, IOException, IllegalArgumentException,
  1021.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1022.         RuntimeException, InternalError, UnknownError;
  1023.  
  1024.     private final static native void PDF_setlinewidth(long jarg0, float jarg1) throws
  1025.         OutOfMemoryError, IOException, IllegalArgumentException,
  1026.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1027.         RuntimeException, InternalError, UnknownError;
  1028.  
  1029.     private final static native void PDF_save(long jarg0) throws
  1030.         OutOfMemoryError, IOException, IllegalArgumentException,
  1031.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1032.         RuntimeException, InternalError, UnknownError;
  1033.  
  1034.     private final static native void PDF_restore(long jarg0) throws
  1035.         OutOfMemoryError, IOException, IllegalArgumentException,
  1036.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1037.         RuntimeException, InternalError, UnknownError;
  1038.  
  1039.     private final static native void PDF_translate(long jarg0, float jarg1, float jarg2) throws
  1040.         OutOfMemoryError, IOException, IllegalArgumentException,
  1041.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1042.         RuntimeException, InternalError, UnknownError;
  1043.  
  1044.     private final static native void PDF_scale(long jarg0, float jarg1, float jarg2) throws
  1045.         OutOfMemoryError, IOException, IllegalArgumentException,
  1046.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1047.         RuntimeException, InternalError, UnknownError;
  1048.  
  1049.     private final static native void PDF_rotate(long jarg0, float jarg1) throws
  1050.         OutOfMemoryError, IOException, IllegalArgumentException,
  1051.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1052.         RuntimeException, InternalError, UnknownError;
  1053.  
  1054.     private final static native void PDF_skew(long jarg0, float jarg1, float jarg2) throws
  1055.         OutOfMemoryError, IOException, IllegalArgumentException,
  1056.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1057.         RuntimeException, InternalError, UnknownError;
  1058.  
  1059.     private final static native void PDF_concat(long jarg0, float a, float b, float c, float d, float e, float f) throws
  1060.         OutOfMemoryError, IOException, IllegalArgumentException,
  1061.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1062.         RuntimeException, InternalError, UnknownError;
  1063.  
  1064.     private final static native void PDF_moveto(long jarg0, float jarg1, float jarg2) throws
  1065.         OutOfMemoryError, IOException, IllegalArgumentException,
  1066.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1067.         RuntimeException, InternalError, UnknownError;
  1068.  
  1069.     private final static native void PDF_lineto(long jarg0, float jarg1, float jarg2) throws
  1070.         OutOfMemoryError, IOException, IllegalArgumentException,
  1071.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1072.         RuntimeException, InternalError, UnknownError;
  1073.  
  1074.     private final static native void PDF_curveto(long jarg0, float jarg1, float jarg2, float jarg3, float jarg4, float jarg5, float jarg6) throws
  1075.         OutOfMemoryError, IOException, IllegalArgumentException,
  1076.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1077.         RuntimeException, InternalError, UnknownError;
  1078.  
  1079.     private final static native void PDF_circle(long jarg0, float jarg1, float jarg2, float jarg3) throws
  1080.         OutOfMemoryError, IOException, IllegalArgumentException,
  1081.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1082.         RuntimeException, InternalError, UnknownError;
  1083.  
  1084.     private final static native void PDF_arc(long jarg0, float jarg1, float jarg2, float jarg3, float jarg4, float jarg5) throws
  1085.         OutOfMemoryError, IOException, IllegalArgumentException,
  1086.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1087.         RuntimeException, InternalError, UnknownError;
  1088.  
  1089.     private final static native void PDF_rect(long jarg0, float jarg1, float jarg2, float jarg3, float jarg4) throws
  1090.         OutOfMemoryError, IOException, IllegalArgumentException,
  1091.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1092.         RuntimeException, InternalError, UnknownError;
  1093.  
  1094.     private final static native void PDF_closepath(long jarg0) throws
  1095.         OutOfMemoryError, IOException, IllegalArgumentException,
  1096.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1097.         RuntimeException, InternalError, UnknownError;
  1098.  
  1099.     private final static native void PDF_stroke(long jarg0) throws
  1100.         OutOfMemoryError, IOException, IllegalArgumentException,
  1101.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1102.         RuntimeException, InternalError, UnknownError;
  1103.  
  1104.     private final static native void PDF_closepath_stroke(long jarg0) throws
  1105.         OutOfMemoryError, IOException, IllegalArgumentException,
  1106.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1107.         RuntimeException, InternalError, UnknownError;
  1108.  
  1109.     private final static native void PDF_fill(long jarg0) throws
  1110.         OutOfMemoryError, IOException, IllegalArgumentException,
  1111.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1112.         RuntimeException, InternalError, UnknownError;
  1113.  
  1114.     private final static native void PDF_fill_stroke(long jarg0) throws
  1115.         OutOfMemoryError, IOException, IllegalArgumentException,
  1116.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1117.         RuntimeException, InternalError, UnknownError;
  1118.  
  1119.     private final static native void PDF_closepath_fill_stroke(long jarg0) throws
  1120.         OutOfMemoryError, IOException, IllegalArgumentException,
  1121.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1122.         RuntimeException, InternalError, UnknownError;
  1123.  
  1124.     private final static native void PDF_endpath(long jarg0) throws
  1125.         OutOfMemoryError, IOException, IllegalArgumentException,
  1126.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1127.         RuntimeException, InternalError, UnknownError;
  1128.  
  1129.     private final static native void PDF_clip(long jarg0) throws
  1130.         OutOfMemoryError, IOException, IllegalArgumentException,
  1131.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1132.         RuntimeException, InternalError, UnknownError;
  1133.  
  1134.     private final static native void PDF_setgray_fill(long jarg0, float jarg1) throws
  1135.         OutOfMemoryError, IOException, IllegalArgumentException,
  1136.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1137.         RuntimeException, InternalError, UnknownError;
  1138.  
  1139.     private final static native void PDF_setgray_stroke(long jarg0, float jarg1) throws
  1140.         OutOfMemoryError, IOException, IllegalArgumentException,
  1141.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1142.         RuntimeException, InternalError, UnknownError;
  1143.  
  1144.     private final static native void PDF_setgray(long jarg0, float jarg1) throws
  1145.         OutOfMemoryError, IOException, IllegalArgumentException,
  1146.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1147.         RuntimeException, InternalError, UnknownError;
  1148.  
  1149.     private final static native void PDF_setrgbcolor_fill(long jarg0, float jarg1, float jarg2, float jarg3) throws
  1150.         OutOfMemoryError, IOException, IllegalArgumentException,
  1151.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1152.         RuntimeException, InternalError, UnknownError;
  1153.  
  1154.     private final static native void PDF_setrgbcolor_stroke(long jarg0, float jarg1, float jarg2, float jarg3) throws
  1155.         OutOfMemoryError, IOException, IllegalArgumentException,
  1156.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1157.         RuntimeException, InternalError, UnknownError;
  1158.  
  1159.     private final static native void PDF_setrgbcolor(long jarg0, float jarg1, float jarg2, float jarg3) throws
  1160.         OutOfMemoryError, IOException, IllegalArgumentException,
  1161.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1162.         RuntimeException, InternalError, UnknownError;
  1163.  
  1164.     private final static native int PDF_get_image_width(long jarg0, int jarg1) throws
  1165.         OutOfMemoryError, IOException, IllegalArgumentException,
  1166.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1167.         RuntimeException, InternalError, UnknownError;
  1168.  
  1169.     private final static native int PDF_get_image_height(long jarg0, int jarg1) throws
  1170.         OutOfMemoryError, IOException, IllegalArgumentException,
  1171.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1172.         RuntimeException, InternalError, UnknownError;
  1173.  
  1174.     private final static native void PDF_place_image(long jarg0, int jarg1, float jarg2, float jarg3, float jarg4) throws
  1175.         OutOfMemoryError, IOException, IllegalArgumentException,
  1176.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1177.         RuntimeException, InternalError, UnknownError;
  1178.  
  1179.     private final static native int PDF_open_image(long jarg0, String jarg1, String jarg2, byte[] jarg3, long jarg4, int jarg5, int jarg6, int jarg7, int jarg8, String jarg9) throws
  1180.         OutOfMemoryError, IOException, IllegalArgumentException,
  1181.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1182.         RuntimeException, InternalError, UnknownError;
  1183.  
  1184.     private final static native void PDF_close_image(long jarg0, int jarg1) throws
  1185.         OutOfMemoryError, IOException, IllegalArgumentException,
  1186.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1187.         RuntimeException, InternalError, UnknownError;
  1188.  
  1189.     private final static native int PDF_open_image_file(long jarg0, String jarg1, String jarg2, String jarg3, int jarg4) throws
  1190.         OutOfMemoryError, IOException, IllegalArgumentException,
  1191.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1192.         RuntimeException, InternalError, UnknownError;
  1193.  
  1194.     private final static native int PDF_open_CCITT(long jarg0, String jarg1, int jarg2, int jarg3, int jarg4, int jarg5, int jarg6) throws
  1195.         OutOfMemoryError, IOException, IllegalArgumentException,
  1196.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1197.         RuntimeException, InternalError, UnknownError;
  1198.  
  1199.     private final static native int PDF_add_bookmark(long jarg0, String jarg1, int jarg2, int jarg3) throws
  1200.         OutOfMemoryError, IOException, IllegalArgumentException,
  1201.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1202.         RuntimeException, InternalError, UnknownError;
  1203.  
  1204.     private final static native void PDF_set_info(long jarg0, String jarg1, String jarg2) throws
  1205.         OutOfMemoryError, IOException, IllegalArgumentException,
  1206.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1207.         RuntimeException, InternalError, UnknownError;
  1208.  
  1209.     private final static native void PDF_attach_file(long jarg0, float jarg1, float jarg2, float jarg3, float jarg4, String jarg5, String jarg6, String jarg7, String jarg8, String jarg9) throws
  1210.         OutOfMemoryError, IOException, IllegalArgumentException,
  1211.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1212.         RuntimeException, InternalError, UnknownError;
  1213.  
  1214.     private final static native void PDF_add_note(long jarg0, float jarg1, float jarg2, float jarg3, float jarg4, String jarg5, String jarg6, String jarg7, int jarg8) throws
  1215.         OutOfMemoryError, IOException, IllegalArgumentException,
  1216.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1217.         RuntimeException, InternalError, UnknownError;
  1218.  
  1219.     private final static native void PDF_add_pdflink(long jarg0, float jarg1, float jarg2, float jarg3, float jarg4, String jarg5, int jarg6, String jarg7) throws
  1220.         OutOfMemoryError, IOException, IllegalArgumentException,
  1221.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1222.         RuntimeException, InternalError, UnknownError;
  1223.  
  1224.     private final static native void PDF_add_launchlink(long jarg0, float jarg1, float jarg2, float jarg3, float jarg4, String jarg5) throws
  1225.         OutOfMemoryError, IOException, IllegalArgumentException,
  1226.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1227.         RuntimeException, InternalError, UnknownError;
  1228.  
  1229.     private final static native void PDF_add_locallink(long jarg0, float jarg1, float jarg2, float jarg3, float jarg4, int jarg5, String jarg6) throws
  1230.         OutOfMemoryError, IOException, IllegalArgumentException,
  1231.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1232.         RuntimeException, InternalError, UnknownError;
  1233.  
  1234.     private final static native void PDF_add_weblink(long jarg0, float jarg1, float jarg2, float jarg3, float jarg4, String jarg5) throws
  1235.         OutOfMemoryError, IOException, IllegalArgumentException,
  1236.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1237.         RuntimeException, InternalError, UnknownError;
  1238.  
  1239.     private final static native void PDF_set_border_style(long jarg0, String jarg1, float jarg2) throws
  1240.         OutOfMemoryError, IOException, IllegalArgumentException,
  1241.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1242.         RuntimeException, InternalError, UnknownError;
  1243.  
  1244.     private final static native void PDF_set_border_color(long jarg0, float jarg1, float jarg2, float jarg3) throws
  1245.         OutOfMemoryError, IOException, IllegalArgumentException,
  1246.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1247.         RuntimeException, InternalError, UnknownError;
  1248.  
  1249.     private final static native void PDF_set_border_dash(long jarg0, float jarg1, float jarg2) throws
  1250.         OutOfMemoryError, IOException, IllegalArgumentException,
  1251.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1252.         RuntimeException, InternalError, UnknownError;
  1253.  
  1254.     private final static native int PDF_open_pdi(long jarg0, String jarg1, String jarg2, int jarg3) throws
  1255.     OutOfMemoryError, IOException, IllegalArgumentException,
  1256.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1257.     RuntimeException, InternalError, UnknownError;
  1258.  
  1259.     private final static native void PDF_close_pdi(long jarg0, int jarg1) throws
  1260.     OutOfMemoryError, IOException, IllegalArgumentException,
  1261.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1262.     RuntimeException, InternalError, UnknownError;
  1263.  
  1264.     private final static native int PDF_open_pdi_page(long jarg0, int jarg1, int jarg2, String jarg3) throws
  1265.     OutOfMemoryError, IOException, IllegalArgumentException,
  1266.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1267.     RuntimeException, InternalError, UnknownError;
  1268.  
  1269.     private final static native void PDF_close_pdi_page(long jarg0, int jarg1) throws
  1270.     OutOfMemoryError, IOException, IllegalArgumentException,
  1271.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1272.     RuntimeException, InternalError, UnknownError;
  1273.  
  1274.     private final static native void PDF_place_pdi_page(long jarg0, int jarg1, float jarg2, float jarg3, float jarg4, float jarg5) throws
  1275.         OutOfMemoryError, IOException, IllegalArgumentException,
  1276.         IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1277.         RuntimeException, InternalError, UnknownError;
  1278.  
  1279.     private final static native String PDF_get_pdi_parameter(long jarg0, String jarg2, int jarg3, int jarg4, int jarg5) throws
  1280.     OutOfMemoryError, IOException, IllegalArgumentException,
  1281.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1282.     RuntimeException, InternalError, UnknownError;
  1283.  
  1284.     private final static native float PDF_get_pdi_value(long jarg0, String jarg1, int jarg2, int jarg3, int jarg4) throws
  1285.     OutOfMemoryError, IOException, IllegalArgumentException,
  1286.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1287.     RuntimeException, InternalError, UnknownError;
  1288.  
  1289.     private final static native int PDF_begin_pattern(long jarg0, float jarg1, float jarg2, float jarg3, float jarg4, int jarg5) throws
  1290.     OutOfMemoryError, IOException, IllegalArgumentException,
  1291.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1292.     RuntimeException, InternalError, UnknownError;
  1293.  
  1294.     private final static native void PDF_end_pattern(long jarg0) throws
  1295.     OutOfMemoryError, IOException, IllegalArgumentException,
  1296.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1297.     RuntimeException, InternalError, UnknownError;
  1298.  
  1299.     private final static native int PDF_begin_template(long jarg0, float jarg1, float jarg2) throws
  1300.     OutOfMemoryError, IOException, IllegalArgumentException,
  1301.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1302.     RuntimeException, InternalError, UnknownError;
  1303.  
  1304.     private final static native void PDF_end_template(long jarg0) throws
  1305.     OutOfMemoryError, IOException, IllegalArgumentException,
  1306.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1307.     RuntimeException, InternalError, UnknownError;
  1308.  
  1309.     private final static native void PDF_setcolor(long jarg0, String jarg1, String jarg2, float jarg3, float jarg4, float jarg5, float jarg6) throws
  1310.     OutOfMemoryError, IOException, IllegalArgumentException,
  1311.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1312.     RuntimeException, InternalError, UnknownError;
  1313.  
  1314.     private final static native int PDF_makespotcolor(long jarg0, String jarg1) throws
  1315.     OutOfMemoryError, IOException, IllegalArgumentException,
  1316.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1317.     RuntimeException, InternalError, UnknownError;
  1318.  
  1319.     private final static native void PDF_arcn(long jarg0, float jarg1, float jarg2, float jarg3, float jarg4, float jarg5) throws
  1320.     OutOfMemoryError, IOException, IllegalArgumentException,
  1321.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1322.     RuntimeException, InternalError, UnknownError;
  1323.  
  1324.     private final static native void PDF_add_thumbnail(long jarg0, int jarg1) throws
  1325.     OutOfMemoryError, IOException, IllegalArgumentException,
  1326.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1327.     RuntimeException, InternalError, UnknownError;
  1328.  
  1329.     private final static native void PDF_setmatrix(long jarg0, float jarg1, float jarg2, float jarg3, float jarg4, float jarg5, float jarg6) throws
  1330.     OutOfMemoryError, IOException, IllegalArgumentException,
  1331.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1332.     RuntimeException, InternalError, UnknownError;
  1333.  
  1334.     private final static native void PDF_initgraphics(long jarg0) throws
  1335.     OutOfMemoryError, IOException, IllegalArgumentException,
  1336.     IndexOutOfBoundsException, ClassCastException, ArithmeticException,
  1337.     RuntimeException, InternalError, UnknownError;
  1338. }
  1339.