Using 9-slice scaling to maintain a set border, regardless of how the image itself is resized. : Image Scale « Graphics « Flex






Using 9-slice scaling to maintain a set border, regardless of how the image itself is resized.

           

<!--
Code from Flex 4 Documentation "Using Adobe Flex 4".

This user guide is licensed for use under the terms of the Creative Commons Attribution 
Non-Commercial 3.0 License. 

This License allows users to copy, distribute, and transmit the user guide for noncommercial 
purposes only so long as 
  (1) proper attribution to Adobe is given as the owner of the user guide; and 
  (2) any reuse or distribution of the user guide contains a notice that use of the user guide is governed by these terms. 
The best way to provide notice is to include the following link. 
To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/3.0/

-->


    <!-- embed\Embed9slice.mxml -->
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
    xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx"
    height="1200" width="600">
    <fx:Script> 
         
        [Embed(source="a.gif", 
        scaleGridTop="25", scaleGridBottom="125", 
        scaleGridLeft="25", scaleGridRight="125")] 
        [Bindable] 
        public var imgCls:Class; 
      
    </fx:Script>
    <mx:VBox>
        <mx:Image source="{imgCls}" />
        <mx:Image source="{imgCls}" width="300" height="300" />
        <mx:Image source="{imgCls}" width="450" height="450" />
    </mx:VBox>
</s:Application>

   
    
    
    
    
    
    
    
    
    
    
  








Related examples in the same category

1.Scale an image by setting its width and heightScale an image by setting its width and height
2.Scale an Image with Embed settingScale an Image with Embed setting
3.BitMap ScalingBitMap Scaling
4.Using postLayoutTransformOffsets property to modify the position and scale of a component.Using postLayoutTransformOffsets property to modify the position and scale of a component.