forked from KolibriOS/kolibrios
Ivan Baravy
0808796ed5
1. tiff (baseline) support 2. pnm (portable anymap) bilevel, grayscale (8bpp), pixmap (24bpp) support 3. xcf: optional layer merging/blending with sse (default is mmx) 4'. new formatting for my old code. more readable for now git-svn-id: svn://kolibrios.org@2388 a494cfbc-eb01-0410-851d-a64ba20cac60
43 lines
2.1 KiB
HTML
43 lines
2.1 KiB
HTML
;;================================================================================================;;
|
|
;;//// xcf.inc //// (c) dunkaist, 2011-2012 //////////////////////////////////////////////////////;;
|
|
;;================================================================================================;;
|
|
;; ;;
|
|
;; This file is part of Common development libraries (Libs-Dev). ;;
|
|
;; ;;
|
|
;; Libs-Dev is free software: you can redistribute it and/or modify it under the terms of the GNU ;;
|
|
;; Lesser General Public License as published by the Free Software Foundation, either version 2.1 ;;
|
|
;; of the License, or (at your option) any later version. ;;
|
|
;; ;;
|
|
;; Libs-Dev 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 ;;
|
|
;; Lesser General Public License for more details. ;;
|
|
;; ;;
|
|
;; You should have received a copy of the GNU Lesser General Public License along with Libs-Dev. ;;
|
|
;; If not, see <http://www.gnu.org/licenses/>. ;;
|
|
;; ;;
|
|
;;================================================================================================;;
|
|
|
|
XCF_BASETYPE_RGB = 0
|
|
XCF_BASETYPE_GRAY = 1
|
|
XCF_BASETYPE_INDEXED = 2
|
|
|
|
struct xcf_header
|
|
magic_string rb 9
|
|
version rd 1
|
|
reserved rb 1
|
|
width rd 1
|
|
height rd 1
|
|
base_type rd 1
|
|
ends
|
|
|
|
struct xcf_ext
|
|
visible rd 1
|
|
layer_mode rd 1
|
|
offset_x rd 1
|
|
offset_y rd 1
|
|
opacity rd 1
|
|
apply_mask rd 1
|
|
type rd 1
|
|
planes rd 1
|
|
ends
|