| [4256] | 1 | /*
|
|---|
| 2 | * AdobeCompositeContext.java
|
|---|
| 3 | *
|
|---|
| 4 | *
|
|---|
| 5 | * The Salamander Project - 2D and 3D graphics libraries in Java
|
|---|
| 6 | * Copyright (C) 2004 Mark McKay
|
|---|
| 7 | *
|
|---|
| 8 | * This library is free software; you can redistribute it and/or
|
|---|
| 9 | * modify it under the terms of the GNU Lesser General Public
|
|---|
| 10 | * License as published by the Free Software Foundation; either
|
|---|
| 11 | * version 2.1 of the License, or (at your option) any later version.
|
|---|
| 12 | *
|
|---|
| 13 | * This library is distributed in the hope that it will be useful,
|
|---|
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|---|
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|---|
| 16 | * Lesser General Public License for more details.
|
|---|
| 17 | *
|
|---|
| 18 | * You should have received a copy of the GNU Lesser General Public
|
|---|
| 19 | * License along with this library; if not, write to the Free Software
|
|---|
| 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|---|
| 21 | *
|
|---|
| 22 | * Mark McKay can be contacted at mark@kitfox.com. Salamander and other
|
|---|
| 23 | * projects can be found at http://www.kitfox.com
|
|---|
| 24 | *
|
|---|
| 25 | * Created on April 1, 2004, 6:41 AM
|
|---|
| 26 | */
|
|---|
| 27 |
|
|---|
| 28 | package com.kitfox.svg.composite;
|
|---|
| 29 |
|
|---|
| 30 | import java.awt.*;
|
|---|
| 31 | import java.awt.image.*;
|
|---|
| 32 |
|
|---|
| 33 | /**
|
|---|
| 34 | * @author Mark McKay
|
|---|
| 35 | * @author <a href="mailto:mark@kitfox.com">Mark McKay</a>
|
|---|
| 36 | */
|
|---|
| 37 | public class AdobeCompositeContext implements CompositeContext
|
|---|
| 38 | {
|
|---|
| 39 | final int compositeType;
|
|---|
| 40 | final float extraAlpha;
|
|---|
| 41 |
|
|---|
| 42 | float[] rgba_src = new float[4];
|
|---|
| 43 | float[] rgba_dstIn = new float[4];
|
|---|
| 44 | float[] rgba_dstOut = new float[4];
|
|---|
| 45 |
|
|---|
| 46 | /** Creates a new instance of AdobeCompositeContext */
|
|---|
| 47 | public AdobeCompositeContext(int compositeType, float extraAlpha)
|
|---|
| 48 | {
|
|---|
| 49 | this.compositeType = compositeType;
|
|---|
| 50 | this.extraAlpha = extraAlpha;
|
|---|
| 51 |
|
|---|
| 52 | rgba_dstOut[3] = 1f;
|
|---|
| 53 | }
|
|---|
| 54 |
|
|---|
| 55 | public void compose(Raster src, Raster dstIn, WritableRaster dstOut)
|
|---|
| 56 | {
|
|---|
| 57 | int width = src.getWidth();
|
|---|
| 58 | int height = src.getHeight();
|
|---|
| 59 |
|
|---|
| 60 | for (int j = 0; j < height; j++)
|
|---|
| 61 | {
|
|---|
| 62 | for (int i = 0; i < width; i++)
|
|---|
| 63 | {
|
|---|
| 64 | src.getPixel(i, j, rgba_src);
|
|---|
| 65 | dstIn.getPixel(i, j, rgba_dstIn);
|
|---|
| 66 |
|
|---|
| 67 | //Ignore transparent pixels
|
|---|
| 68 | if (rgba_src[3] == 0)
|
|---|
| 69 | {
|
|---|
| 70 | // dstOut.setPixel(i, j, rgba_dstIn);
|
|---|
| 71 | continue;
|
|---|
| 72 | }
|
|---|
| 73 |
|
|---|
| 74 | float alpha = rgba_src[3];
|
|---|
| 75 |
|
|---|
| 76 | switch (compositeType)
|
|---|
| 77 | {
|
|---|
| 78 | default:
|
|---|
| 79 | case AdobeComposite.CT_NORMAL:
|
|---|
| 80 | rgba_dstOut[0] = rgba_src[0] * alpha + rgba_dstIn[0] * (1f - alpha);
|
|---|
| 81 | rgba_dstOut[1] = rgba_src[1] * alpha + rgba_dstIn[1] * (1f - alpha);
|
|---|
| 82 | rgba_dstOut[2] = rgba_src[2] * alpha + rgba_dstIn[2] * (1f - alpha);
|
|---|
| 83 | break;
|
|---|
| 84 | case AdobeComposite.CT_MULTIPLY:
|
|---|
| 85 | rgba_dstOut[0] = rgba_src[0] * rgba_dstIn[0] * alpha + rgba_dstIn[0] * (1f - alpha);
|
|---|
| 86 | rgba_dstOut[1] = rgba_src[1] * rgba_dstIn[1] * alpha + rgba_dstIn[1] * (1f - alpha);
|
|---|
| 87 | rgba_dstOut[2] = rgba_src[2] * rgba_dstIn[2] * alpha + rgba_dstIn[2] * (1f - alpha);
|
|---|
| 88 | break;
|
|---|
| 89 | }
|
|---|
| 90 | }
|
|---|
| 91 | }
|
|---|
| 92 | }
|
|---|
| 93 |
|
|---|
| 94 | public void dispose() {
|
|---|
| 95 | }
|
|---|
| 96 |
|
|---|
| 97 | }
|
|---|