com.twelvemonkeys.imageio.plugins.pict.QuickDraw Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of imageio-pict Show documentation
Show all versions of imageio-pict Show documentation
ImageIO plugin for Apple Mac Paint Picture (PICT) format.
The newest version!
/*
* Copyright (c) 2008, Harald Kuhr
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name "TwelveMonkeys" nor the
* names of its contributors may be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package com.twelvemonkeys.imageio.plugins.pict;
import java.awt.image.*;
import java.awt.*;
/**
* QuickDraw constants.
*
* @author Harald Kuhr
* @author last modified by $Author: haraldk$
* @version $Id: QuickDraw.java,v 1.0 Oct 9, 2007 1:15:09 AM haraldk Exp$
*/
interface QuickDraw {
// Reversed from default BufferedImage.TYPE_BYTE_BINARY
IndexColorModel MONOCHROME = new IndexColorModel(1, 2, new int[] {0xffffff, 0x00000000}, 0, false, -1, DataBuffer.TYPE_BYTE);
/** QuickDraw {@code white} pattern */
Pattern WHITE = new BitMapPattern(Color.WHITE);
/** QuickDraw {@code black} pattern */
Pattern BLACK = new BitMapPattern(Color.BLACK);
/** QuickDraw {@code gray} pattern */
Pattern GRAY = new BitMapPattern(0xAA55AA55);
/** QuickDraw {@code ltGray} pattern */
Pattern LIGT_GRAY = new BitMapPattern(0x88228822);
/** QuickDraw {@code dkGray} pattern */
Pattern DARK_GRAY = new BitMapPattern(0x77DD77DD);
// Boolean Transfer modes.
// http://developer.apple.com/documentation/mac/quickdraw/QuickDraw-196.html#HEADING196-2
// http://developer.apple.com/documentation/mac/quickdraw/QuickDraw-269.html#HEADING269-2
// See http://developer.apple.com/documentation/mac/quickdraw/QuickDraw-199.html#HEADING199-76 for color!
int SRC_COPY = 0;
int SRC_OR = 1;
int SRC_XOR = 2;
int SRC_BIC = 3;
int NOT_SRC_COPY = 4;
int NOT_SRC_OR = 5;
int NOT_SRC_XOR = 6;
int NOT_SRC_BIC = 7;
int PAT_COPY = 8;
int PAT_OR = 9;
int PAT_XOR = 10;
int PAT_BIC = 11;
int NOT_PAT_COPY = 12;
int NOT_PAT_OR = 13;
int NOT_PAT_XOR = 14;
int NOT_PAT_BIC = 15;
int DITHER_COPY = 64; // Add to src mode for dither
int HILITE = 50; // Add to src or pattern mode for highlight
// Arithmetic Transfer Modes
// http://developer.apple.com/documentation/mac/quickdraw/QuickDraw-199.html#HEADING199-112
int BLEND = 32; // dest = source weight/65,535 + destination (1 - weight/65,535)
int ADD_PIN = 33;
int ADD_OVER = 34;
int SUB_PIN = 35;
int TRANSPARENT = 36;
int AD_MAX = 37;
int SUB_OVER = 38;
int AD_MIN = 39;
int GRAYISH_TEXT_OR = 49;
// int MASK = 64; // ?! From Käry's code..
/*
* Text face masks.
*/
int TX_BOLD_MASK = 1;
int TX_ITALIC_MASK = 2;
int TX_UNDERLINE_MASK = 4;
int TX_OUTLINE_MASK = 8;
int TX_SHADOWED_MASK = 16;
int TX_CONDENSED_MASK = 32;
int TX_EXTENDED_MASK = 64;
}