1page.title=Draw 9-patch 2parent.title=Tools 3parent.link=index.html 4@jd:body 5 6<p>The Draw 9-patch tool allows you to easily create a 7 {@link android.graphics.NinePatch} graphic using a WYSIWYG editor.</p> 8<p>For an introduction to Nine-patch graphics and how they work, please read 9the section about Nine-patch in the 10<a href="{@docRoot}guide/topics/graphics/2d-graphics.html#nine-patch">2D Graphics</a> 11document.</p> 12 13<img src="{@docRoot}images/draw9patch-norm.png" style="float:right" alt="" height="300" width="341" 14/> 15 16<p>Here's a quick guide to create a Nine-patch graphic using the Draw 9-patch tool. 17You'll need the PNG image with which you'd like to create a NinePatch.</p> 18 19<ol> 20 <li>From a terminal, launch the <code>draw9patch</code> application from your SDK 21 <code>/tools</code> directory. 22 </li> 23 <li>Drag your PNG image into the Draw 9-patch window 24 (or <strong>File</strong> > <strong>Open 9-patch...</strong> to locate the file). 25 Your workspace will now open. 26 <p>The left pane is your drawing area, in which you can edit the lines for the 27 stretchable patches and content area. The right 28 pane is the preview area, where you can preview your graphic when stretched.</p> 29 </li> 30 <li>Click within the 1-pixel perimeter to draw the lines that define the stretchable 31 patches and (optional) content area. Right-click (or hold Shift and click, on Mac) to erase 32 previously drawn lines. 33 </li> 34 <li>When done, select <strong>File</strong> > <strong>Save 9-patch...</strong> 35 <p>Your image will be saved with the <code>.9.png</code> file name.</p> 36 </li> 37</ol> 38 <p class="note"><strong>Note:</strong> A normal PNG file (<code>*.png</code>) will be 39 loaded with an empty one-pixel border added around the image, in which you can draw 40 the stretchable patches and content area. 41 A previously saved 9-patch file (<code>*.9.png</code>) will be loaded as-is, 42 with no drawing area added, because it already exists.</p> 43 44<img src="{@docRoot}images/draw9patch-bad.png" style="float:right;clear:both" alt="" height="300" width="341" 45/> 46 47<p>Optional controls include:</p> 48<ul> 49 <li><strong>Zoom</strong>: Adjust the zoom level of the graphic in the drawing area.</li> 50 <li><strong>Patch scale</strong>: Adjust the scale of the images in the preview area.</li> 51 <li><strong>Show lock</strong>: Visualize the non-drawable area of the graphic on mouse-over.</li> 52 <li><strong>Show patches</strong>: Preview the stretchable patches in the drawing area (pink is a 53 stretchable patch).</li> 54 <li><strong>Show content</strong>: Highlight the content area in the preview images 55 (purple is the area in which content is allowed).</li> 56 <li><strong>Show bad patches</strong>: Adds a red border around patch areas that may 57 produce artifacts in the graphic when stretched. Visual coherence of your stretched 58 image will be maintained if you eliminate all bad patches.</li> 59<ul> 60