blob: 6fabdda5092ad90da0c1a7dd1f6fa554e78cee71 [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!-- BitmapGraphicExample.mxml -->
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark">
<s:Panel title="Bitmap Graphic Example"
width="75%" height="75%"
horizontalCenter="0" verticalCenter="0">
<s:Group left="10" right="10" top="10" bottom="10">
<!-- Single image, not resized, not repeated. -->
<s:Graphic x="0" y="0">
<s:BitmapImage id="bg1" source="@Embed('assets/Icon12x12.gif')" fillMode="clip"/>
</s:Graphic>
<!-- Single image, scaled to fit specified dimensions. -->
<s:Graphic x="150" y="0">
<s:BitmapImage id="bg2" source="@Embed('assets/Icon12x12.gif')" width="60" height="60" fillMode="scale"/>
</s:Graphic>
<!-- Repeated image to fit specified dimensions. -->
<s:Graphic x="300" y="0">
<s:BitmapImage id="bg3" source="@Embed('assets/Icon12x12.gif')" width="120" height="120" fillMode="repeat"/>
</s:Graphic>
</s:Group>
</s:Panel>
</s:Application>