PhpToHaxe - tool for helping use php from haxe
Code to code
Code to extern
PhpDoc methods
PhpDoc consts
Source PhpDoc consts
IMG_GIF (integer) Used as a return value by imagetypes() IMG_JPG (integer) Used as a return value by imagetypes() imagick::COLOR_BLACK (integer) Black color imagick::COLOR_BLUE (integer) Blue color
Result haxe code
class { /** * Used as a return value by imagetypes() */ public static var IMG_GIF(get, never) : Int; private static inline function get_IMG_GIF() : Int return untyped __php__("IMG_GIF"); /** * Used as a return value by imagetypes() */ public static var IMG_JPG(get, never) : Int; private static inline function get_IMG_JPG() : Int return untyped __php__("IMG_JPG"); } class imagick { /** * Black color */ public static var COLOR_BLACK(get, never) : Int; private static inline function get_COLOR_BLACK() : Int return untyped __php__("imagick::COLOR_BLACK"); /** * Blue color */ public static var COLOR_BLUE(get, never) : Int; private static inline function get_COLOR_BLUE() : Int return untyped __php__("imagick::COLOR_BLUE"); }