Chapter 2. Using libgimpprint

Table of Contents
Code prerequisites
Linking with libgimpprint
Integrating libgimpprint

This chapter describes how to write programs that use libgimpprint.

Code prerequisites

To use libgimpprint with a program, several steps must be taken:

The following is a short example program. It does not do anything useful, but it does everything required to link with libgimpprint and call other functions from libgimpprint.

#include <gimp-print/gimp-print.h>
int
main (int argc, char *argv[])
{
  stp_init();
  return 0;
}