PhpToHaxe - tool for helping use php from haxe
Code to code
Code to extern
PhpDoc methods
PhpDoc consts
Source PhpDoc methods in c-like form
bool adaptiveBlurImage ( float $radius , float $sigma [, int $channel = Imagick::CHANNEL_DEFAULT ] ) bool adaptiveResizeImage ( int $columns , int $rows [, bool $bestfit = false ] ) bool adaptiveSharpenImage ( float $radius , float $sigma [, int $channel = Imagick::CHANNEL_DEFAULT ] ) bool adaptiveThresholdImage ( int $width , int $height , int $offset ) bool addImage ( Imagick $source ) bool addNoiseImage ( int $noise_type [, int $channel = Imagick::CHANNEL_DEFAULT ] )
Result haxe code
public static inline function adaptiveBlurImage(radius:Float, sigma:Float, ?channel:Int = Imagick.CHANNEL_DEFAULT) : Bool return untyped __call__('adaptiveBlurImage', radius, sigma, channel); public static inline function adaptiveResizeImage(columns:Int, rows:Int, ?bestfit:Bool = Bool) : Bool return untyped __call__('adaptiveResizeImage', columns, rows, bestfit); public static inline function adaptiveSharpenImage(radius:Float, sigma:Float, ?channel:Int = Imagick.CHANNEL_DEFAULT) : Bool return untyped __call__('adaptiveSharpenImage', radius, sigma, channel); public static inline function adaptiveThresholdImage(width:Int, height:Int, offset:Int) : Bool return untyped __call__('adaptiveThresholdImage', width, height, offset); public static inline function addImage(source:Imagick) : Bool return untyped __call__('addImage', source); public static inline function addNoiseImage(noise_type:Int, ?channel:Int = Imagick.CHANNEL_DEFAULT) : Bool return untyped __call__('addNoiseImage', noise_type, channel);