forked from: Lanczos Resampling
more on
http://blog.yoz.sk/2010/11/lanczos-resampling-with-actionscript/
/**
* Copyright xperiments1 ( http://wonderfl.net/user/xperiments1 )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/xmsq
*/
// forked from jozefchutka's Lanczos Resampling
/*
more on
http://blog.yoz.sk/2010/11/lanczos-resampling-with-actionscript/
*/
package
{
import flash.display.Bitmap;
import flash.display.BitmapData;
import flash.display.Loader;
import flash.display.Sprite;
import flash.display.StageAlign;
import flash.display.StageScaleMode;
import flash.events.Event;
import flash.net.URLRequest;
import flash.system.LoaderContext;
import flash.text.TextField;
[SWF(width="465", height="465", frameRate="30", backgroundColor="#FFFFFF")]
public class WonderflApp extends Sprite
{
public var original:Loader = new Loader();
public var tf:TextField = new TextField();
public function WonderflApp():void
{
stage.scaleMode = StageScaleMode.NO_SCALE;
stage.align = StageAlign.TOP_LEFT;
var request:URLRequest = new URLRequest();
request.url = "http://blog.yoz.sk/examples/LanczosBitmapDataResizer/big.jpg";
original.load(request, new LoaderContext(true));
original.contentLoaderInfo.addEventListener(Event.COMPLETE, onComplete);
addChild(tf);
tf.appendText("Loading ...\n");
}
public function onComplete(event:Event):void
{
original.width = original.height = 227;
addChild(original);
var originalBitmapData:BitmapData = Bitmap(original.content).bitmapData;
LanczosBitmapDataResizer.FILTER_SIZE = 1;
// RESIZING:
var d0:Date = new Date();
var bitmapData:BitmapData = LanczosBitmapDataResizer.resize(originalBitmapData, 227, 227);
var d1:Date = new Date();
var result:Bitmap = new Bitmap(bitmapData);
result.x = original.x + original.width + 10;
addChild(result);
tf.appendText("Resizing " + originalBitmapData.width + "x"
+ originalBitmapData.height + "px to " + result.bitmapData.width
+ "x" + result.bitmapData.height + "px ...\n");
tf.appendText("Resizing finished in " + String(d1.time - d0.time) + " ms");
tf.multiline = true;
tf.y = original.height + 10;
tf.height = 100;
tf.width = original.width * 2 + 10;
tf.background = true;
tf.border = true;
}
}
}
import flash.display.BitmapData;
import flash.utils.Dictionary;
class LanczosBitmapDataResizer
{
public static var CACHE:Dictionary;
public static var CACHE_PRECISION:uint = 100;
public static var FILTER_SIZE:uint = 1;
public function LanczosBitmapDataResizer()
{
}
public static function kernel(filterSize:uint, x:Number):Number
{
if(x >= filterSize || x <= -filterSize)
return 0;
if(x == 0)
return 1;
var xpi:Number = x * Math.PI;
return filterSize * Math.sin(xpi) * Math.sin(xpi / filterSize)
/ (xpi * xpi);
}
public static function createCache(kernel:Function,
cachePrecision:uint, filterSize:uint):Dictionary
{
var cache:Dictionary = new Dictionary();
var max:uint = filterSize * filterSize * cachePrecision;
var iPrecision:Number = 1 / cachePrecision;
var value:Number;
for(var cacheKey:uint = 0; cacheKey < max; cacheKey++)
{
value = kernel(filterSize, Math.sqrt(cacheKey * iPrecision));
cache[cacheKey] = value < 0 ? 0 : value;
}
return cache;
}
public static function resize(source:BitmapData, width:uint,
height:uint, kernel:Function=null):BitmapData
{
var total:Number, distanceY:Number, value:Number;
var a:Number, r:Number, g:Number, b:Number;
var i:uint, color:uint, cacheKey:uint;
var x:int, x1:uint, x1b:int, x1e:int;
var y:int, y1:uint, y1b:int, y1e:int, y2:uint, y3:uint;
var y1et:Number, x1et:Number;
var values:Vector.<Number> = new Vector.<Number>();
var sx:Number = width / source.width;
var sy:Number = height / source.height;
var sw1:uint = source.width - 1;
var sh1:uint = source.height - 1;
var isx:Number = 1 / sx;
var isy:Number = 1 / sy;
var cw:Number = 1 / width;
var ch:Number = 1 / height;
var csx:Number = Math.min(1, sx) * Math.min(1, sx);
var csy:Number = Math.min(1, sy) * Math.min(1, sy);
var cx:Number, cy:Number;
var sourcePixelX:Number, sourcePixelY:Number;
var sourcePixels:Vector.<uint> = source.getVector(source.rect);
var output:BitmapData =
new BitmapData(width, height, source.transparent);
var outputPixels:Vector.<uint> =
new Vector.<uint>(width * height, true);
var cache:Dictionary = CACHE;
var cachePrecision:uint = CACHE_PRECISION;
var filterSize:uint = FILTER_SIZE;
var kernel:Function = kernel || public::kernel;
if(!cache)
CACHE = cache = createCache(kernel, cachePrecision, filterSize);
y = height;
while(y--)
{
sourcePixelY = (y + 0.5) * isy;
y1b = sourcePixelY - filterSize;
if(y1b < 0)
y1b = 0;
y1e = y1et = sourcePixelY + filterSize;
if(y1e != y1et)
y1e = y1et + 1;
if(y1e > sh1)
y1e = sh1;
cy = y * ch - sourcePixelY;
y3 = y * width;
x = width;
while(x--)
{
sourcePixelX = (x + 0.5) * isx;
x1b = sourcePixelX - filterSize;
if(x1b < 0)
x1b = 0;
x1e = x1et = sourcePixelX + filterSize;
if(x1e != x1et)
x1e = x1et + 1;
if(x1e > sw1)
x1e = sw1;
cx = x * cw - sourcePixelX;
values.length = i = total = 0;
for(y1 = y1b; y1 <= y1e; y1++)
{
distanceY = (y1 + cy) * (y1 + cy) * csy;
for(x1 = x1b; x1 <= x1e; x1++)
{
total += values[uint(i++)] = cache[uint(
((x1 + cx) * (x1 + cx) * csx + distanceY)
* cachePrecision)]||0;
}
}
total = 1 / total;
i = a = r = g = b = 0;
for(y1 = y1b; y1 <= y1e; y1++)
{
y2 = y1 * source.width;
for(x1 = x1b; x1 <= x1e; x1++)
{
color = sourcePixels[uint(y2 + x1)];
value = values[uint(i++)] * total;
a += (color >> 24 & 0xff) * value;
r += (color >> 16 & 0xff) * value;
g += (color >> 8 & 0xff) * value;
b += (color & 0xff) * value;
}
}
outputPixels[uint(x + y3)] = a << 24 | r << 16 | g << 8 | b;
}
}
output.setVector(output.rect, outputPixels);
return output;
}
}