/* This file is part of PSPFormat, a File Format plugin for Adobe Photoshop Copyright (C) 2003-7 Toby Thain, toby@telegraphics.com.au 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 USA */ /* PSP File Format Specification is Copyright (C) 2000 Jasc Software, Inc. See http://www.jasc.com/specs/psp.asp */ char *psp7_block_id_strings[]={ "PSP_IMAGE_BLOCK", "PSP_CREATOR_BLOCK", "PSP_COLOR_BLOCK", "PSP_LAYER_START_BLOCK", "PSP_LAYER_BLOCK", "PSP_CHANNEL_BLOCK", "PSP_SELECTION_BLOCK", "PSP_ALPHA_BANK_BLOCK", "PSP_ALPHA_CHANNEL_BLOCK", "PSP_COMPOSITE_IMAGE_BLOCK", "PSP_EXTENDED_DATA_BLOCK", "PSP_TUBE_BLOCK", "PSP_ADJUSTMENT_EXTENSION_BLOCK", "PSP_VECTOR_EXTENSION_BLOCK", "PSP_SHAPE_BLOCK", "PSP_PAINTSTYLE_BLOCK", "PSP_COMPOSITE_IMAGE_BANK_BLOCK", "PSP_COMPOSITE_ATTRIBUTES_BLOCK", "PSP_JPEG_BLOCK", "PSP_LINESTYLE_BLOCK", "PSP_TABLE_BANK_BLOCK", "PSP_TABLE_BLOCK", "PSP_PAPER_BLOCK", "PSP_PATTERN_BLOCK" }; char *psp7_dibtype_strings[]={ "PSP_DIB_IMAGE", "PSP_DIB_TRANS_MASK", "PSP_DIB_USER_MASK", "PSP_DIB_SELECTION", "PSP_DIB_ALPHA_MASK", "PSP_DIB_THUMBNAIL", "PSP_DIB_THUMBNAIL_TRANS_MASK", "PSP_DIB_ADJUSTMENT_LAYER", "PSP_DIB_COMPOSITE", "PSP_DIB_COMPOSITE_TRANS_MASK", "PSP_DIB_PAPER", "PSP_DIB_PATTERN", "PSP_DIB_PATTERN_TRANS_MASK" }; char *psp7_channeltype_strings[]={ "PSP_CHANNEL_COMPOSITE", "PSP_CHANNEL_RED", "PSP_CHANNEL_GREEN", "PSP_CHANNEL_BLUE" }; char *psp7_comptype_strings[]={ "PSP_COMP_NONE", "PSP_COMP_RLE", "PSP_COMP_LZ77", "PSP_COMP_JPEG" }; char *psp7_layertype_strings[]={ "keGLTUndefined", "keGLTRaster", "keGLTFloatingRasterSelection", "keGLTVector", "keGLTAdjustment" };