<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" xmlns:ns1="com.dougmccune.controls.*" viewSourceURL="srcview/index.html">
<mx:HBox>
    
    <mx:Panel title="Normal Image Component" height="100%" >
        <mx:HBox width="100%">
            <mx:Label width="100%" text="Using URL:" />
            <mx:Image  source="assets/user.png"/>
        </mx:HBox>
        <mx:HBox width="100%">
            <mx:Label width="100%" text="Using @Embed:" />
            <mx:Image source="@Embed(source='assets/user.png')"/>
        </mx:HBox>
    </mx:Panel>
    
    <mx:Panel title="My Image Component" height="100%">
        <mx:HBox width="100%">
            <mx:Label width="100%" text="Using URL:" />
            <ns1:ByteArrayImage source="assets/user.png"/>
        </mx:HBox>
        <mx:HBox width="100%">
            <mx:Label width="100%" text="Using @Embed:" />
            <ns1:ByteArrayImage source="@Embed(source='assets/user.png', mimeType='application/octet-stream')"/>
        </mx:HBox>
        
    </mx:Panel>
    
</mx:HBox>

</mx:Application>