/* Copyright (C) 1997, 1998 artofcode LLC. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA, 02111-1307. */ /*$Id: gsiparm2.h,v 1.2.6.1.2.1 2003/01/17 00:49:02 giles Exp $ */ /* ImageType 2 image parameter definition */ #ifndef gsiparm2_INCLUDED # define gsiparm2_INCLUDED #include "gsiparam.h" /* Opaque type for a path */ #ifndef gx_path_DEFINED # define gx_path_DEFINED typedef struct gx_path_s gx_path; #endif /* * See Section 7.1 of the Adobe PostScript Version 3010 Supplement * for a definition of ImageType 2 images. */ typedef struct gs_image2_s { gs_image_common; gs_state *DataSource; float XOrigin, YOrigin; float Width, Height; /* * If UnpaintedPath is not 0, any unpainted path will be appended to it. */ gx_path *UnpaintedPath; bool PixelCopy; } gs_image2_t; #define private_st_gs_image2() /* in gximage2.c */\ extern_st(st_gs_image_common);\ gs_private_st_suffix_add2(st_gs_image2, gs_image2_t, "gs_image2_t",\ image2_enum_ptrs, image2_reloc_ptrs, st_gs_image_common,\ DataSource, UnpaintedPath) /* * Initialize an ImageType 2 image. Defaults: * UnpaintedPath = 0 * PixelCopy = false */ void gs_image2_t_init(P1(gs_image2_t * pim)); #endif /* gsiparm2_INCLUDED */