#include <stdio.h>
#include "hash.h"
#include "list.h"
#include "unicode.h"
#include "gocr_image.h"
#include "gocr_char.h"
#include "gocr_block.h"
#include "gocr_gui.h"
#include "gocr.h"
Go to the source code of this file.
Classes | |
struct | gocr_modulefunctioninfo |
Module function information. More... | |
struct | gocr_moduleattributeinfo |
Module package attributes information. More... | |
struct | gocr_moduleinfo |
Module data. | |
typedef gocr_modulefunctioninfo | gocr_ModuleFunctionInfo |
Typedef encapsulation. | |
typedef gocr_moduleattributeinfo | gocr_ModuleAttributeInfo |
Typedef encapsulation. | |
typedef gocr_moduleinfo | gocr_ModuleInfo |
Typedef encapsulation. | |
Debugging utilities | |
*int | gocr_printArea (gocr_Image *image, int x0, int y0, int x1, int y1) |
prints an image. | |
int | gocr_printBlock (gocr_Block *b) |
prints a block. | |
int | gocr_printBox (gocr_Box *b) |
prints a box. | |
int | gocr_printBox2 (gocr_Box *b1, gocr_Box *b2) |
prints two boxes. |
|
prints an image. This function prints an image to the file specified by the ERROR_FILE attribute, formatted according to the PRINT attribute:
Refer to the PostScript documentation for a more detailed description.
|
|
prints a block. This function prints a block to the file specified by the ERROR_FILE attribute. If PRINT_IMAGE attribute is 1 (true), the image of the block will be printed too.
|
|
prints a box. This function prints a box to the file specified by the ERROR_FILE attribute. If PRINT_IMAGE attribute is 1 (true), the image of the box will be printed too.
|
|
prints two boxes. This function prints two boxes side by side, to the file specified by the ERROR_FILE attribute. If PRINT_IMAGE attribute is 1 (true), the image of the boxes will be printed too.
|