1 2 3 4 5<!DOCTYPE html> 6<html lang="en"> 7<head> 8 <meta charset="utf-8" /> 9 <meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1,shrink-to-fit=no" /> 10 <title>MagickCore, C API: Decorate an Image @ ImageMagick</title> 11 <meta name="application-name" content="ImageMagick" /> 12 <meta name="description" content="Use ImageMagick® to create, edit, compose, or convert bitmap images. You can resize your image, crop it, change its shades and colors, add captions, among other operations." /> 13 <meta name="application-url" content="https://imagemagick.org" /> 14 <meta name="generator" content="PHP" /> 15 <meta name="keywords" content="magickcore, c, api:, decorate, an, image, ImageMagick, PerlMagick, image processing, image, photo, software, Magick++, OpenMP, convert" /> 16 <meta name="rating" content="GENERAL" /> 17 <meta name="robots" content="INDEX, FOLLOW" /> 18 <meta name="generator" content="ImageMagick Studio LLC" /> 19 <meta name="author" content="ImageMagick Studio LLC" /> 20 <meta name="revisit-after" content="2 DAYS" /> 21 <meta name="resource-type" content="document" /> 22 <meta name="copyright" content="Copyright (c) 1999-2019 ImageMagick Studio LLC" /> 23 <meta name="distribution" content="Global" /> 24 <meta name="magick-serial" content="P131-S030410-R485315270133-P82224-A6668-G1245-1" /> 25 <meta name="google-site-verification" content="_bMOCDpkx9ZAzBwb2kF3PRHbfUUdFj2uO8Jd1AXArz4" /> 26 <link href="decorate.html" rel="canonical" /> 27 <link href="../../images/wand.png" rel="icon" /> 28 <link href="../../images/wand.ico" rel="shortcut icon" /> 29 <link href="../assets/magick.css" rel="stylesheet" /> 30</head> 31<body> 32 <header> 33 <nav class="navbar navbar-expand-md navbar-dark fixed-top bg-dark"> 34 <a class="navbar-brand" href="../../"><img class="d-block" id="icon" alt="ImageMagick" width="32" height="32" src="../../images/wand.ico"/></a> 35 <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarsMagick" aria-controls="navbarsMagick" aria-expanded="false" aria-label="Toggle navigation"> 36 <span class="navbar-toggler-icon"></span> 37 </button> 38 39 <div class="navbar-collapse collapse" id="navbarsMagick" style=""> 40 <ul class="navbar-nav mr-auto"> 41 <li class="nav-item "> 42 <a class="nav-link" href="quantize.html">Home <span class="sr-only">(current)</span></a> 43 </li> 44 <li class="nav-item "> 45 <a class="nav-link" href="../../www/download.html">Download</a> 46 </li> 47 <li class="nav-item "> 48 <a class="nav-link" href="../../www/command-line-tools.html">Tools</a> 49 </li> 50 <li class="nav-item "> 51 <a class="nav-link" href="../../www/command-line-processing.html">Command-line</a> 52 </li> 53 <li class="nav-item "> 54 <a class="nav-link" href="../../www/resources.html">Resources</a> 55 </li> 56 <li class="nav-item "> 57 <a class="nav-link" href="../../www/develop.html">Develop</a> 58 </li> 59 <li class="nav-item"> 60 <a class="nav-link" target="_blank" href="https://imagemagick.org/discourse-server/">Community</a> 61 </li> 62 </ul> 63 <form class="form-inline my-2 my-lg-0" action="https://imagemagick.org/script/search.php"> 64 <input class="form-control mr-sm-2" type="text" name="q" placeholder="Search" aria-label="Search"> 65 <button class="btn btn-outline-success my-2 my-sm-0" type="submit" name="sa">Search</button> 66 </form> 67 </div> 68 </nav> 69 <div class="container"> 70 <script async="async" src="https://localhost/pagead/js/adsbygoogle.js"></script> <ins class="adsbygoogle" 71 style="display:block" 72 data-ad-client="ca-pub-3129977114552745" 73 data-ad-slot="6345125851" 74 data-ad-format="auto"></ins> 75 <script> 76 (adsbygoogle = window.adsbygoogle || []).push({}); 77 </script> 78 79 </div> 80 </header> 81 <main class="container"> 82 <div class="magick-template"> 83<div class="magick-header"> 84<p class="text-center"><a href="decorate.html#BorderImage">BorderImage</a> • <a href="decorate.html#FrameImage">FrameImage</a> • <a href="decorate.html#RaiseImage">RaiseImage</a></p> 85 86<h2><a href="../../api/MagickCore/decorate_8c.html" id="BorderImage">BorderImage</a></h2> 87 88<p>BorderImage() surrounds the image with a border of the color defined by the bordercolor member of the image structure. The width and height of the border are defined by the corresponding members of the border_info structure.</p> 89 90<p>The format of the BorderImage method is:</p> 91 92<pre class="text"> 93Image *BorderImage(const Image *image,const RectangleInfo *border_info, 94 const CompositeOperator compose,ExceptionInfo *exception) 95</pre> 96 97<p>A description of each parameter follows:</p> 98 99<dd> 100</dd> 101 102<dd> </dd> 103<dl class="dl-horizontal"> 104<dt>image</dt> 105<dd>the image. </dd> 106 107<dd> </dd> 108<dt>border_info</dt> 109<dd> define the width and height of the border. </dd> 110 111<dd> </dd> 112<dt>compose</dt> 113<dd> the composite operator. </dd> 114 115<dd> </dd> 116<dt>exception</dt> 117<dd>return any errors or warnings in this structure. </dd> 118 119<dd> </dd> 120</dl> 121<h2><a href="../../api/MagickCore/decorate_8c.html" id="FrameImage">FrameImage</a></h2> 122 123<p>FrameImage() adds a simulated three-dimensional border around the image. The color of the border is defined by the matte_color member of image. Members width and height of frame_info specify the border width of the vertical and horizontal sides of the frame. Members inner and outer indicate the width of the inner and outer shadows of the frame.</p> 124 125<p>The format of the FrameImage method is:</p> 126 127<pre class="text"> 128Image *FrameImage(const Image *image,const FrameInfo *frame_info, 129 const CompositeOperator compose,ExceptionInfo *exception) 130</pre> 131 132<p>A description of each parameter follows:</p> 133 134<dd> 135</dd> 136 137<dd> </dd> 138<dl class="dl-horizontal"> 139<dt>image</dt> 140<dd>the image. </dd> 141 142<dd> </dd> 143<dt>frame_info</dt> 144<dd>Define the width and height of the frame and its bevels. </dd> 145 146<dd> </dd> 147<dt>compose</dt> 148<dd>the composite operator. </dd> 149 150<dd> </dd> 151<dt>exception</dt> 152<dd>return any errors or warnings in this structure. </dd> 153 154<dd> </dd> 155</dl> 156<h2><a href="../../api/MagickCore/decorate_8c.html" id="RaiseImage">RaiseImage</a></h2> 157 158<p>RaiseImage() creates a simulated three-dimensional button-like effect by lightening and darkening the edges of the image. Members width and height of raise_info define the width of the vertical and horizontal edge of the effect.</p> 159 160<p>The format of the RaiseImage method is:</p> 161 162<pre class="text"> 163MagickBooleanType RaiseImage(const Image *image, 164 const RectangleInfo *raise_info,const MagickBooleanType raise, 165 ExceptionInfo *exception) 166</pre> 167 168<p>A description of each parameter follows:</p> 169 170<dd> 171</dd> 172 173<dd> </dd> 174<dl class="dl-horizontal"> 175<dt>image</dt> 176<dd>the image. </dd> 177 178<dd> </dd> 179<dt>raise_info</dt> 180<dd>Define the width and height of the raise area. </dd> 181 182<dd> </dd> 183<dt>raise</dt> 184<dd>A value other than zero creates a 3-D raise effect, otherwise it has a lowered effect. </dd> 185 186<dd> </dd> 187<dt>exception</dt> 188<dd>return any errors or warnings in this structure. </dd> 189 190<dd> </dd> 191</dl> 192</div> 193 </div> 194 </main><!-- /.container --> 195 <footer class="magick-footer"> 196 <p><a href="../../www/security-policy.html">Security</a> • 197 <a href="../../www/architecture.html">Architecture</a> • 198 <a href="../../www/links.html">Related</a> • 199 <a href="../../www/sitemap.html">Sitemap</a> 200 201 <a href="decorate.html#"><img class="d-inline" id="wand" alt="And Now a Touch of Magick" width="16" height="16" src="../../images/wand.ico"/></a> 202 203 <a href="http://pgp.mit.edu/pks/lookup?op=get&search=0x89AB63D48277377A">Public Key</a> • 204 <a href="../../www/support.html">Donate</a> • 205 <a href="../../www/contact.html">Contact Us</a> 206 <br/> 207 <small>© 1999-2019 ImageMagick Studio LLC</small></p> 208 </footer> 209 210 <!-- Javascript assets --> 211 <script src="../assets/magick.js" crossorigin="anonymous"></script> 212 <script>window.jQuery || document.write('<script src="https://localhost/ajax/libs/jquery/3.3.1/jquery.min.js"><\/script>')</script> 213</body> 214</html> 215<!-- Magick Cache 4th January 2019 05:48 -->