[Pixelle-commit] SF.net SVN: pixelle: [107] trunk/pixelle/src/com/mebigfatguy/pixelle/ PixelleTrans
Brought to you by:
dbrosius
|
From: <dbr...@us...> - 2008-06-28 22:29:59
|
Revision: 107
http://pixelle.svn.sourceforge.net/pixelle/?rev=107&view=rev
Author: dbrosius
Date: 2008-06-28 15:30:06 -0700 (Sat, 28 Jun 2008)
Log Message:
-----------
fix 4ByteABGR
Modified Paths:
--------------
trunk/pixelle/src/com/mebigfatguy/pixelle/PixelleTransformer.java
Modified: trunk/pixelle/src/com/mebigfatguy/pixelle/PixelleTransformer.java
===================================================================
--- trunk/pixelle/src/com/mebigfatguy/pixelle/PixelleTransformer.java 2008-06-28 22:29:17 UTC (rev 106)
+++ trunk/pixelle/src/com/mebigfatguy/pixelle/PixelleTransformer.java 2008-06-28 22:30:06 UTC (rev 107)
@@ -32,7 +32,7 @@
import com.mebigfatguy.pixelle.antlr.PixelleLexer;
import com.mebigfatguy.pixelle.antlr.PixelleParser;
-import com.mebigfatguy.pixelle.eval.PixelleEval3ByteABGR;
+import com.mebigfatguy.pixelle.eval.PixelleEval4ByteABGR;
/**
* transforms one bitmap into another based on the algorithms defined by the user.
@@ -71,7 +71,7 @@
PixelleImage destImage = new PixelleImage(new BufferedImage(srcImage.getWidth(), srcImage.getHeight(), BufferedImage.TYPE_4BYTE_ABGR));
PixelleEval srcPE = PixelleEvalFactory.create(srcImage);
- PixelleEval3ByteABGR destPE = new PixelleEval3ByteABGR(destImage, OutOfBoundsOption.BorderColor);
+ PixelleEval4ByteABGR destPE = new PixelleEval4ByteABGR(destImage, OutOfBoundsOption.BorderColor);
PixelleClassLoader pcl = AccessController.doPrivileged(new PrivilegedAction<PixelleClassLoader>() {
public PixelleClassLoader run() {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|