Uses of Class
org.ghost4j.GhostscriptException
-
Packages that use GhostscriptException Package Description org.ghost4j org.ghost4j.display -
-
Uses of GhostscriptException in org.ghost4j
Methods in org.ghost4j that throw GhostscriptException Modifier and Type Method Description protected void
AbstractComponent. assertDeviceSupported(java.lang.String deviceName)
Asserts a given device is supported by the current Ghostscript version.private GhostscriptLibrary.display_callback_s
Ghostscript. buildNativeDisplayCallback(DisplayCallback displayCallback)
Builds a native display callback from a DisplayCallback object.static void
Ghostscript. deleteInstance()
Deletes the singleton instance of the Ghostscript object.void
Ghostscript. exit()
Exits Ghostscript interpreter.private GhostscriptLibrary.gs_main_instance.ByReference
Ghostscript. getNativeInstanceByRef()
Singleton factory method for getting a Ghostscript,interpreter instance.void
Ghostscript. initialize(java.lang.String[] args)
Initializes Ghostscript interpreter.protected boolean
AbstractComponent. isDeviceSupported(java.lang.String deviceName)
Checks if a given device is supported by the current Ghostscript version.void
Ghostscript. runFile(java.lang.String fileName)
Sends file Ghostscript interpreter.void
Ghostscript. runString(java.lang.String string)
Sends command string to Ghostscript interpreter. -
Uses of GhostscriptException in org.ghost4j.display
Methods in org.ghost4j.display that throw GhostscriptException Modifier and Type Method Description void
DisplayCallback. displayClose()
Method called when device has been closed.void
ImageWriterDisplayCallback. displayClose()
void
PageRasterDisplayCallback. displayClose()
void
DisplayCallback. displayOpen()
Method called when new device has been opened.void
ImageWriterDisplayCallback. displayOpen()
void
PageRasterDisplayCallback. displayOpen()
void
DisplayCallback. displayPage(int width, int height, int raster, int format, int copies, int flush, byte[] imageData)
Method called on show page.void
ImageWriterDisplayCallback. displayPage(int width, int height, int raster, int format, int copies, int flush, byte[] imageData)
void
PageRasterDisplayCallback. displayPage(int width, int height, int raster, int format, int copies, int flush, byte[] imageData)
void
DisplayCallback. displayPreClose()
Method called when device is about to be closed.void
ImageWriterDisplayCallback. displayPreClose()
void
PageRasterDisplayCallback. displayPreClose()
void
DisplayCallback. displayPreSize(int width, int height, int raster, int format)
Method called when device is about to be resized.void
ImageWriterDisplayCallback. displayPreSize(int width, int height, int raster, int format)
void
PageRasterDisplayCallback. displayPreSize(int width, int height, int raster, int format)
void
DisplayCallback. displaySize(int width, int height, int raster, int format)
Method called when device has been resized.void
ImageWriterDisplayCallback. displaySize(int width, int height, int raster, int format)
void
PageRasterDisplayCallback. displaySize(int width, int height, int raster, int format)
void
DisplayCallback. displaySync()
Method called on page flush.void
ImageWriterDisplayCallback. displaySync()
void
PageRasterDisplayCallback. displaySync()
void
DisplayCallback. displayUpdate(int x, int y, int width, int height)
Method called to notify whenever a portion of the raster is updated.void
ImageWriterDisplayCallback. displayUpdate(int x, int y, int width, int height)
void
PageRasterDisplayCallback. displayUpdate(int x, int y, int width, int height)
-