├── LICENSE ├── README.md ├── assets ├── nme.svg └── testPSD1.psd ├── demo ├── expressInstall.swf ├── index.html ├── js │ └── swfobject.js └── psdparser.swf ├── openfl-psd-parser-example.hxproj ├── psdparser.hxproj └── src ├── Main.hx └── com └── durej └── psdparser ├── PSDChannelInfoVO.hx ├── PSDLayer.hx ├── PSDLayerBitmap.hx ├── PSDParser.hx └── PSDStructureNode.hx /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryzed/haxe-psd-parser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryzed/haxe-psd-parser/HEAD/README.md -------------------------------------------------------------------------------- /assets/nme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryzed/haxe-psd-parser/HEAD/assets/nme.svg -------------------------------------------------------------------------------- /assets/testPSD1.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryzed/haxe-psd-parser/HEAD/assets/testPSD1.psd -------------------------------------------------------------------------------- /demo/expressInstall.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryzed/haxe-psd-parser/HEAD/demo/expressInstall.swf -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryzed/haxe-psd-parser/HEAD/demo/index.html -------------------------------------------------------------------------------- /demo/js/swfobject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryzed/haxe-psd-parser/HEAD/demo/js/swfobject.js -------------------------------------------------------------------------------- /demo/psdparser.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryzed/haxe-psd-parser/HEAD/demo/psdparser.swf -------------------------------------------------------------------------------- /openfl-psd-parser-example.hxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryzed/haxe-psd-parser/HEAD/openfl-psd-parser-example.hxproj -------------------------------------------------------------------------------- /psdparser.hxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryzed/haxe-psd-parser/HEAD/psdparser.hxproj -------------------------------------------------------------------------------- /src/Main.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryzed/haxe-psd-parser/HEAD/src/Main.hx -------------------------------------------------------------------------------- /src/com/durej/psdparser/PSDChannelInfoVO.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryzed/haxe-psd-parser/HEAD/src/com/durej/psdparser/PSDChannelInfoVO.hx -------------------------------------------------------------------------------- /src/com/durej/psdparser/PSDLayer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryzed/haxe-psd-parser/HEAD/src/com/durej/psdparser/PSDLayer.hx -------------------------------------------------------------------------------- /src/com/durej/psdparser/PSDLayerBitmap.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryzed/haxe-psd-parser/HEAD/src/com/durej/psdparser/PSDLayerBitmap.hx -------------------------------------------------------------------------------- /src/com/durej/psdparser/PSDParser.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryzed/haxe-psd-parser/HEAD/src/com/durej/psdparser/PSDParser.hx -------------------------------------------------------------------------------- /src/com/durej/psdparser/PSDStructureNode.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryzed/haxe-psd-parser/HEAD/src/com/durej/psdparser/PSDStructureNode.hx --------------------------------------------------------------------------------