command-line-options.html 391 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1" />
  6. <title>ImageMagick – Command-line Options</title>
  7. <meta name="application-name" content="ImageMagick" />
  8. <meta name="description" content="" />
  9. <meta name="application-url" content="https://imagemagick.org" />
  10. <meta name="generator" content="PHP" />
  11. <meta name="keywords" content="command-line, options, image processing software" />
  12. <meta name="rating" content="GENERAL" />
  13. <meta name="robots" content="INDEX, FOLLOW" />
  14. <meta name="generator" content="ImageMagick Studio LLC" />
  15. <meta name="author" content="ImageMagick Studio LLC" />
  16. <meta name="revisit-after" content="2 DAYS" />
  17. <meta name="resource-type" content="document" />
  18. <meta name="copyright" content="Copyright (c) 1999 ImageMagick Studio LLC" />
  19. <meta name="distribution" content="Global" />
  20. <meta name="magick-serial" content="P131-S030410-R485315270133-P82224-A6668-G1245-1" />
  21. <meta property='og:url' content='../' />
  22. <meta property='og:title' content='ImageMagick' />
  23. <meta property='og:image' content='../images/logo.png' />
  24. <meta property='og:type' content='website' />
  25. <meta property='og:site_name' content='ImageMagick' />
  26. <meta property='og:description' content="Create, Edit, Compose, or Convert Digital Images" />
  27. <meta name="google-site-verification" content="_bMOCDpkx9ZAzBwb2kF3PRHbfUUdFj2uO8Jd1AXArz4" />
  28. <link href="../www/command-line-options.html" rel="canonical" />
  29. <link href="../images/wand.png" rel="icon" />
  30. <link href="../images/wand.ico" rel="shortcut icon" />
  31. <link href="assets/magick.css" rel="stylesheet" />
  32. </head>
  33. <body>
  34. <nav class="navbar navbar-expand-md navbar-dark bg-dark fixed-top">
  35. <div class="container-fluid">
  36. <a class="navbar-brand" href="../index.html"><img class="d-block" id="icon" alt="ImageMagick" width="32" height="32" src="../images/wand.ico"/></a>
  37. <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#magick-navbars" aria-controls="magick-navbars" aria-expanded="false" aria-label="Toggle navigation">
  38. <span class="navbar-toggler-icon"></span>
  39. </button>
  40. <div class="collapse navbar-collapse" id="magick-navbars">
  41. <ul class="navbar-nav me-auto mb-2 mb-md-0">
  42. <li class="nav-item">
  43. <a class="nav-link " href="download.html">Download</a>
  44. </li>
  45. <li class="nav-item">
  46. <a class="nav-link " href="command-line-tools.html">Tools</a>
  47. </li>
  48. <li class="nav-item">
  49. <a class="nav-link " href="command-line-processing.html">CLI</a>
  50. </li>
  51. <li class="nav-item">
  52. <a class="nav-link " href="develop.html">Develop</a>
  53. </li>
  54. <li class="nav-item">
  55. <a class="nav-link" target="_blank" href="https://github.com/ImageMagick/ImageMagick/discussions">Community</a>
  56. </li>
  57. <li class="nav-item">
  58. <iframe src="https://github.com/sponsors/ImageMagick/button" title="Sponsor ImageMagick" height="35" width="107" style="border: 0;"></iframe>
  59. </li>
  60. </ul>
  61. <form class="d-flex form-inline" action="../www/search.html">
  62. <input class="form-control me-2" type="text" name="q" placeholder="Search" aria-label="Search">
  63. <button class="btn btn-outline-success" type="submit" name="sa">Search</button>
  64. </form>
  65. </div>
  66. </div>
  67. </nav>
  68. <div class="container">
  69. <script async="async" src="http://localhost/pagead/js/adsbygoogle.js"></script>
  70. <ins class="adsbygoogle"
  71. style="display:block"
  72. data-ad-client="ca-pub-3129977114552745"
  73. data-ad-slot="6345125851"
  74. data-full-width-responsive="true"
  75. data-ad-format="horizontal"></ins>
  76. <script>
  77. (adsbygoogle = window.adsbygoogle || []).push({});
  78. </script>
  79. </div>
  80. <main class="container">
  81. <div class="magick-template">
  82. <div class="magick-header">
  83. <h1 class="text-center">Annotated List of Command-line Options</h1>
  84. <br/>
  85. <div class="btn-group">
  86. <button class="btn btn-secondary dropdown-toggle" type="button" id="defaultDropdown" data-bs-toggle="dropdown" data-bs-auto-close="true" aria-expanded="false">
  87. Select CLI Option
  88. </button>
  89. <ul class="dropdown-menu pre-scrollable" aria-labelledby="defaultDropdown">
  90. <li><a class="dropdown-divider" href="command-line-options.html#"><b>A</b></a></li>
  91. <li><a class="dropdown-item" href="command-line-options.html#adaptive-blur">adaptive-blur</a></li>
  92. <li><a class="dropdown-item" href="command-line-options.html#adaptive-resize">adaptive-resize</a></li>
  93. <li><a class="dropdown-item" href="command-line-options.html#adaptive-sharpen">adaptive-sharpen</a></li>
  94. <li><a class="dropdown-item" href="command-line-options.html#adjoin">adjoin</a></li>
  95. <li><a class="dropdown-item" href="command-line-options.html#affine">affine</a></li>
  96. <li><a class="dropdown-item" href="command-line-options.html#alpha">alpha</a></li>
  97. <li><a class="dropdown-item" href="command-line-options.html#annotate">annotate</a></li>
  98. <li><a class="dropdown-item" href="command-line-options.html#antialias">antialias</a></li>
  99. <li><a class="dropdown-item" href="command-line-options.html#append">append</a></li>
  100. <li><a class="dropdown-item" href="command-line-options.html#attenuate">attenuate</a></li>
  101. <li><a class="dropdown-item" href="command-line-options.html#authenticate">authenticate</a></li>
  102. <li><a class="dropdown-item" href="command-line-options.html#auto-gamma">auto-gamma</a></li>
  103. <li><a class="dropdown-item" href="command-line-options.html#auto-level">auto-level</a></li>
  104. <li><a class="dropdown-item" href="command-line-options.html#auto-orient">auto-orient</a></li>
  105. <li><a class="dropdown-item" href="command-line-options.html#auto-threshold">auto-threshold</a></li>
  106. <li><a class="dropdown-divider" href="command-line-options.html#"><b>B</b></a></li>
  107. <li><a class="dropdown-item" href="command-line-options.html#backdrop">backdrop</a></li>
  108. <li><a class="dropdown-item" href="command-line-options.html#background">background</a></li>
  109. <li><a class="dropdown-item" href="command-line-options.html#bench">bench</a></li>
  110. <li><a class="dropdown-item" href="command-line-options.html#bias">bias</a></li>
  111. <li><a class="dropdown-item" href="command-line-options.html#bilateral-blur">bilateral-blur</a></li>
  112. <li><a class="dropdown-item" href="command-line-options.html#black-point-compensation">black-point-compensation</a></li>
  113. <li><a class="dropdown-item" href="command-line-options.html#black-threshold">black-threshold</a></li>
  114. <li><a class="dropdown-item" href="command-line-options.html#blend">blend</a></li>
  115. <li><a class="dropdown-item" href="command-line-options.html#blue-primary">blue-primary</a></li>
  116. <li><a class="dropdown-item" href="command-line-options.html#blue-shift">blue-shift</a></li>
  117. <li><a class="dropdown-item" href="command-line-options.html#blur">blur</a></li>
  118. <li><a class="dropdown-item" href="command-line-options.html#border">border</a></li>
  119. <li><a class="dropdown-item" href="command-line-options.html#bordercolor">bordercolor</a></li>
  120. <li><a class="dropdown-item" href="command-line-options.html#borderwidth">borderwidth</a></li>
  121. <li><a class="dropdown-item" href="command-line-options.html#brightness-contrast">brightness-contrast</a></li>
  122. <li><a class="dropdown-divider" href="command-line-options.html#"><b>C</b></a></li>
  123. <li><a class="dropdown-item" href="command-line-options.html#cache">cache</a></li>
  124. <li><a class="dropdown-item" href="command-line-options.html#canny">canny</a></li>
  125. <li><a class="dropdown-item" href="command-line-options.html#caption">caption</a></li>
  126. <li><a class="dropdown-item" href="command-line-options.html#cdl">cdl</a></li>
  127. <li><a class="dropdown-item" href="command-line-options.html#channel">channel</a></li>
  128. <li><a class="dropdown-item" href="command-line-options.html#channel-fx">channel-fx</a></li>
  129. <li><a class="dropdown-item" href="command-line-options.html#charcoal">charcoal</a></li>
  130. <li><a class="dropdown-item" href="command-line-options.html#chop">chop</a></li>
  131. <li><a class="dropdown-item" href="command-line-options.html#clahe">clahe</a></li>
  132. <li><a class="dropdown-item" href="command-line-options.html#clamp">clamp</a></li>
  133. <li><a class="dropdown-item" href="command-line-options.html#clip">clip</a></li>
  134. <li><a class="dropdown-item" href="command-line-options.html#clip-mask">clip-mask</a></li>
  135. <li><a class="dropdown-item" href="command-line-options.html#clip-path">clip-path</a></li>
  136. <li><a class="dropdown-item" href="command-line-options.html#clone">clone</a></li>
  137. <li><a class="dropdown-item" href="command-line-options.html#clut">clut</a></li>
  138. <li><a class="dropdown-item" href="command-line-options.html#coalesce">coalesce</a></li>
  139. <li><a class="dropdown-item" href="command-line-options.html#colorize">colorize</a></li>
  140. <li><a class="dropdown-item" href="command-line-options.html#colormap">colormap</a></li>
  141. <li><a class="dropdown-item" href="command-line-options.html#color-matrix">color-matrix</a></li>
  142. <li><a class="dropdown-item" href="command-line-options.html#colors">colors</a></li>
  143. <li><a class="dropdown-item" href="command-line-options.html#colorspace">colorspace</a></li>
  144. <li><a class="dropdown-item" href="command-line-options.html#color-threshold">color-threshold</a></li>
  145. <li><a class="dropdown-item" href="command-line-options.html#combine">combine</a></li>
  146. <li><a class="dropdown-item" href="command-line-options.html#comment">comment</a></li>
  147. <li><a class="dropdown-item" href="command-line-options.html#compare">compare</a></li>
  148. <li><a class="dropdown-item" href="command-line-options.html#complex">complex</a></li>
  149. <li><a class="dropdown-item" href="command-line-options.html#compose">compose</a></li>
  150. <li><a class="dropdown-item" href="command-line-options.html#composite">composite</a></li>
  151. <li><a class="dropdown-item" href="command-line-options.html#compress">compress</a></li>
  152. <li><a class="dropdown-item" href="command-line-options.html#connected-components">connected-components</a></li>
  153. <li><a class="dropdown-item" href="command-line-options.html#contrast">contrast</a></li>
  154. <li><a class="dropdown-item" href="command-line-options.html#contrast-stretch">contrast-stretch</a></li>
  155. <li><a class="dropdown-item" href="command-line-options.html#convolve">convolve</a></li>
  156. <li><a class="dropdown-item" href="command-line-options.html#copy">copy</a></li>
  157. <li><a class="dropdown-item" href="command-line-options.html#crop">crop</a></li>
  158. <li><a class="dropdown-item" href="command-line-options.html#cycle">cycle</a></li>
  159. <li><a class="dropdown-divider" href="command-line-options.html#"><b>D</b></a></li>
  160. <li><a class="dropdown-item" href="command-line-options.html#debug">debug</a></li>
  161. <li><a class="dropdown-item" href="command-line-options.html#decipher">decipher</a></li>
  162. <li><a class="dropdown-item" href="command-line-options.html#deconstruct">deconstruct</a></li>
  163. <li><a class="dropdown-item" href="command-line-options.html#define">define</a></li>
  164. <li><a class="dropdown-item" href="command-line-options.html#delay">delay</a></li>
  165. <li><a class="dropdown-item" href="command-line-options.html#delete">delete</a></li>
  166. <li><a class="dropdown-item" href="command-line-options.html#density">density</a></li>
  167. <li><a class="dropdown-item" href="command-line-options.html#depth">depth</a></li>
  168. <li><a class="dropdown-item" href="command-line-options.html#descend">descend</a></li>
  169. <li><a class="dropdown-item" href="command-line-options.html#deskew">deskew</a></li>
  170. <li><a class="dropdown-item" href="command-line-options.html#despeckle">despeckle</a></li>
  171. <li><a class="dropdown-item" href="command-line-options.html#direction">direction</a></li>
  172. <li><a class="dropdown-item" href="command-line-options.html#displace">displace</a></li>
  173. <li><a class="dropdown-item" href="command-line-options.html#display">display</a></li>
  174. <li><a class="dropdown-item" href="command-line-options.html#dispose">dispose</a></li>
  175. <li><a class="dropdown-item" href="command-line-options.html#dissimilarity-threshold">dissimilarity-threshold</a></li>
  176. <li><a class="dropdown-item" href="command-line-options.html#dissolve">dissolve</a></li>
  177. <li><a class="dropdown-item" href="command-line-options.html#distort">distort</a></li>
  178. <li><a class="dropdown-item" href="command-line-options.html#distribute-cache">distribute-cache</a></li>
  179. <li><a class="dropdown-item" href="command-line-options.html#dither">dither</a></li>
  180. <li><a class="dropdown-item" href="command-line-options.html#draw">draw</a></li>
  181. <li><a class="dropdown-item" href="command-line-options.html#duplicate">duplicate</a></li>
  182. <li><a class="dropdown-divider" href="command-line-options.html#"><b>E</b></a></li>
  183. <li><a class="dropdown-item" href="command-line-options.html#edge">edge</a></li>
  184. <li><a class="dropdown-item" href="command-line-options.html#emboss">emboss</a></li>
  185. <li><a class="dropdown-item" href="command-line-options.html#encipher">encipher</a></li>
  186. <li><a class="dropdown-item" href="command-line-options.html#encoding">encoding</a></li>
  187. <li><a class="dropdown-item" href="command-line-options.html#endian">endian</a></li>
  188. <li><a class="dropdown-item" href="command-line-options.html#enhance">enhance</a></li>
  189. <li><a class="dropdown-item" href="command-line-options.html#equalize">equalize</a></li>
  190. <li><a class="dropdown-item" href="command-line-options.html#evaluate">evaluate</a></li>
  191. <li><a class="dropdown-item" href="command-line-options.html#evaluate-sequence">evaluate-sequence</a></li>
  192. <li><a class="dropdown-item" href="command-line-options.html#exit">exit</a></li>
  193. <li><a class="dropdown-item" href="command-line-options.html#extent">extent</a></li>
  194. <li><a class="dropdown-item" href="command-line-options.html#extract">extract</a></li>
  195. <li><a class="dropdown-divider" href="command-line-options.html#"><b>F</b></a></li>
  196. <li><a class="dropdown-item" href="command-line-options.html#family">family</a></li>
  197. <li><a class="dropdown-item" href="command-line-options.html#features">features</a></li>
  198. <li><a class="dropdown-item" href="command-line-options.html#fft">fft</a></li>
  199. <li><a class="dropdown-item" href="command-line-options.html#fill">fill</a></li>
  200. <li><a class="dropdown-item" href="command-line-options.html#filter">filter</a></li>
  201. <li><a class="dropdown-item" href="command-line-options.html#flatten">flatten</a></li>
  202. <li><a class="dropdown-item" href="command-line-options.html#flip">flip</a></li>
  203. <li><a class="dropdown-item" href="command-line-options.html#floodfill">floodfill</a></li>
  204. <li><a class="dropdown-item" href="command-line-options.html#flop">flop</a></li>
  205. <li><a class="dropdown-item" href="command-line-options.html#font">font</a></li>
  206. <li><a class="dropdown-item" href="command-line-options.html#foreground">foreground</a></li>
  207. <li><a class="dropdown-item" href="command-line-options.html#format">format</a></li>
  208. <li><a class="dropdown-item" href="command-line-options.html#format_identify">format[identify]</a></li>
  209. <li><a class="dropdown-item" href="command-line-options.html#frame">frame</a></li>
  210. <li><a class="dropdown-item" href="command-line-options.html#frame_import_">frame[import]</a></li>
  211. <li><a class="dropdown-item" href="command-line-options.html#function">function</a></li>
  212. <li><a class="dropdown-item" href="command-line-options.html#fuzz">fuzz</a></li>
  213. <li><a class="dropdown-item" href="command-line-options.html#fx">fx</a></li>
  214. <li><a class="dropdown-divider" href="command-line-options.html#"><b>G</b></a></li>
  215. <li><a class="dropdown-item" href="command-line-options.html#gamma">gamma</a></li>
  216. <li><a class="dropdown-item" href="command-line-options.html#gaussian-blur">gaussian-blur</a></li>
  217. <li><a class="dropdown-item" href="command-line-options.html#geometry">geometry</a></li>
  218. <li><a class="dropdown-item" href="command-line-options.html#gravity">gravity</a></li>
  219. <li><a class="dropdown-item" href="command-line-options.html#grayscale">grayscale</a></li>
  220. <li><a class="dropdown-item" href="command-line-options.html#green-primary">green-primary</a></li>
  221. <li><a class="dropdown-divider" href="command-line-options.html#"><b>H</b></a></li>
  222. <li><a class="dropdown-item" href="command-line-options.html#hald-clut">hald-clut</a></li>
  223. <li><a class="dropdown-item" href="command-line-options.html#help">help</a></li>
  224. <li><a class="dropdown-item" href="command-line-options.html#highlight-color">highlight-color</a></li>
  225. <li><a class="dropdown-item" href="command-line-options.html#hough-lines">hough-lines</a></li>
  226. <li><a class="dropdown-divider" href="command-line-options.html#"><b>I</b></a></li>
  227. <li><a class="dropdown-item" href="command-line-options.html#iconGeometry">iconGeometry</a></li>
  228. <li><a class="dropdown-item" href="command-line-options.html#iconic">iconic</a></li>
  229. <li><a class="dropdown-item" href="command-line-options.html#identify">identify</a></li>
  230. <li><a class="dropdown-item" href="command-line-options.html#ift">ift</a></li>
  231. <li><a class="dropdown-item" href="command-line-options.html#illuminant">illuminant</a></li>
  232. <li><a class="dropdown-item" href="command-line-options.html#immutable">immutable</a></li>
  233. <li><a class="dropdown-item" href="command-line-options.html#implode">implode</a></li>
  234. <li><a class="dropdown-item" href="command-line-options.html#insert">insert</a></li>
  235. <li><a class="dropdown-item" href="command-line-options.html#intensity">intensity</a></li>
  236. <li><a class="dropdown-item" href="command-line-options.html#intent">intent</a></li>
  237. <li><a class="dropdown-item" href="command-line-options.html#interlace">interlace</a></li>
  238. <li><a class="dropdown-item" href="command-line-options.html#interline-spacing">interline-spacing</a></li>
  239. <li><a class="dropdown-item" href="command-line-options.html#interpolate">interpolate</a></li>
  240. <li><a class="dropdown-item" href="command-line-options.html#interpolative-resize">interpolative-resize</a></li>
  241. <li><a class="dropdown-item" href="command-line-options.html#interword-spacing">interword-spacing</a></li>
  242. <li><a class="dropdown-item" href="command-line-options.html#integral">integral</a></li>
  243. <li><a class="dropdown-divider" href="command-line-options.html#"><b>K</b></a></li>
  244. <li><a class="dropdown-item" href="command-line-options.html#kerning">kerning</a></li>
  245. <li><a class="dropdown-item" href="command-line-options.html#kmeans">kmeans</a></li>
  246. <li><a class="dropdown-item" href="command-line-options.html#kuwahara">kuwahara</a></li>
  247. <li><a class="dropdown-divider" href="command-line-options.html#"><b>L</b></a></li>
  248. <li><a class="dropdown-item" href="command-line-options.html#label">label</a></li>
  249. <li><a class="dropdown-item" href="command-line-options.html#lat">lat</a></li>
  250. <li><a class="dropdown-item" href="command-line-options.html#layers">layers</a></li>
  251. <li><a class="dropdown-item" href="command-line-options.html#level">level</a></li>
  252. <li><a class="dropdown-item" href="command-line-options.html#level-colors">level-colors</a></li>
  253. <li><a class="dropdown-item" href="command-line-options.html#limit">limit</a></li>
  254. <li><a class="dropdown-item" href="command-line-options.html#linear-stretch">linear-stretch</a></li>
  255. <li><a class="dropdown-item" href="command-line-options.html#linewidth">linewidth</a></li>
  256. <li><a class="dropdown-item" href="command-line-options.html#liquid-rescale">liquid-rescale</a></li>
  257. <li><a class="dropdown-item" href="command-line-options.html#list">list</a></li>
  258. <li><a class="dropdown-item" href="command-line-options.html#log">log</a></li>
  259. <li><a class="dropdown-item" href="command-line-options.html#loop">loop</a></li>
  260. <li><a class="dropdown-item" href="command-line-options.html#lowlight-color">lowlight-color</a></li>
  261. <li><a class="dropdown-divider" href="command-line-options.html#"><b>M</b></a></li>
  262. <li><a class="dropdown-item" href="command-line-options.html#magnify">magnify</a></li>
  263. <li><a class="dropdown-item" href="command-line-options.html#map">map</a></li>
  264. <li><a class="dropdown-item" href="command-line-options.html#map_stream_">map[stream]</a></li>
  265. <li><a class="dropdown-item" href="command-line-options.html#mattecolor">mattecolor</a></li>
  266. <li><a class="dropdown-item" href="command-line-options.html#median">median</a></li>
  267. <li><a class="dropdown-item" href="command-line-options.html#mean-shift">mean-shift</a></li>
  268. <li><a class="dropdown-item" href="command-line-options.html#metric">metric</a></li>
  269. <li><a class="dropdown-item" href="command-line-options.html#mode">mode</a></li>
  270. <li><a class="dropdown-item" href="command-line-options.html#modulate">modulate</a></li>
  271. <li><a class="dropdown-item" href="command-line-options.html#moments">moments</a></li>
  272. <li><a class="dropdown-item" href="command-line-options.html#monitor">monitor</a></li>
  273. <li><a class="dropdown-item" href="command-line-options.html#monochrome">monochrome</a></li>
  274. <li><a class="dropdown-item" href="command-line-options.html#morph">morph</a></li>
  275. <li><a class="dropdown-item" href="command-line-options.html#morphology">morphology</a></li>
  276. <li><a class="dropdown-item" href="command-line-options.html#mosaic">mosaic</a></li>
  277. <li><a class="dropdown-item" href="command-line-options.html#motion-blur">motion-blur</a></li>
  278. <li><a class="dropdown-divider" href="command-line-options.html#"><b>N</b></a></li>
  279. <li><a class="dropdown-item" href="command-line-options.html#name">name</a></li>
  280. <li><a class="dropdown-item" href="command-line-options.html#negate">negate</a></li>
  281. <li><a class="dropdown-item" href="command-line-options.html#noise">noise</a></li>
  282. <li><a class="dropdown-item" href="command-line-options.html#normalize">normalize</a></li>
  283. <li><a class="dropdown-divider" href="command-line-options.html#"><b>O</b></a></li>
  284. <li><a class="dropdown-item" href="command-line-options.html#opaque">opaque</a></li>
  285. <li><a class="dropdown-item" href="command-line-options.html#ordered-dither">ordered-dither</a></li>
  286. <li><a class="dropdown-item" href="command-line-options.html#orient">orient</a></li>
  287. <li><a class="dropdown-divider" href="command-line-options.html#"><b>P</b></a></li>
  288. <li><a class="dropdown-item" href="command-line-options.html#page">page</a></li>
  289. <li><a class="dropdown-item" href="command-line-options.html#paint">paint</a></li>
  290. <li><a class="dropdown-item" href="command-line-options.html#path">path</a></li>
  291. <li><a class="dropdown-item" href="command-line-options.html#pause_animate_">pause[animate]</a></li>
  292. <li><a class="dropdown-item" href="command-line-options.html#pause_import_">pause[import]</a></li>
  293. <li><a class="dropdown-item" href="command-line-options.html#perceptible">perceptible</a></li>
  294. <li><a class="dropdown-item" href="command-line-options.html#ping">ping</a></li>
  295. <li><a class="dropdown-item" href="command-line-options.html#pointsize">pointsize</a></li>
  296. <li><a class="dropdown-item" href="command-line-options.html#polaroid">polaroid</a></li>
  297. <li><a class="dropdown-item" href="command-line-options.html#poly">poly</a></li>
  298. <li><a class="dropdown-item" href="command-line-options.html#posterize">posterize</a></li>
  299. <li><a class="dropdown-item" href="command-line-options.html#precision">precision</a></li>
  300. <li><a class="dropdown-item" href="command-line-options.html#preview">preview</a></li>
  301. <li><a class="dropdown-item" href="command-line-options.html#print">print</a></li>
  302. <li><a class="dropdown-item" href="command-line-options.html#process">process</a></li>
  303. <li><a class="dropdown-item" href="command-line-options.html#profile">profile</a></li>
  304. <li><a class="dropdown-divider" href="command-line-options.html#"><b>Q</b></a></li>
  305. <li><a class="dropdown-item" href="command-line-options.html#quality">quality</a></li>
  306. <li><a class="dropdown-item" href="command-line-options.html#quantize">quantize</a></li>
  307. <li><a class="dropdown-item" href="command-line-options.html#quiet">quiet</a></li>
  308. <li><a class="dropdown-divider" href="command-line-options.html#"><b>R</b></a></li>
  309. <li><a class="dropdown-item" href="command-line-options.html#raise">raise</a></li>
  310. <li><a class="dropdown-item" href="command-line-options.html#random-threshold">random-threshold</a></li>
  311. <li><a class="dropdown-item" href="command-line-options.html#range-threshold">range-threshold</a></li>
  312. <li><a class="dropdown-item" href="command-line-options.html#read">read</a></li>
  313. <li><a class="dropdown-item" href="command-line-options.html#read-mask">read-mask</a></li>
  314. <li><a class="dropdown-item" href="command-line-options.html#red-primary">red-primary</a></li>
  315. <li><a class="dropdown-item" href="command-line-options.html#regard-warnings">regard-warnings</a></li>
  316. <li><a class="dropdown-item" href="command-line-options.html#region">region</a></li>
  317. <li><a class="dropdown-item" href="command-line-options.html#remap">remap</a></li>
  318. <li><a class="dropdown-item" href="command-line-options.html#remote">remote</a></li>
  319. <li><a class="dropdown-item" href="command-line-options.html#render">render</a></li>
  320. <li><a class="dropdown-item" href="command-line-options.html#repage">repage</a></li>
  321. <li><a class="dropdown-item" href="command-line-options.html#resample">resample</a></li>
  322. <li><a class="dropdown-item" href="command-line-options.html#reshape">reshape</a></li>
  323. <li><a class="dropdown-item" href="command-line-options.html#resize">resize</a></li>
  324. <li><a class="dropdown-item" href="command-line-options.html#respect-parentheses">respect-parentheses</a></li>
  325. <li><a class="dropdown-item" href="command-line-options.html#reverse">reverse</a></li>
  326. <li><a class="dropdown-item" href="command-line-options.html#roll">roll</a></li>
  327. <li><a class="dropdown-item" href="command-line-options.html#rotate">rotate</a></li>
  328. <li><a class="dropdown-item" href="command-line-options.html#rotational-blur">rotational-blur</a></li>
  329. <li><a class="dropdown-divider" href="command-line-options.html#"><b>S</b></a></li>
  330. <li><a class="dropdown-item" href="command-line-options.html#sample">sample</a></li>
  331. <li><a class="dropdown-item" href="command-line-options.html#sampling-factor">sampling-factor</a></li>
  332. <li><a class="dropdown-item" href="command-line-options.html#scale">scale</a></li>
  333. <li><a class="dropdown-item" href="command-line-options.html#scene">scene</a></li>
  334. <li><a class="dropdown-item" href="command-line-options.html#screen">screen</a></li>
  335. <li><a class="dropdown-item" href="command-line-options.html#script">script</a></li>
  336. <li><a class="dropdown-item" href="command-line-options.html#seed">seed</a></li>
  337. <li><a class="dropdown-item" href="command-line-options.html#segment">segment</a></li>
  338. <li><a class="dropdown-item" href="command-line-options.html#selective-blur">selective-blur</a></li>
  339. <li><a class="dropdown-item" href="command-line-options.html#separate">separate</a></li>
  340. <li><a class="dropdown-item" href="command-line-options.html#sepia-tone">sepia-tone</a></li>
  341. <li><a class="dropdown-item" href="command-line-options.html#set">set</a></li>
  342. <li><a class="dropdown-item" href="command-line-options.html#shade">shade</a></li>
  343. <li><a class="dropdown-item" href="command-line-options.html#shadow">shadow</a></li>
  344. <li><a class="dropdown-item" href="command-line-options.html#shared-memory">shared-memory</a></li>
  345. <li><a class="dropdown-item" href="command-line-options.html#sharpen">sharpen</a></li>
  346. <li><a class="dropdown-item" href="command-line-options.html#shave">shave</a></li>
  347. <li><a class="dropdown-item" href="command-line-options.html#shear">shear</a></li>
  348. <li><a class="dropdown-item" href="command-line-options.html#sigmoidal-contrast">sigmoidal-contrast</a></li>
  349. <li><a class="dropdown-item" href="command-line-options.html#silent">silent</a></li>
  350. <li><a class="dropdown-item" href="command-line-options.html#similarity-threshold">similarity-threshold</a></li>
  351. <li><a class="dropdown-item" href="command-line-options.html#size">size</a></li>
  352. <li><a class="dropdown-item" href="command-line-options.html#sketch">sketch</a></li>
  353. <li><a class="dropdown-item" href="command-line-options.html#smush">smush</a></li>
  354. <li><a class="dropdown-item" href="command-line-options.html#snaps">snaps</a></li>
  355. <li><a class="dropdown-item" href="command-line-options.html#solarize">solarize</a></li>
  356. <li><a class="dropdown-item" href="command-line-options.html#sort-pixels">sort-pixels</a></li>
  357. <li><a class="dropdown-item" href="command-line-options.html#sparse-color">sparse-color</a></li>
  358. <li><a class="dropdown-item" href="command-line-options.html#splice">splice</a></li>
  359. <li><a class="dropdown-item" href="command-line-options.html#spread">spread</a></li>
  360. <li><a class="dropdown-item" href="command-line-options.html#statistic">statistic</a></li>
  361. <li><a class="dropdown-item" href="command-line-options.html#stegano">stegano</a></li>
  362. <li><a class="dropdown-item" href="command-line-options.html#stereo">stereo</a></li>
  363. <li><a class="dropdown-item" href="command-line-options.html#storage-type">storage-type</a></li>
  364. <li><a class="dropdown-item" href="command-line-options.html#stretch">stretch</a></li>
  365. <li><a class="dropdown-item" href="command-line-options.html#strip">strip</a></li>
  366. <li><a class="dropdown-item" href="command-line-options.html#stroke">stroke</a></li>
  367. <li><a class="dropdown-item" href="command-line-options.html#strokewidth">strokewidth</a></li>
  368. <li><a class="dropdown-item" href="command-line-options.html#style">style</a></li>
  369. <li><a class="dropdown-item" href="command-line-options.html#subimage-search">subimage-search</a></li>
  370. <li><a class="dropdown-item" href="command-line-options.html#swap">swap</a></li>
  371. <li><a class="dropdown-item" href="command-line-options.html#swirl">swirl</a></li>
  372. <li><a class="dropdown-item" href="command-line-options.html#synchronize">synchronize</a></li>
  373. <li><a class="dropdown-divider" href="command-line-options.html#"><b>T</b></a></li>
  374. <li><a class="dropdown-item" href="command-line-options.html#taint">taint</a></li>
  375. <li><a class="dropdown-item" href="command-line-options.html#text-font">text-font</a></li>
  376. <li><a class="dropdown-item" href="command-line-options.html#texture">texture</a></li>
  377. <li><a class="dropdown-item" href="command-line-options.html#threshold">threshold</a></li>
  378. <li><a class="dropdown-item" href="command-line-options.html#thumbnail">thumbnail</a></li>
  379. <li><a class="dropdown-item" href="command-line-options.html#tile">tile</a></li>
  380. <li><a class="dropdown-item" href="command-line-options.html#tile-offset">tile-offset</a></li>
  381. <li><a class="dropdown-item" href="command-line-options.html#tint">tint</a></li>
  382. <li><a class="dropdown-item" href="command-line-options.html#title">title</a></li>
  383. <li><a class="dropdown-item" href="command-line-options.html#transform">transform</a></li>
  384. <li><a class="dropdown-item" href="command-line-options.html#transparent">transparent</a></li>
  385. <li><a class="dropdown-item" href="command-line-options.html#transparent-color">transparent-color</a></li>
  386. <li><a class="dropdown-item" href="command-line-options.html#transpose">transpose</a></li>
  387. <li><a class="dropdown-item" href="command-line-options.html#transverse">transverse</a></li>
  388. <li><a class="dropdown-item" href="command-line-options.html#treedepth">treedepth</a></li>
  389. <li><a class="dropdown-item" href="command-line-options.html#trim">trim</a></li>
  390. <li><a class="dropdown-item" href="command-line-options.html#type">type</a></li>
  391. <li><a class="dropdown-divider" href="command-line-options.html#"><b>U</b></a></li>
  392. <li><a class="dropdown-item" href="command-line-options.html#undercolor">undercolor</a></li>
  393. <li><a class="dropdown-item" href="command-line-options.html#unique-colors">unique-colors</a></li>
  394. <li><a class="dropdown-item" href="command-line-options.html#units">units</a></li>
  395. <li><a class="dropdown-item" href="command-line-options.html#unsharp">unsharp</a></li>
  396. <li><a class="dropdown-item" href="command-line-options.html#update">update</a></li>
  397. <li><a class="dropdown-divider" href="command-line-options.html#"><b>V</b></a></li>
  398. <li><a class="dropdown-item" href="command-line-options.html#verbose">verbose</a></li>
  399. <li><a class="dropdown-item" href="command-line-options.html#version">version</a></li>
  400. <li><a class="dropdown-item" href="command-line-options.html#view">view</a></li>
  401. <li><a class="dropdown-item" href="command-line-options.html#vignette">vignette</a></li>
  402. <li><a class="dropdown-item" href="command-line-options.html#virtual-pixel">virtual-pixel</a></li>
  403. <li><a class="dropdown-item" href="command-line-options.html#visual">visual</a></li>
  404. <li><a class="dropdown-divider" href="command-line-options.html#"><b>W</b></a></li>
  405. <li><a class="dropdown-item" href="command-line-options.html#watermark">watermark</a></li>
  406. <li><a class="dropdown-item" href="command-line-options.html#wave">wave</a></li>
  407. <li><a class="dropdown-item" href="command-line-options.html#wavelet-denoise">wavelet-denoise</a></li>
  408. <li><a class="dropdown-item" href="command-line-options.html#weight">weight</a></li>
  409. <li><a class="dropdown-item" href="command-line-options.html#white-balance">white-balance</a></li>
  410. <li><a class="dropdown-item" href="command-line-options.html#white-point">white-point</a></li>
  411. <li><a class="dropdown-item" href="command-line-options.html#white-threshold">white-threshold</a></li>
  412. <li><a class="dropdown-item" href="command-line-options.html#window">window</a></li>
  413. <li><a class="dropdown-item" href="command-line-options.html#window-group">window-group</a></li>
  414. <li><a class="dropdown-item" href="command-line-options.html#word-break">word-break</a></li>
  415. <li><a class="dropdown-item" href="command-line-options.html#write">write</a></li>
  416. <li><a class="dropdown-item" href="command-line-options.html#write-mask">write-mask</a></li>
  417. </ul>
  418. </div>
  419. <p> </p>
  420. <p class="lead magick-description">Below is list of command-line options recognized by the ImageMagick <a href="command-line-tools.html">command-line tools</a>. If you want a description of a particular option, click on the option name in the navigation bar above and you will go right to it. Unless otherwise noted, each option is recognized by the commands: <a href="../www/convert.html">convert</a> and <a href="mogrify.html">mogrify</a>.</p>
  421. <div style="margin: auto;">
  422. <h2><a class="anchor" id="adaptive-blur"></a>-adaptive-blur <var>radius</var>[x<var>sigma</var>]</h2>
  423. </div>
  424. <p class="magick-description">Adaptively blur pixels, with decreasing effect near edges.</p>
  425. <p>A Gaussian operator of the given radius and standard deviation (<var>sigma</var>) is used. If <var>sigma</var> is not given it defaults to 1.</p>
  426. <p>The <var>sigma</var> value is the important argument, and
  427. determines the actual amount of blurring that will take place. </p>
  428. <p>The <var>radius</var> is only used to determine the size of the
  429. array which holds the calculated Gaussian distribution. It should be an
  430. integer. If not given, or set to zero, IM will calculate the largest possible
  431. radius that will provide meaningful results for the Gaussian distribution.
  432. </p>
  433. <div style="margin: auto;">
  434. <h2><a class="anchor" id="adaptive-resize"></a>-adaptive-resize <var>geometry</var></h2>
  435. </div>
  436. <p class="magick-description">Resize the image using data-dependent triangulation.</p>
  437. <p>See <a href="command-line-processing.html#geometry">Image Geometry</a> for complete details about the <em class="arg">geometry</em> argument. The <a href="command-line-options.html#adaptive-resize">-adaptive-resize</a>
  438. option defaults to data-dependent triangulation. Use the <a
  439. href="command-line-options.html#filter">-filter</a> to choose a different resampling algorithm.
  440. Offsets, if present in the geometry string, are ignored, and the <a
  441. href="command-line-options.html#gravity">-gravity</a> option has no effect.</p>
  442. <div style="margin: auto;">
  443. <h2><a class="anchor" id="adaptive-sharpen"></a>-adaptive-sharpen <var>radius</var>[x<var>sigma</var>]</h2>
  444. </div>
  445. <p class="magick-description">Adaptively sharpen pixels, with increasing effect near edges.</p>
  446. <p>A Gaussian operator of the given radius and standard deviation
  447. (<var>sigma</var>) is used. If <var>sigma</var> is not given it
  448. defaults to 1.</p>
  449. <p>The <var>sigma</var> value is the important argument, and
  450. determines the actual amount of blurring that will take place. </p>
  451. <p>The <var>radius</var> is only used to determine the size of the
  452. array which holds the calculated Gaussian distribution. It should be an
  453. integer. If not given, or set to zero, IM will calculate the largest possible
  454. radius that will provide meaningful results for the Gaussian distribution.
  455. </p>
  456. <div style="margin: auto;">
  457. <h2><a class="anchor" id="adjoin"></a>-adjoin</h2>
  458. </div>
  459. <p class="magick-description">Join images into a single multi-image file.</p>
  460. <p>This option is enabled by default. An attempt is made to save all images of
  461. an image sequence into the given output file. However, some formats, such as
  462. JPEG and PNG, do not support more than one image per file, and in that case
  463. ImageMagick is forced to write each image as a separate file. As such, if
  464. more than one image needs to be written, the filename given is modified by
  465. adding a <a href="command-line-options.html#scene">-scene</a> number before the suffix, in order to
  466. make distinct names for each image. </p>
  467. <p>Use <a href="command-line-options.html#adjoin">+adjoin</a> to force each image to be written to
  468. separate files, whether or not the file format allows multiple images per file
  469. (for example, GIF, MIFF, and TIFF). </p>
  470. <p>Including a C-style integer format string in the output filename will
  471. automagically enable <a href="command-line-options.html#adjoin">+adjoin</a> and are used to specify
  472. where the <a href="command-line-options.html#scene">-scene</a> number is placed in the filenames. These
  473. strings, such as '<samp>%d</samp>' or '<samp>%03d</samp>', are familiar to those
  474. who have used the standard <samp>printf()</samp>' C-library function. As an
  475. example, the command</p>
  476. <pre class="bg-light text-dark mx-4 cli"><samp>magick logo: rose: -morph 15 my%02dmorph.jpg</samp></pre>
  477. <p>will create a sequence of 17 images (the two given plus 15 more created by
  478. <a href="command-line-options.html#morph">-morph</a>), named: my00morph.jpg, my01morph.jpg,
  479. my02morph.jpg, ..., my16morph.jpg. </p>
  480. <p>In summary, ImageMagick tries to write all images to one file, but will
  481. save to multiple files, if any of the following conditions exist...</p>
  482. <ol>
  483. <li>the output image's file format does not allow multi-image files,</li>
  484. <li>the <a href="command-line-options.html#adjoin">+adjoin</a> option is given, or</li>
  485. <li>a printf() integer format string (eg: "%d") is present in the output
  486. filename.</li>
  487. </ol>
  488. <div style="margin: auto;">
  489. <h2><a class="anchor" id="affine"></a>-affine
  490. <var>s<sub>x</sub></var>,<var>r<sub>x</sub></var>,<var>r<sub>y</sub></var>,<var>s<sub>y</sub></var>[,<var>t<sub>x</sub></var>,<var>t<sub>y</sub></var>]</h2>
  491. </div>
  492. <p class="magick-description">Set the drawing transformation matrix for combined rotating and scaling.</p>
  493. <p>This option sets a transformation matrix, for use by subsequent <a
  494. href="command-line-options.html#draw">-draw</a> or <a href="command-line-options.html#transform">-transform</a> options. </p>
  495. <p>The matrix entries are entered as comma-separated numeric values either in
  496. quotes or without spaces. </p>
  497. <p>Internally, the transformation matrix has 3x3 elements, but three of them
  498. are omitted from the input because they are constant. The new (transformed)
  499. coordinates (<var>x'</var>, <var>y'</var>) of a pixel at
  500. position (<var>x</var>, <var>y</var>) in the original
  501. image are calculated using the following matrix equation.</p>
  502. <p class="text-center"><img class="img-thumbnail" alt="affine transformation" src="../images/affine.png"/> </p>
  503. <p> The size of the resulting image is that of the smallest rectangle that
  504. contains the transformed source image. The parameters
  505. <var>t<sub>x</sub></var> and <var>t<sub>y</sub></var>
  506. subsequently shift the image pixels so that those that are moved out of the
  507. image area are cut off.</p>
  508. <p>The transformation matrix complies with the left-handed pixel coordinate
  509. system: positive <var>x</var> and <var>y</var> directions
  510. are rightward and downward, resp.; positive rotation is clockwise.</p>
  511. <p> If the translation coefficients <var>t<sub>x</sub></var> and
  512. <var>t<sub>y</sub></var> are omitted they default to 0,0. Therefore,
  513. four parameters suffice for rotation and scaling without translation.</p>
  514. <p>Scaling by the factors <var>s<sub>x</sub></var> and
  515. <var>s<sub>y</sub></var> in the <var>x</var> and <var>y</var> directions,
  516. respectively, is accomplished with the following.</p>
  517. <p>See <a href="command-line-options.html#transform">-transform</a>, and the <a
  518. href="command-line-options.html#distort">-distort</a> method '<samp>Affineprojection</samp> for more
  519. information </p>
  520. <pre class="bg-light text-dark mx-4 cli"><samp>-affine <var>s<sub>x</sub></var>,0,0,<var>s<sub>y</sub></var>
  521. </samp></pre>
  522. <p>Translation by a displacement (<var>t<sub>x</sub></var>, <var>t<sub>y</sub></var>) is accomplished like so:</p>
  523. <pre class="bg-light text-dark mx-4 cli"><samp>-affine 1,0,0,1,<var>t<sub>x</sub></var>,<var>t<sub>y</sub></var>
  524. </samp></pre>
  525. <p>Rotate clockwise about the origin (the upper left-hand corner) by an angle
  526. <var>a</var> by letting <var>c</var> = cos(<var>a</var>), <var>s</var>
  527. = sin(<var>a</var>), and using the following.</p>
  528. <pre class="bg-light text-dark mx-4 cli"><samp>-affine <var>c</var>,<var>s</var>,-<var>s</var>,<var>c</var>
  529. </samp></pre>
  530. <p>The cumulative effect of a sequence of <a href="command-line-options.html#affine" >-affine</a>
  531. transformations can be accomplished by instead by a single <a href="command-line-options.html#affine"
  532. >-affine</a> operation using the matrix equal to the product of the matrices
  533. of the individual transformations.</p>
  534. <p>An attempt is made to detect near-singular transformation matrices. If the
  535. matrix determinant has a sufficiently small absolute value it is rejected.</p>
  536. <div style="margin: auto;">
  537. <h2><a class="anchor" id="alpha"></a>-alpha <var>type</var></h2>
  538. </div>
  539. <p class="magick-description">Gives control of the alpha/matte channel of an image.</p>
  540. <p>Used to set a flag on an image indicating whether or not to use existing alpha
  541. channel data, to create an alpha channel, or to perform other operations on the alpha channel. Choose the argument <var>type</var> from the list below.</p>
  542. <div class="pre-scrollable bg-light text-dark mx-4">
  543. <dl class="row">
  544. <dt class="col-md-4">Activate</dt>
  545. <dd class="col-md-8">
  546. Enable the image's transparency channel. Note normally Set
  547. should be used instead of this, unless you specifically need to
  548. preserve existing (but specifically turned Off) transparency
  549. channel. </dd>
  550. <dt class="col-md-4">Associate</dt>
  551. <dd class="col-md-8">
  552. associate the alpha channel with the image.</dd>
  553. <dt class="col-md-4">Deactivate</dt>
  554. <dd class="col-md-8">
  555. Disables the image's transparency channel. Does not delete or change the
  556. existing data, just turns off the use of that data.</dd>
  557. <dt class="col-md-4">Disassociate</dt>
  558. <dd class="col-md-8">
  559. disassociate the alpha channel from the image.</dd>
  560. <dt class="col-md-4">Set</dt>
  561. <dd class="col-md-8">
  562. Activates the alpha/matte channel. If it was previously turned off
  563. then it also resets the channel to opaque. If the image already had
  564. the alpha channel turned on, it will have no effect.</dd>
  565. <dt class="col-md-4">Opaque</dt>
  566. <dd class="col-md-8">
  567. Enables the alpha/matte channel and forces it to be fully opaque.
  568. </dd>
  569. <dt class="col-md-4">Transparent</dt>
  570. <dd class="col-md-8">
  571. Activates the alpha/matte channel and forces it to be fully
  572. transparent. This effectively creates a fully transparent image the
  573. same size as the original and with all its original RGB data still
  574. intact, but fully transparent. </dd>
  575. <dt class="col-md-4">Extract</dt>
  576. <dd class="col-md-8">
  577. Copies the alpha channel values into all the color channels and turns
  578. 'Off' the image's transparency, so as to generate
  579. a grayscale mask of the image's shape. The alpha channel data is left
  580. intact just deactivated. This is the inverse of 'Copy'.
  581. </dd>
  582. <dt class="col-md-4">Copy</dt>
  583. <dd class="col-md-8">
  584. Turns 'On' the alpha/matte channel, then copies the
  585. grayscale intensity of the image, into the alpha channel, converting
  586. a grayscale mask into a transparent shaped mask ready to be colored
  587. appropriately. The color channels are not modified. </dd>
  588. <dt class="col-md-4">Shape</dt>
  589. <dd class="col-md-8">
  590. As per 'Copy' but also colors the resulting shape mask with
  591. the current background color. That is the RGB color channels is
  592. replaced, with appropriate alpha shape.
  593. </dd>
  594. <dt class="col-md-4">Remove</dt>
  595. <dd class="col-md-8">
  596. Composite the image over the background color.
  597. </dd>
  598. <dt class="col-md-4">Background</dt>
  599. <dd class="col-md-8">
  600. Set any fully-transparent pixel to the background color, while leaving
  601. it fully-transparent. This can make some image file formats, such as
  602. PNG, smaller as the RGB values of transparent pixels are more uniform,
  603. and thus can compress better.
  604. </dd>
  605. </dl>
  606. </div>
  607. <br/>
  608. <p>Note that while the obsolete <samp>+matte</samp> operation was the
  609. same as "<samp><a href="command-line-options.html#alpha" >-alpha</a> Off</samp>", the <samp>
  610. >-matte</samp> operation was the same as "<samp><a href="command-line-options.html#alpha" >-alpha</a>
  611. Set</samp>" and not "<samp><a href="command-line-options.html#alpha" >-alpha</a> On</samp>". </p>
  612. <div class="pre-scrollable bg-light text-dark mx-4" style="margin: auto;">
  613. <h2><a class="anchor" id="annotate"></a>
  614. -annotate <var>degrees</var> <var>text</var><br />
  615. -annotate <var>Xdegrees</var>x<var>Ydegrees</var> <var>text</var><br /> -annotate <var>Xdegrees</var>x<var>Ydegrees</var>{+-}<var>t<sub>x</sub></var>{+-}<var>t<sub>y</sub></var> <var>text</var><br /> -annotate {+-}<var>t<sub>x</sub></var>{+-}<var>t<sub>y</sub></var> <var>text</var></h2>
  616. </div>
  617. <p class="magick-description">Annotate an image with text</p>
  618. <p>This is a convenience for annotating an image with text. For more precise
  619. control over text annotations, use <a href="command-line-options.html#draw">-draw</a>.</p>
  620. <p>The values <var>Xdegrees</var> and <var>Ydegrees</var>
  621. control the shears applied to the text, while <var>t<sub>x</sub></var> and <var>t<sub>y</sub></var> are offsets that give the location of the text relative any <a href="command-line-options.html#gravity" >-gravity</a> setting and defaults to the upper left corner of the image.</p>
  622. <p>Using <a href="command-line-options.html#annotate">-annotate</a> <var>degrees</var>
  623. or <a href="command-line-options.html#annotate">-annotate</a> <var>degrees</var>x<var>degrees</var> produces an unsheared rotation of the text. The
  624. direction of the rotation is positive, which means a clockwise rotation if <var>degrees</var> is positive. (This conforms to the usual mathematical
  625. convention once it is realized that the positive <var>y</var>–direction is
  626. conventionally considered to be <var>downward</var> for images.)</p>
  627. <p>The new (transformed) coordinates (<var>x'</var>, <var>y'</var>) of a pixel at position (<var>x</var>, <var>y</var>) in the image are calculated using the following matrix
  628. equation.</p>
  629. <p class="text-center"><img class="img-thumbnail" alt="annotate transformation" src="../images/annotate.png"/></p>
  630. <p>If <var>t<sub>x</sub></var> and <var>t<sub>y</sub></var> are omitted, they default to 0. This makes the
  631. bottom-left of the text becomes the upper-left corner of the image, which is
  632. probably undesirable. Adding a <a href="command-line-options.html#gravity" >-gravity</a> option in this
  633. case leads to nice results.</p>
  634. <p>Text is any UTF-8 encoded character sequence. If <var>text</var>
  635. is of the form '@mytext.txt', the text is read from the file
  636. <samp>mytext.txt</samp>. Text in a file is taken literally; no embedded
  637. formatting characters are recognized.</p>
  638. <div style="margin: auto;">
  639. <h2><a class="anchor" id="antialias"></a>-antialias</h2>
  640. </div>
  641. <p class="magick-description">Enable/Disable of the rendering of anti-aliasing pixels when drawing fonts and lines.</p>
  642. <p>By default, objects (e.g. text, lines, polygons, etc.) are antialiased when
  643. drawn. Use <a href="command-line-options.html#antialias">+antialias</a> to disable the addition of
  644. antialiasing edge pixels. This will then reduce the number of colors added to
  645. an image to just the colors being directly drawn. That is, no mixed colors
  646. are added when drawing such objects. </p>
  647. <div style="margin: auto;">
  648. <h2><a class="anchor" id="append"></a>-append</h2>
  649. </div>
  650. <p class="magick-description">Join current images vertically or horizontally.</p>
  651. <p>This option creates a single longer image, by joining all the current
  652. images in sequence top-to-bottom. Use <a href="command-line-options.html#append">+append</a> to
  653. stack images left-to-right. </p>
  654. <p>If they are not of the same width, narrower images are padded with the
  655. current <a href="command-line-options.html#background">-background</a> color setting, and their
  656. position relative to each other can be controlled by the current <a
  657. href="command-line-options.html#gravity">-gravity</a> setting. </p>
  658. <p>For more flexible options, including the ability to add space between images,
  659. use <a href="command-line-options.html#smush">-smush</a>.</p>
  660. <div style="margin: auto;">
  661. <h2><a class="anchor" id="attenuate"></a>-attenuate <var>value</var></h2>
  662. </div>
  663. <p class="magick-description">Lessen (or intensify) when adding noise to an image.</p>
  664. <p>If unset the value is equivalent to 1.0, or a maximum noise addition</p>
  665. <div style="margin: auto;">
  666. <h2><a class="anchor" id="authenticate"></a>-authenticate <var>password</var></h2>
  667. </div>
  668. <p class="magick-description">Decrypt a PDF with a password.</p>
  669. <p>Use this option to supply a <var>password</var> for decrypting
  670. a PDF that has been encrypted using Microsoft Crypto API (MSC API). The
  671. encrypting using the MSC API is not supported.</p>
  672. <p>For a different encryption method, see <a href="command-line-options.html#encipher">-encipher</a>
  673. and <a href="command-line-options.html#decipher">-decipher</a>. </p>
  674. <div style="margin: auto;">
  675. <h2><a class="anchor" id="auto-gamma"></a>-auto-gamma</h2>
  676. </div>
  677. <p class="magick-description">Automagically adjust gamma level of image.</p>
  678. <p>This calculates the mean values of an image, then applies a calculated <a
  679. href="command-line-options.html#gamma" >-gamma</a> adjustment so that the mean color in the
  680. image will get a value of 50%. </p>
  681. <p>This means that any solid 'gray' image becomes 50% gray. </p>
  682. <p>This works well for real-life images with little or no extreme dark and
  683. light areas, but tend to fail for images with large amounts of bright sky or
  684. dark shadows. It also does not work well for diagrams or cartoon like images.
  685. </p>
  686. <p>It uses the <a href="command-line-options.html#channel" >-channel</a> setting, (including the
  687. '<var>sync</var>' flag for channel synchronization), to determine which color
  688. values is used and modified. As the default <a href="command-line-options.html#channel"
  689. >-channel</a> setting is '<var>RGB,sync</var>', channels are modified
  690. together by the same gamma value, preserving colors. </p>
  691. <div style="margin: auto;">
  692. <h2><a class="anchor" id="auto-level"></a>-auto-level</h2>
  693. </div>
  694. <p class="magick-description">Automagically adjust color levels of image.</p>
  695. <p>This is a 'perfect' image normalization operator. It finds the exact
  696. minimum and maximum color values in the image and then applies a <a
  697. href="command-line-options.html#level" >-level</a> operator to stretch the values to the full range of
  698. values. </p>
  699. <p>The operator is not typically used for real-life images, image scans, or
  700. JPEG format images, as a single 'out-rider' pixel can set a bad min/max values
  701. for the <a href="command-line-options.html#level" >-level</a> operation. On the other hand it is the
  702. right operator to use for color stretching gradient images being used to
  703. generate Color lookup tables, distortion maps, or other 'mathematically'
  704. defined images. </p>
  705. <p>The operator is very similar to the <a href="command-line-options.html#normalize">-normalize</a>, <a
  706. href="command-line-options.html#contrast-stretch" >-contrast-stretch</a>, and <a href="command-line-options.html#linear-stretch"
  707. >-linear-stretch</a> operators, but without 'histogram binning' or 'clipping'
  708. problems that these operators may have. That is <a href="command-line-options.html#auto-level"
  709. >-auto-level</a> is the perfect or ideal version these operators. </p>
  710. <p>It uses the <a href="command-line-options.html#channel" >-channel</a> setting, (including the
  711. special '<var>sync</var>' flag for channel synchronization), to determine
  712. which color values are used and modified. As the default <a
  713. href="command-line-options.html#channel" >+channel</a> setting is '<var>RGB,sync</var>', the
  714. '<var>sync</var>' ensures that the color channels will are modified
  715. together by the same gamma value, preserving colors, and ignoring
  716. transparency. </p>
  717. <div style="margin: auto;">
  718. <h2><a class="anchor" id="auto-orient"></a>-auto-orient</h2>
  719. </div>
  720. <p class="magick-description">Adjusts an image so that its orientation is suitable for viewing (i.e. top-left orientation).</p>
  721. <p>This operator reads and resets the EXIF image profile setting 'Orientation'
  722. and then performs the appropriate 90 degree rotation on the image to orient
  723. the image, for correct viewing. </p>
  724. <p>This EXIF profile setting is usually set using a gravity sensor in digital
  725. camera, however photos taken directly downward or upward may not have an
  726. appropriate value. Also images that have been orientation 'corrected' without
  727. reseting this setting, may be 'corrected' again resulting in a incorrect
  728. result. If the EXIF profile was previously stripped, the <a
  729. href="command-line-options.html#auto-orient" >-auto-orient</a> operator will do nothing. </p>
  730. <div style="margin: auto;">
  731. <h2><a class="anchor" id="auto-threshold"></a>-auto-threshold <var>method</var></h2>
  732. </div>
  733. <p class="magick-description">Automatically perform image thresholding.</p>
  734. <p>Here are the valid methods:</p>
  735. <div class="pre-scrollable bg-light text-dark mx-4">
  736. <dl class="row">
  737. <dt class="col-md-4">Undefined</dt><dd class="col-md-8">0: No method specified (equivalent to '<samp>OTSU</samp>').</dd>
  738. <dt class="col-md-4">Kapur</dt><dd class="col-md-8">maximum entropy thresholding.</dd>
  739. <dt class="col-md-4">OTSU</dt><dd class="col-md-8">cluster-based image thresholding.</dd>
  740. <dt class="col-md-4">Triangle</dt><dd class="col-md-8">a geometric thresholding method.</dd>
  741. </dl>
  742. </div>
  743. <p>The computed threshold is returned as the <kbd>auto-threshold:verbose</kbd> image property. To instead print to your device, use <kbd>-define auto-threshold:verbose=true</kbd>.</p>
  744. <div style="margin: auto;">
  745. <h2><a class="anchor" id="average"></a>-average</h2>
  746. </div>
  747. <p class="magick-description">Average a set of images.</p>
  748. <p>An error results if the images are not identically sized.</p>
  749. <div style="margin: auto;">
  750. <h2><a class="anchor" id="backdrop"></a>-backdrop</h2>
  751. </div>
  752. <p class="magick-description">Display the image centered on a backdrop.</p>
  753. <p>This backdrop covers the entire workstation screen and is useful for hiding
  754. other X window activity while viewing the image. The color of the backdrop is
  755. specified as the background color. The color is specified using the format
  756. described under the <a href="command-line-options.html#fill">-fill</a> option.</p>
  757. <div style="margin: auto;">
  758. <h2><a class="anchor" id="background"></a>-background <var>color</var></h2>
  759. </div>
  760. <p class="magick-description">Set the background color.</p>
  761. <p>The color is specified using the format described under the <a
  762. href="command-line-options.html#fill">-fill</a> option. The default background color (if none is
  763. specified or found in the image) is white.</p>
  764. <div style="margin: auto;">
  765. <h2><a class="anchor" id="bench"></a>-bench <var>iterations</var></h2>
  766. </div>
  767. <p class="magick-description">Measure performance.</p>
  768. <p>Repeat the entire command for the given number of <var>iterations</var> and report the user-time and elapsed time. For instance,
  769. consider the following command and its output. Modify the benchmark with the
  770. -duration to run the benchmark for a fixed number of seconds and -concurrent
  771. to run the benchmark in parallel (requires the OpenMP feature).</p>
  772. <pre class="bg-light text-dark mx-4"><samp>$ magick logo: -resize 200% -bench 5 logo.png
  773. Performance[1]: 5i 1.344ips 1.000e 3.710u 0:03.720
  774. Performance[2]: 5i 1.634ips 0.549e 3.890u 0:03.060
  775. Performance[3]: 5i 2.174ips 0.618e 3.190u 0:02.300
  776. Performance[4]: 5i 1.678ips 0.555e 3.810u 0:02.980
  777. Performance[4]: 5i 0.875657ips 6.880u 0:05.710
  778. </samp></pre>
  779. <p>In this example, 5 iterations were completed at 2.174 iterations per
  780. second, using 3 threads and 3.190 seconds of the user allotted time, for
  781. a total elapsed time of 2.300 seconds.</p>
  782. <div style="margin: auto;">
  783. <h2><a class="anchor" id="bias"></a>-bias <var>value</var>{<var>%</var>}</h2>
  784. </div>
  785. <p class="magick-description">Add bias when convolving an image.</p>
  786. <p>This option shifts the output of <a class="text-nowrap" href="command-line-options.html#convolve">-convolve</a> so that
  787. positive and negative results are relative to the specified bias value. </p>
  788. <p>This is important for non-HDRI compilations of ImageMagick when dealing
  789. with convolutions that contain negative as well as positive values. This is
  790. especially the case with convolutions involving high pass filters or edge
  791. detection. Without an output bias, the negative values are clipped at
  792. zero.</p>
  793. <p>When using an ImageMagick with the HDRI compile-time setting, <a class="text-nowrap" href="command-line-options.html#bias">-bias</a> is not needed, as ImageMagick is able to store/handle any
  794. negative results without clipping to the color value range
  795. (0..QuantumRange).</p>
  796. <p>See the discussion on HDRI implementations of ImageMagick on the page <a
  797. href="high-dynamic-range.html" >High Dynamic-Range Images</a>. For more
  798. about HDRI go the ImageMagick <a
  799. href="../Usage/basics/#hdri" >Usage</a> pages or this
  800. <a
  801. href="http://en.wikipedia.org/wiki/High_dynamic_range_imaging">Wikipedia</a>
  802. entry. </p>
  803. <div style="margin: auto;">
  804. <h2><a class="anchor" id="bilateral-blur"></a>-bilateral-blur <var>width</var>{x<var>height</var>}{<var>+intensity-sigma</var>}{<var>+spatial-sigma</var>}</h2>
  805. </div>
  806. <p class="magick-description">A non-linear, edge-preserving, and noise-reducing
  807. smoothing filter for images. It replaces the intensity of each pixel with a
  808. weighted average of intensity values from nearby pixels. This weight is
  809. based on a Gaussian distribution. The weights depend not only on Euclidean
  810. distance of pixels, but also on the radiometric differences (e.g., range
  811. differences, such as color intensity, depth distance, etc.). This preserves
  812. sharp edges.</p>
  813. <p>The intensity sigma is in the intensity space. A larger value means
  814. that farther colors within the pixel neighborhood (see spatial-sigma)
  815. will be mixed together, resulting in larger areas of semi-equal color.</p>
  816. <p>The spatial sigma is in the coordinate space. A larger value means that
  817. farther pixels influence each other as long as their colors are close
  818. enough (see intensity-sigma ). When the neigborhood diameter is greater
  819. than zero, it specifies the neighborhood size regardless of
  820. spatial-sigma. Otherwise, the neigborhood diameter is proportional to
  821. spatial-sigma.</p>
  822. <p>The default value for the intensity and spatial sigmas are <var>0.75*diameter</var> and <var>0.25*diameter</var> respectively.</p>
  823. <div style="margin: auto;">
  824. <h2><a class="anchor" id="black-point-compensation"></a>-black-point-compensation</h2>
  825. </div>
  826. <p class="magick-description">Use black point compensation.</p>
  827. <div style="margin: auto;">
  828. <h2><a class="anchor" id="black-threshold"></a>-black-threshold <var>value</var>{<var>%</var>}</h2>
  829. </div>
  830. <p class="magick-description">Force to black all pixels below the threshold while leaving all pixels at or above the threshold unchanged.</p>
  831. <p> The threshold value can be given as a percentage or as an absolute integer
  832. value within [0, <var>QuantumRange</var>] corresponding to the
  833. desired <a class="text-nowrap" href="command-line-options.html#channel">-channel</a> value. See <a class="text-nowrap" href="command-line-options.html#threshold">-threshold</a> for more details on thresholds and resulting values. </p>
  834. <div style="margin: auto;">
  835. <h2><a class="anchor" id="blend"></a>-blend <var>geometry</var></h2>
  836. </div>
  837. <p class="magick-description">Blend an image into another by the given absolute value or percent.</p>
  838. <p>Blend will average the images together ('plus') according to the
  839. percentages given and each pixels transparency. If only a single percentage
  840. value is given it sets the weight of the composite or 'source' image, while
  841. the background image is weighted by the exact opposite amount. That is a
  842. <samp>-blend 30%</samp> merges 30% of the 'source' image with 70% of the
  843. 'destination' image. Thus it is equivalent to <samp>-blend 30x70%</samp>.</p>
  844. <div style="margin: auto;">
  845. <h2><a class="anchor" id="blue-primary"></a>-blue-primary <var>x</var>,<var>y</var></h2>
  846. </div>
  847. <p class="magick-description">Set the blue chromaticity primary point.</p>
  848. <div style="margin: auto;">
  849. <h2><a class="anchor" id="blue-shift"></a>-blue-shift <var>factor</var></h2>
  850. </div>
  851. <p class="magick-description">Simulate a scene at nighttime in the moonlight. Start with a factor of 1.5</p>
  852. <div style="margin: auto;">
  853. <div style="margin: auto;">
  854. <h2><a class="anchor" id="blur"></a>-blur <var>radius</var><br />-blur <var>radius</var>{x<var>sigma</var>}</h2>
  855. </div>
  856. <p class="magick-description">Reduce image noise and reduce detail levels.</p>
  857. <p>Convolve the image with a Gaussian or normal distribution using the given
  858. <var >Sigma</var> value. The formula is:</p>
  859. <p class="text-center"><img class="img-thumbnail" alt="gaussian distribution" width="243px" height="42px" src="../images/gaussian-blur.png"/></p>
  860. <p>The <var>sigma</var> value is the important argument, and
  861. determines the actual amount of blurring that will take place. </p>
  862. <p>The <var>radius</var> is only used to determine the size of the
  863. array which holds the calculated Gaussian distribution. It should be an
  864. integer. If not given, or set to zero, IM will calculate the largest possible
  865. radius that will provide meaningful results for the Gaussian distribution.
  866. </p>
  867. <p>The larger the <var >Radius</var> the slower the
  868. operation is. However too small a <var >Radius</var>, and severe
  869. aliasing effects may result. As a guideline, <var >Radius</var>
  870. should be at least twice the <var >Sigma</var> value, though three
  871. times will produce a more accurate result. </p>
  872. <p>This option differs from <a href="command-line-options.html#gaussian-blur">-gaussian-blur</a> simply
  873. by taking advantage of the separability properties of the distribution. Here
  874. we apply a single-dimensional Gaussian matrix in the horizontal direction,
  875. then repeat the process in the vertical direction.</p>
  876. <p>The <a href="command-line-options.html#virtual-pixel">-virtual-pixel</a> setting will determine how
  877. pixels which are outside the image proper are blurred into the final result.
  878. </p>
  879. <div style="margin: auto;">
  880. <h2><a class="anchor" id="border"></a>-border <var>geometry</var></h2>
  881. </div>
  882. <p class="magick-description">Surround the image with a border of color. </p>
  883. <p>Set the width and height using the <var>size</var> portion of the
  884. <var>geometry</var> argument. See <a href="command-line-processing.html#geometry">Image Geometry</a> for complete details about the <em class="arg">geometry</em> argument. Offsets are
  885. ignored. </p>
  886. <p>As of IM 6.7.8-8, the <var>geometry</var> arguments behave as follows:</p>
  887. <div class="pre-scrollable bg-light text-dark mx-4">
  888. <dl class="row">
  889. <dt class="col-md-4"><var>value</var></dt>
  890. <dd class="col-md-8">value is added to both left/right and top/bottom</dd>
  891. <dt class="col-md-4"><var>value-x</var><samp>x</samp></dt>
  892. <dd class="col-md-8">value-x is added only to left/right and top/bottom are unchanged</dd>
  893. <dt class="col-md-4"><samp>x</samp><var>value-y</var></dt>
  894. <dd class="col-md-8">value-y is added only to top/bottom and left/right are unchanged</dd>
  895. <dt class="col-md-4"><var>value-x</var><samp>x</samp><var>value-y</var></dt>
  896. <dd class="col-md-8">value-x is added to left/right and value-y added to top/bottom</dd>
  897. <dt class="col-md-4"><var>value-x</var><samp>x</samp>0</dt>
  898. <dd class="col-md-8">value-x is added only to left/right and top/bottom are unchanged</dd>
  899. <dt class="col-md-4">0<samp>x</samp><var>value-y</var></dt>
  900. <dd class="col-md-8">value-y is added only to top/bottom and left/right are unchanged</dd>
  901. <dt class="col-md-4"><var>value</var>%</dt>
  902. <dd class="col-md-8">value % of width is added to left/right and value % of height is added to top/bottom</dd>
  903. <dt class="col-md-4"><var>value-x</var><samp>x</samp>%</dt>
  904. <dd class="col-md-8">value-x % of width is added to left/right and to top/bottom</dd>
  905. <dt class="col-md-4">x<var>value-y</var>%</dt>
  906. <dd class="col-md-8">value-y % of height is added to top/bottom and to left/right</dd>
  907. <dt class="col-md-4"><var>value-x</var>%<samp>x</samp><var>value-y</var>%</dt>
  908. <dd class="col-md-8">value-x % of width is added to left/right and value-y % of height is added to top/bottom</dd>
  909. <dt class="col-md-4"><var>value-x</var>%<samp>x</samp>0%</dt>
  910. <dd class="col-md-8">value-x % of width is added to left/right and top/bottom are unchanged</dd>
  911. <dt class="col-md-4">0%<samp>x</samp><var>value-y</var>%</dt>
  912. <dd class="col-md-8">value-y % of height is added to top/bottom and left/right are unchanged</dd>
  913. </dl>
  914. </div>
  915. <p>Set the border color by preceding with the <a
  916. href="command-line-options.html#bordercolor">-bordercolor</a> setting.</p>
  917. <p>The <a href="command-line-options.html#border">-border</a> operation is affected by the current <a
  918. href="command-line-options.html#compose">-compose</a> setting and assumes that this is using the default
  919. '<samp>Over</samp>' composition method. It generates an image of the appropriate
  920. size colors by the current <a href="command-line-options.html#bordercolor">-bordercolor</a> before
  921. overlaying the original image in the center of this net image. This means that
  922. with the default compose method of '<samp>Over</samp>' any transparent parts may
  923. be replaced by the current <a href="command-line-options.html#bordercolor">-bordercolor</a> setting.</p>
  924. <p>See also the <a href="command-line-options.html#frame">-frame</a> option, which has more
  925. functionality.</p>
  926. <div style="margin: auto;">
  927. <h2><a class="anchor" id="bordercolor"></a>-bordercolor <var>color</var></h2>
  928. </div>
  929. <p class="magick-description">Set the border color.</p>
  930. <p>The color is specified using the format described under the <a href="command-line-options.html#fill">-fill</a> option.</p>
  931. <p>The default border color is <samp>#DFDFDF</samp>, <span style="background-color: #dfdfdf;">this shade of gray</span>.</p>
  932. <div style="margin: auto;">
  933. <h2><a class="anchor" id="borderwidth"></a>-borderwidth <var>geometry</var> </h2>
  934. </div>
  935. <p class="magick-description">Set the border width.</p>
  936. <div style="margin: auto;">
  937. <h2><a class="anchor" id="brightness-contrast"></a>-brightness-contrast <var>brightness</var><br />-brightness-contrast <var>brightness</var>{x<var>contrast</var>}{<var>%</var>}</h2>
  938. </div>
  939. <p class="magick-description">Adjust the brightness and/or contrast of the image.</p>
  940. <p>Brightness and Contrast values apply changes to the input image. They are
  941. not absolute settings. A brightness or contrast value of zero means no change.
  942. The range of values is -100 to +100 on each. Positive values increase the
  943. brightness or contrast and negative values decrease the brightness or contrast.
  944. To control only contrast, set the brightness=0. To control only brightness,
  945. set contrast=0 or just leave it off.</p>
  946. <p>You may also use <a href="command-line-options.html#fill">-channel</a> to control which channels to
  947. apply the brightness and/or contrast change. The default is to apply the same
  948. transformation to all channels.</p>
  949. <p>Brightness and Contrast arguments are converted to offset and slope of a
  950. linear transform and applied
  951. using <a href="command-line-options.html#fill">-function polynomial "slope,offset"</a>.</p>
  952. <p>The slope varies from 0 at contrast=-100 to almost vertical at
  953. contrast=+100. For brightness=0 and contrast=-100, the result are totally
  954. midgray. For brightness=0 and contrast=+100, the result will approach but
  955. not quite reach a threshold at midgray; that is the linear transformation
  956. is a very steep vertical line at mid gray.</p>
  957. <p>Negative slopes, i.e. negating the image, are not possible with this
  958. function. All achievable slopes are zero or positive.</p>
  959. <p>The offset varies from -0.5 at brightness=-100 to 0 at brightness=0 to +0.5
  960. at brightness=+100. Thus, when contrast=0 and brightness=100, the result is
  961. totally white. Similarly, when contrast=0 and brightness=-100, the result is
  962. totally black.</p>
  963. <p>As the range of values for the arguments are -100 to +100, adding the '%'
  964. symbol is no different than leaving it off.</p>
  965. <div style="margin: auto;">
  966. <h2><a class="anchor" id="cache"></a>-cache <var>threshold</var></h2>
  967. </div>
  968. <p class="magick-description">(This option has been replaced by the <a href='command-line-options.html#limit'>-limit</a> option).</p>
  969. <div style="margin: auto;">
  970. <h2><a class="anchor" id="canny"></a>-canny <var>radius</var><br/>-canny <var>radius</var>{x<var>sigma</var>}{<var>+lower-percent</var>}{<var>+upper-percent</var>}</h2>
  971. </div>
  972. <p class="magick-description">Canny edge detector uses a multi-stage algorithm to detect a wide range of edges in the image.</p>
  973. <p>The thresholds range from 0 to 100% (e.g. -canny 0x1+10%+30%) with {<var>+lower-percent</var>} &lt; {<var>+upper-percent</var>}. If {<var>+upper-percent</var>} is increased but {<var>+lower-percent</var>} remains the same, lesser edge components will be detected, but their lengths will be the same. If {<var>+lower-percent</var>} is increased but {<var>+upper-percent</var>} is the same, the same number of edge components will be detected but their lengths will be shorter. The default thresholds are shown.</p>
  974. <p>The <var>radius</var>{x<var>sigma</var>} controls a gaussian blur applied to the input image to reduce noise and smooth the edges.</p>
  975. <p>The <var>sigma</var> value is the important argument, and
  976. determines the actual amount of blurring that will take place. </p>
  977. <p>The <var>radius</var> is only used to determine the size of the
  978. array which holds the calculated Gaussian distribution. It should be an
  979. integer. If not given, or set to zero, IM will calculate the largest possible
  980. radius that will provide meaningful results for the Gaussian distribution.
  981. </p>
  982. <div style="margin: auto;">
  983. <h2><a class="anchor" id="caption"></a>-caption <var>string</var></h2>
  984. </div>
  985. <p class="magick-description">Assign a caption to an image.</p>
  986. <p>This option sets the caption meta-data of an image read in after this
  987. option has been given. To modify a caption of images already in memory use
  988. "<samp><a href="command-line-options.html#set">-set</a> caption</samp>". </p>
  989. <p>The caption can contain special format characters listed in the <a
  990. href="../www/escape.html">Format and
  991. Print Image Properties</a>. These attributes are expanded when the caption
  992. is finally assigned to the individual images. </p>
  993. <p>If the first character of <var>string</var> is <var>@</var>, the image caption is read from a file titled by the
  994. remaining characters in the string. Comments read in from a file are literal;
  995. no embedded formatting characters are recognized.</p>
  996. <p>Caption meta-data is not visible on the image itself. To do that use the
  997. <a href="command-line-options.html#annotate">-annotate</a> or <a href="command-line-options.html#draw">-draw</a> options
  998. instead.</p>
  999. <p>For example,</p>
  1000. <pre class="bg-light text-dark mx-4 cli"><samp>-caption "%m:%f %wx%h" bird.miff
  1001. </samp></pre>
  1002. <p>produces an image caption of <samp>MIFF:bird.miff 512x480</samp> (assuming
  1003. that the image <samp>bird.miff</samp> has a width of 512 and a height of
  1004. 480.</p>
  1005. <div style="margin: auto;">
  1006. <h2><a class="anchor" id="cdl"></a>-cdl <var>filename</var></h2>
  1007. </div>
  1008. <p class="magick-description">Color correct with a color decision list.</p>
  1009. <p>Here is an example color correction collection:</p>
  1010. <pre class="bg-light text-dark mx-4"><samp>&lt;?xml version="1.0" encoding="UTF-8"?&gt;
  1011. &lt;ColorCorrectionCollection xmlns="urn:ASC:CDL:v1.2"&gt;
  1012. &lt;ColorCorrection id="cc06668"&gt;
  1013. &lt;SOPNode&gt;
  1014. &lt;Slope&gt; 0.9 1.2 0.5 &lt;/Slope&gt;
  1015. &lt;Offset&gt; 0.4 -0.5 0.6 &lt;/Offset&gt;
  1016. &lt;Power&gt; 1.0 0.8 1.5 &lt;/Power&gt;
  1017. &lt;/SOPNode&gt;
  1018. &lt;SATNode&gt;
  1019. &lt;Saturation&gt; 0.85 &lt;/Saturation&gt;
  1020. &lt;/SATNode&gt;
  1021. &lt;/ColorCorrection&gt;
  1022. &lt;/ColorCorrectionCollection&gt;
  1023. </samp></pre>
  1024. <div style="margin: auto;">
  1025. <h2><a class="anchor" id="channel"></a>-channel <var>type</var></h2>
  1026. </div>
  1027. <p class="magick-description">Specify those image color channels to which subsequent operators are limited.</p>
  1028. <p>Choose from: <samp>Red</samp>, <samp>Green</samp>, <samp>Blue</samp>,
  1029. <samp>Alpha</samp>, <samp>Gray</samp>, <samp>Cyan</samp>, <samp>Magenta</samp>,
  1030. <samp>Yellow</samp>, <samp>Black</samp>, <samp>Opacity</samp>,
  1031. <samp>Index</samp>, <samp>RGB</samp>, <samp>RGBA</samp>, <samp>CMYK</samp>, or
  1032. <samp>CMYKA</samp>.</p>
  1033. <p>The channels above can also be specified as a comma-separated list or can be
  1034. abbreviated as a concatenation of the letters '<samp>R</samp>', '<samp>G</samp>',
  1035. '<samp>B</samp>', '<samp>A</samp>', '<samp>O</samp>', '<samp>C</samp>',
  1036. '<samp>M</samp>', '<samp>Y</samp>', '<samp>K</samp>'.</p>
  1037. <p>The numerals 0 to 31 may also be used to specify channels, where 0 to 5 are: <br />
  1038. <ul>
  1039. '<samp>0</samp>' equals <samp>Red</samp> or <samp>Cyan</samp> <br />
  1040. '<samp>1</samp>' equals <samp>Green</samp> or <samp>Magenta</samp> <br />
  1041. '<samp>2</samp>' equals <samp>Blue</samp> or <samp>Yellow</samp> <br />
  1042. '<samp>3</samp>' equals <samp>Black</samp> <br />
  1043. '<samp>4</samp>' equals <samp>Alpha</samp> or <samp>Opacity</samp> <br />
  1044. '<samp>5</samp>' equals <samp>Index</samp></p>
  1045. </ul>
  1046. <p>For example, to only select the <samp>Red</samp> and <samp>Blue</samp> channels
  1047. you can use any of the following:</p>
  1048. <pre class="bg-light text-dark mx-4">
  1049. <samp>-channel Red,Blue</samp>
  1050. <samp>-channel R,B</samp>
  1051. <samp>-channel RB</samp>
  1052. <samp>-channel 0,2</samp>
  1053. </pre>
  1054. <p>All the channels that are present in an image can be specified using the
  1055. special channel type <samp>All</samp>. Not all operators are 'channel capable',
  1056. but generally any operators that are generally 'grey-scale' image operators,
  1057. will understand this setting. See individual operator documentation. </p>
  1058. <p>On top of the normal channel selection an extra flag can be specified,
  1059. '<samp>Sync</samp>'. This is turned on by default and if set means that
  1060. operators that understand this flag should perform: cross-channel
  1061. synchronization of the channels. If not specified, then most grey-scale
  1062. operators will apply their image processing operations to each individual
  1063. channel (as specified by the rest of the <a href="command-line-options.html#channel">-channel</a>
  1064. setting) completely independently from each other. </p>
  1065. <p>For example for operators such as <a href="command-line-options.html#auto-level">-auto-level</a> and
  1066. <a href="command-line-options.html#auto-gamma">-auto-gamma</a> the color channels are modified
  1067. together in exactly the same way so that colors will remain in-sync. Without
  1068. it being set, then each channel is modified separately and
  1069. independently, which may produce color distortion. </p>
  1070. <p>The <a href="command-line-options.html#morphology">-morphology</a> '<samp>Convolve</samp>' method
  1071. and the <a href="command-line-options.html#compose">-compose</a> mathematical methods, also understands
  1072. the '<samp>Sync</samp>' flag to modify the behavior of pixel colors according
  1073. to the alpha channel (if present). That is to say it will modify the image
  1074. processing with the understanding that fully-transparent colors should not
  1075. contribute to the final result. </p>
  1076. <p>Basically, by default, operators work with color channels in synchronous, and
  1077. treats transparency as special, unless the <a href="command-line-options.html#channel">-channel</a>
  1078. setting is modified so as to remove the effect of the '<samp>Sync</samp>' flag.
  1079. How each operator does this depends on that operators current implementation.
  1080. Not all operators understands this flag at this time, but that is changing.
  1081. </p>
  1082. <p>To print a complete list of channel types, use <a href="command-line-options.html#list">-list
  1083. channel</a>.</p>
  1084. <p>By default, ImageMagick sets <a href="command-line-options.html#channel">-channel</a> to the value
  1085. '<samp>RGBK,sync</samp>', which specifies that operators act on all color
  1086. channels except the transparency channel, and that all the color channels are
  1087. to be modified in exactly the same way, with an understanding of transparency
  1088. (depending on the operation being applied). The 'plus' form <a
  1089. href="command-line-options.html#channel" >+channel</a> will reset the value back to this default. </p>
  1090. <p>Options that are affected by the <a href="command-line-options.html#channel" >-channel</a> setting
  1091. include the following.
  1092. <a href="command-line-options.html#auto-gamma">-auto-gamma</a>,
  1093. <a href="command-line-options.html#auto-level">-auto-level</a>,
  1094. <a href="command-line-options.html#black-threshold">-black-threshold</a>,
  1095. <a href="command-line-options.html#blur">-blur</a>,
  1096. <a href="command-line-options.html#clamp">-clamp</a>,
  1097. <a href="command-line-options.html#clut">-clut</a>,
  1098. <a href="command-line-options.html#combine">-combine</a>,
  1099. <a href="command-line-options.html#composite">-composite</a> (Mathematical compose methods only),
  1100. <a href="command-line-options.html#convolve">-convolve</a>,
  1101. <a href="command-line-options.html#contrast-stretch">-contrast-stretch</a>,
  1102. <a href="command-line-options.html#evaluate">-evaluate</a>,
  1103. <a href="command-line-options.html#function">-function</a>,
  1104. <a href="command-line-options.html#fx">-fx</a>,
  1105. <a href="command-line-options.html#gaussian-blur">-gaussian-blur</a>,
  1106. <a href="command-line-options.html#hald-clut">-hald-clut</a>,
  1107. <a href="command-line-options.html#motion-blur">-motion-blur</a>,
  1108. <a href="command-line-options.html#morphology">-morphology</a>,
  1109. <a href="command-line-options.html#negate">-negate</a>,
  1110. <a href="command-line-options.html#normalize">-normalize</a>,
  1111. <a href="command-line-options.html#ordered-dither">-ordered-dither</a>,
  1112. <a href="command-line-options.html#rotational-blur">-rotational-blur</a>,
  1113. <a href="command-line-options.html#random-threshold">-random-threshold</a>,
  1114. <a href="command-line-options.html#range-threshold">-range-threshold</a>,
  1115. <a href="command-line-options.html#separate">-separate</a>,
  1116. <a href="command-line-options.html#threshold">-threshold</a>, and
  1117. <a href="command-line-options.html#white-threshold">-white-threshold</a>.
  1118. </p>
  1119. <p>Warning, some operators behave differently when the <a href="command-line-options.html#channel"
  1120. >+channel</a> default setting is in effect, versus ANY user defined <a
  1121. href="command-line-options.html#channel" >-channel</a> setting (including the equivalent of the
  1122. default). These operators have yet to be made to understand the newer 'Sync'
  1123. flag. </p>
  1124. <p>For example <a href="command-line-options.html#threshold">-threshold</a> will by default grayscale
  1125. the image before thresholding, if no <a href="command-line-options.html#channel" >-channel</a> setting
  1126. has been defined. This is not 'Sync flag controlled, yet. </p>
  1127. <p>Also some operators such as <a href="command-line-options.html#blur">-blur</a>, <a
  1128. href="command-line-options.html#gaussian-blur">-gaussian-blur</a>, will modify their handling of the
  1129. color channels if the '<samp>alpha</samp>' channel is also enabled by <a
  1130. href="command-line-options.html#channel" >-channel</a>. Generally this done to ensure that
  1131. fully-transparent colors are treated as being fully-transparent, and thus any
  1132. underlying 'hidden' color has no effect on the final results. Typically
  1133. resulting in 'halo' effects. The newer <a href="command-line-options.html#morphology">-morphology</a>
  1134. convolution equivalents however does have a understanding of the 'Sync' flag
  1135. and will thus handle transparency correctly by default. </p>
  1136. <p>As an alpha channel is optional within images, some operators will read the
  1137. color channels of an image as a greyscale alpha mask, when the image has no
  1138. alpha channel present, and the <a href="command-line-options.html#channel" >-channel</a> setting tells
  1139. the operator to apply the operation using alpha channels. The <a
  1140. href="command-line-options.html#clut">-clut</a> operator is a good example of this. </p>
  1141. <div style="margin: auto;">
  1142. <h2><a class="anchor" id="channel-fx"></a>-channel-fx <var>expression</var></h2>
  1143. </div>
  1144. <p class="magick-description">Exchange, extract, or copy one or more image channels.</p>
  1145. <p>The expression consists of one or more channels, either mnemonic or numeric (e.g. red or 0, green or 1, etc.), separated by certain operation symbols as follows:</p>
  1146. <pre class="bg-light text-dark mx-4"><samp>&lt;=&gt; exchange two channels (e.g. red&lt;=&gt;blue)
  1147. =&gt; copy one channel to another channel (e.g. red=&gt;green)
  1148. = assign a constant value to a channel (e.g. red=50%)
  1149. , write new image with channels in the specified order (e.g. red, green)
  1150. ; add a new output image for the next set of channel operations (e.g. red; green; blue)
  1151. | move to the next input image for the source of channel data (e.g. | gray=>alpha)
  1152. </samp></pre>
  1153. <p>For example, to create 3 grayscale images from the red, green, and blue channels of an image, use:</p>
  1154. <pre class="bg-light text-dark mx-4 cli"><samp>-channel-fx "red; green; blue"</samp></pre>
  1155. <p>A channel without an operation symbol implies separate (i.e, semicolon).</p>
  1156. <p>Here we take an sRGB image and a grayscale image and inject the grayscale image into the alpha channel:</p>
  1157. <pre class="bg-light text-dark mx-4 cli"><samp>magick wizard.png mask.pgm -channel-fx '| gray=>alpha' wizard-alpha.png
  1158. </samp></pre>
  1159. <p>Use a similar command to define a read mask:</p>
  1160. <pre class="bg-light text-dark mx-4 cli"><samp>magick wizard.png mask.pgm -channel-fx '| gray=>read-mask' wizard-mask.png</samp></pre>
  1161. <p>In this example, we compute the mean RGB value for all opaque pixels of an image:</p>
  1162. <pre class="bg-light text-dark mx-4 cli"><samp>magick wizard-alpha.png -channel-fx "alpha=>read-mask" -channel rgb -format "%[fx:mean]\n" info:</samp></pre>
  1163. <p>Let's create two meta channels and populate them with a copy of the gray pixels:</p>
  1164. <pre class="bg-light text-dark mx-4 cli"><samp>magick gray.pgm -channel-fx "gray=>meta, gray=>meta1" gray.tif</samp></pre>
  1165. <p>Notice we save the results into a TIFF image file. Not all formats support multipectral images. TIFF, MIFF, MPC, and FTXT do.</p>
  1166. <p>Add <samp>-debug pixel</samp> prior to the <samp>-channel-fx</samp> option to track the channel morphology.</p>
  1167. <div style="margin: auto;">
  1168. <h2><a class="anchor" id="charcoal"></a>-charcoal <var>factor</var></h2>
  1169. </div>
  1170. <p class="magick-description">Simulate a charcoal drawing.</p>
  1171. <div style="margin: auto;">
  1172. <h2><a class="anchor" id="chop"></a>-chop <var>geometry</var></h2>
  1173. </div>
  1174. <p class="magick-description">Remove pixels from the interior of an image.</p>
  1175. <p>See <a href="command-line-processing.html#geometry">Image Geometry</a> for complete details about the <em class="arg">geometry</em> argument. The <var>width</var>
  1176. and <var>height</var> given in the of the <var>size</var>
  1177. portion of the <var>geometry</var> argument give the number of
  1178. columns and rows to remove. The <var>offset</var> portion of
  1179. the <var>geometry</var> argument is influenced by
  1180. a <a href="command-line-options.html#gravity">-gravity</a> setting, if present.</p>
  1181. <p>The <a href="command-line-options.html#chop">-chop</a> option removes entire rows and columns,
  1182. and moves the remaining corner blocks leftward and upward to close the gaps.</p>
  1183. <p>While it can remove internal rows and columns of pixels, it is more
  1184. typically used with as <a href="command-line-options.html#gravity">-gravity</a> setting and zero
  1185. offsets so as to remove a single edge from an image. Compare this to <a
  1186. href="command-line-options.html#shave" >-shave</a> which removes equal numbers of pixels from opposite
  1187. sides of the image. </p>
  1188. <p>Using <a href="command-line-options.html#chop">-chop</a> effectively undoes the results of a <a
  1189. href="command-line-options.html#splice">-splice</a> that was given the same <var>geometry</var> and <a href="command-line-options.html#gravity">-gravity</a> settings. </p>
  1190. <div style="margin: auto;">
  1191. <h2><a class="anchor" id="clahe"></a>-clahe <var>width</var>x<var>height</var>{%}{+}<var>number-bins</var>{+}<var>clip-limit</var>{!}</h2>
  1192. </div>
  1193. <p class="magick-description">Contrast limited adaptive histogram equalization.</p>
  1194. <p> The image is divided into tiles of <var>width</var> and <var>height</var> pixels. Append <samp>%</samp> to define the width and height as percentages of the image's dimensions. The tile size should be larger than the size of features to be preserved and respects the aspect ratio of the image. Add <samp>!</samp> to force an exact tile width and height. <var>number-bins</var> is the number of histogram bins per tile (min 2, max 65536). The number of histogram bins should be smaller than the number of pixels in a single tile. <var>clip-limit</var> is the contrast limit for localized changes in contrast. A clip-limit of 2 to 3 is a good starting place (e.g. -clahe 50x50%+128+3). Very large values will let the histogram equalization do whatever it wants to do, that is result in maximal local contrast. The value 1 will result in the original image. Note, if the number of bins and the clip-limit are ommitted, they default to 128 and no clipping respectively.</p>
  1195. <div style="margin: auto;">
  1196. <h2><a class="anchor" id="clamp"></a>-clamp</h2>
  1197. </div>
  1198. <p class="magick-description">Set each pixel whose value is below zero to zero and any the pixel whose value is above the quantum range to the quantum range (e.g. 65535) otherwise the pixel value remains unchanged.</p>
  1199. <div style="margin: auto;">
  1200. <h2><a class="anchor" id="clip"></a>-clip</h2>
  1201. </div>
  1202. <p class="magick-description">Apply the clipping path if one is present.</p>
  1203. <p>If a clipping path is present, it is applied to subsequent operations.</p>
  1204. <p>For example, in the command</p>
  1205. <pre class="bg-light text-dark mx-4 cli"><samp>magick cockatoo.tif -clip -negate negated.tif
  1206. </samp></pre>
  1207. <p>only the pixels within the clipping path are negated.</p>
  1208. <p>The <a href="command-line-options.html#clip">-clip</a> feature requires SVG support. If the SVG
  1209. delegate library is not present, the option is ignored.</p>
  1210. <p>Use <a href="command-line-options.html#clip">+clip</a> to disable clipping for subsequent operations.</p>
  1211. <div style="margin: auto;">
  1212. <h2><a class="anchor" id="clip-mask"></a>-clip-mask</h2>
  1213. </div>
  1214. <p class="magick-description">Clip the image as defined by this mask.</p>
  1215. <p>Use the alpha channel of the current image as a mask. Any areas that is
  1216. white is not modified by any of the 'image processing operators' that follow,
  1217. until the mask is removed. Pixels in the black areas of the clip mask are
  1218. modified per the requirements of the operator. </p>
  1219. <p>In some ways this is similar to (though not the same) as defining
  1220. a rectangular <a href="command-line-options.html#region" >-region</a>, or using the negative of the
  1221. mask (third) image in a three image <a href="command-line-options.html#composite" >-composite</a>,
  1222. operation. </p>
  1223. <p>Use <a href="command-line-options.html#clip-mask">+clip-mask</a> to disable clipping for subsequent operations.</p>
  1224. <div style="margin: auto;">
  1225. <h2><a class="anchor" id="clip-path"></a>-clip-path <var>id</var></h2>
  1226. </div>
  1227. <p class="magick-description">Clip along a named path from the 8BIM profile.</p>
  1228. <p>This is identical to <a href="command-line-options.html#clip">-clip</a> except choose a specific clip path in the event the image has more than one path available. ImageMagick supports UTF-8 encoding. If your named path is in a different encoding, use `iconv` to convert the clip path name to that encoding otherwise the path name will not match.</p>
  1229. <p>Use <a href="command-line-options.html#clip-path">+clip-path</a> to disable clipping for subsequent operations.</p>
  1230. <div style="margin: auto;">
  1231. <h2><a class="anchor" id="clone"></a>-clone <var>index(s)</var></h2>
  1232. </div>
  1233. <p class="magick-description">Make a clone of an image (or images).</p>
  1234. <p>Inside parenthesis (where the operator is normally used) it will make a
  1235. clone of the images from the last 'pushed' image sequence, and adds them to
  1236. the end of the current image sequence. Outside parenthesis
  1237. (not recommended) it clones the images from the current image sequence. </p>
  1238. <p>Specify the image by its index in the sequence. The first image is index
  1239. 0. Negative indexes are relative to the end of the sequence; for
  1240. example, <samp>−1</samp>
  1241. represents the last image of the sequence. Specify a range of images with a
  1242. dash (e.g. <samp>0−4</samp>). Separate multiple indexes with commas but no
  1243. spaces (e.g. <samp>0,2,5</samp>). A value of '<samp>0−−1</samp> will
  1244. effectively clone all the images. </p>
  1245. <p>The <a href="command-line-options.html#clone">+clone</a> will simply make a copy of the last image
  1246. in the image sequence, and is thus equivalent to using an argument of
  1247. '<samp>−1</samp>'. </p>
  1248. <div style="margin: auto;">
  1249. <h2><a class="anchor" id="clut"></a>-clut</h2>
  1250. </div>
  1251. <p class="magick-description">Replace the channel values in the first image using each corresponding channel in the second image as a <b>c</b>olor <b>l</b>ook<b>u</b>p <b>t</b>able.</p>
  1252. <p>The second (LUT) image is ordinarily a gradient image containing the
  1253. histogram mapping of how each channel should be modified. Typically it is a
  1254. either a single row or column image of replacement color values. If larger
  1255. than a single row or column, values are taken from a diagonal line from
  1256. top-left to bottom-right corners.</p>
  1257. <p>The lookup is further controlled by the <a
  1258. href="command-line-options.html#interpolate">-interpolate</a> setting, which is especially handy for an
  1259. LUT which is not the full length needed by the ImageMagick installed Quality
  1260. (Q) level. Good settings for this are '<samp>bilinear</samp>' and
  1261. '<samp>catrom</samp>'. Catom can return a useful second-order continuity.</p>
  1262. <p>This operator is especially suited to replacing a grayscale image with a
  1263. specific color gradient from the CLUT image. </p>
  1264. <p>Only the channel values defined by the <a href="command-line-options.html#channel">-channel</a>
  1265. setting will have their values replaced. In particular, since the default <a
  1266. href="command-line-options.html#channel">-channel</a> setting is <samp>RGB</samp>, this means that
  1267. transparency (alpha/matte channel) is not affected, unless the <a
  1268. href="command-line-options.html#channel">-channel</a> setting is modified. When the alpha channel is
  1269. set, it is treated by the <a href="command-line-options.html#clut" >-clut</a> operator in the same way
  1270. as the other channels, implying that alpha/matte values are replaced using the
  1271. alpha/matte values of the original image. </p>
  1272. <p>If either the image being modified, or the lookup image, contains no
  1273. transparency (i.e. <a href="command-line-options.html#alpha" >-alpha</a> is turned 'off') but the <a
  1274. href="command-line-options.html#channel">-channel</a> setting includes alpha replacement, then it is
  1275. assumed that image represents a grayscale gradient which is used for the
  1276. replacement alpha values. That is you can use a grayscale CLUT image to
  1277. adjust a existing images alpha channel, or you can color a grayscale image
  1278. using colors form CLUT containing the desired colors, including transparency.
  1279. </p>
  1280. <p>See also <a href="command-line-options.html#hald-clut" >-hald-clut</a> which replaces colors
  1281. according to the lookup of the full color RGB value from a 2D representation
  1282. of a 3D color cube. </p>
  1283. <div style="margin: auto;">
  1284. <h2><a class="anchor" id="coalesce"></a>-coalesce</h2>
  1285. </div>
  1286. <p class="magick-description">Fully define the look of each frame of an GIF animation sequence, to form a 'film strip' animation.</p>
  1287. <p>Overlay each image in an image sequence according to
  1288. its <a href="command-line-options.html#dispose">-dispose</a> meta-data, to reproduce the look of
  1289. an animation at each point in the animation sequence. All images should be
  1290. the same size, and are assigned appropriate GIF disposal settings for the
  1291. animation to continue working as expected as a GIF animation. Such frames
  1292. are more easily viewed and processed than the highly optimized GIF overlay
  1293. images. </p>
  1294. <p>The animation can be re-optimized after processing using
  1295. the <a href="command-line-options.html#layers">-layers</a> method '<samp>optimize</samp>', although
  1296. there is no guarantee that the restored GIF animation optimization is
  1297. better than the original. </p>
  1298. <div style="margin: auto;">
  1299. <h2><a class="anchor" id="colorize"></a>-colorize <var>value</var></h2>
  1300. </div>
  1301. <p class="magick-description">Colorize the image by an amount specified by <var>value</var> using the color specified by the most recent <a href="command-line-options.html#fill" >-fill</a> setting.</p>
  1302. <p>Specify the amount of colorization as a percentage. Separate colorization
  1303. values can be applied to the red, green, and blue channels of the image with
  1304. a comma-delimited list of colorization
  1305. values (e.g., <samp>-colorize 0,0,50</samp>).</p>
  1306. <div style="margin: auto;">
  1307. <h2><a class="anchor" id="colormap"></a>-colormap <var>type</var></h2>
  1308. </div>
  1309. <p class="magick-description">Define the colormap type.</p>
  1310. <p>The <var>type</var> can be <samp>shared</samp> or <samp>private</samp>.</p>
  1311. <p>This option only applies when the default X server visual
  1312. is <samp>PseudoColor</samp> or <samp>GrayScale</samp>. Refer
  1313. to <a href="command-line-options.html#visual">-visual</a> for more details. By default,
  1314. a shared colormap is allocated. The image shares colors with
  1315. other X clients. Some image colors could be approximated,
  1316. therefore your image may look very different than intended.
  1317. If <samp>private</samp> is chosen, the image colors appear exactly
  1318. as they are defined. However, other clients may go <var>technicolor</var>
  1319. when the image colormap is installed.</p>
  1320. <div style="margin: auto;">
  1321. <h2><a class="anchor" id="colors"></a>-colors <var>value</var></h2>
  1322. </div>
  1323. <p class="magick-description">Set the preferred number of colors in the image.</p>
  1324. <p>The actual number of colors in the image may be less than your request,
  1325. but never more. Note that this a color reduction option. Images with fewer
  1326. unique colors than specified by <var>value</var> will have any
  1327. duplicate or unused colors removed. The ordering of an existing color
  1328. palette may be altered. When converting an image from color to grayscale,
  1329. it is more efficient to convert the image to the gray colorspace before
  1330. reducing the number of colors. Refer to
  1331. the <a href="../www/quantize.html">
  1332. color reduction algorithm</a> for more details.</p>
  1333. <div style="margin: auto;">
  1334. <h2><a class="anchor" id="color-matrix"></a>-color-matrix <var>matrix</var></h2>
  1335. </div>
  1336. <p class="magick-description">Apply color correction to the image.</p>
  1337. <p>This option permits saturation changes, hue rotation, luminance to alpha,
  1338. and various other effects. Although variable-sized transformation matrices
  1339. can be used, typically one uses a 5x5 matrix for an RGBA image and a 6x6
  1340. for CMYKA (or RGBA with offsets). The matrix is similar to those used by
  1341. Adobe Flash except offsets are in column 6 rather than 5 (in support of
  1342. CMYKA images) and offsets are normalized (divide Flash offset by 255).</p>
  1343. <p>As an example, to add contrast to an image with offsets, try this command:</p>
  1344. <pre class="bg-light text-dark mx-4 cli"><samp>magick kittens.jpg -color-matrix \
  1345. " 1.5 0.0 0.0 0.0, 0.0, -0.157 \
  1346. 0.0 1.5 0.0 0.0, 0.0, -0.157 \
  1347. 0.0 0.0 1.5 0.0, 0.0, -0.157 \
  1348. 0.0 0.0 0.0 1.0, 0.0, 0.0 \
  1349. 0.0 0.0 0.0 0.0, 1.0, 0.0 \
  1350. 0.0 0.0 0.0 0.0, 0.0, 1.0" kittens.png
  1351. </samp></pre>
  1352. <div style="margin: auto;">
  1353. <h2><a class="anchor" id="colorspace"></a>-colorspace <var>value</var></h2>
  1354. </div>
  1355. <p class="magick-description">Set the image colorspace.</p>
  1356. <p>Choices are:</p>
  1357. <pre class="bg-light text-dark mx-4"><samp>CMY CMYK Gray HCL
  1358. HCLp HSB HSI HSL
  1359. HSV HWB Jzazbz Lab
  1360. LCHab LCHuv LMS Log
  1361. Luv OHTA OkLab OkLCH
  1362. Rec601YCbCr Rec709YCbCr RGB scRGB
  1363. sRGB Transparent xyY XYZ
  1364. YCbCr YCC YDbDr YIQ
  1365. YPbPr YUV Undefined
  1366. </samp></pre>
  1367. <p>To print a complete list of colorspaces, use <a href="command-line-options.html#list">-list colorspace</a>.</p>
  1368. <p>For a more accurate color conversion to or from the linear RGB, CMYK, or grayscale colorspaces, use the <a href="command-line-options.html#profile">-profile</a> option. Note, ImageMagick assumes the sRGB colorspace if the image format does not indicate otherwise. For colorspace conversion, the gamma function is first removed to produce linear RGB.</p>
  1369. <div class="pre-scrollable bg-light text-dark mx-4">
  1370. <table class="table table-sm table-hover table-striped table-responsive">
  1371. <caption>Conversion of RGB to Other Color Spaces</caption>
  1372. <tr><th valign="middle">CMY</th></tr>
  1373. <tr><td valign="middle">C=<var>QuantumRange</var>−R</td></tr>
  1374. <tr><td valign="middle">M=<var>QuantumRange</var>−G</td></tr>
  1375. <tr><td valign="middle">Y=<var>QuantumRange</var>−B</td></tr>
  1376. <tr><th valign="middle">CMYK — starts with CMY from above</th></tr>
  1377. <tr><td valign="middle">K=min(C,Y,M)</td></tr>
  1378. <tr><td valign="middle">C=<var>QuantumRange</var>*(C−K)/(<var>QuantumRange</var>−K)</td></tr>
  1379. <tr><td valign="middle">M=<var>QuantumRange</var>*(M−K)/(<var>QuantumRange</var>−K)</td></tr>
  1380. <tr><td valign="middle">Y=<var>QuantumRange</var>*(Y−K)/(<var>QuantumRange</var>−K)</td></tr>
  1381. <tr><th valign="middle">Gray</th></tr>
  1382. <tr><td valign="middle">Gray = 0.212656*R+0.715158*G+0.072186*B</td></tr>
  1383. <tr><th valign="middle">HSB — Hue, Saturation, Brightness; like a cone peak downward</th></tr>
  1384. <tr><td valign="middle">H=angle around perimeter (0 to 360 deg); H=0 is red; increasing angles toward green</td></tr>
  1385. <tr><td valign="middle">S=distance from axis outward</td></tr>
  1386. <tr><td valign="middle">B=distance along axis from bottom upward; B=max(R,G,B); <var>intensity-like</var></td></tr>
  1387. <tr><th valign="middle">HSL — Hue, Saturation, Lightness; like a double cone end-to-end with peaks at very top and bottom</th></tr>
  1388. <tr><td valign="middle">H=angle around perimeter (0 to 360 deg); H=0 is red; increasing angles toward green</td></tr>
  1389. <tr><td valign="middle">S=distance from axis outward</td></tr>
  1390. <tr><td valign="middle">L=distance along axis from bottom upward; L=0.5*max(R,G,B) + 0.5*min(R,G,B); <var>intensity-like</var></td></tr>
  1391. <tr><th valign="middle">HWB — Hue, Whiteness, Blackness</th></tr>
  1392. <tr><td valign="middle">Hue (complicated equation)</td></tr>
  1393. <tr><td valign="middle">Whiteness (complicated equation)</td></tr>
  1394. <tr><td valign="middle">Blackness (complicated equation)</td></tr>
  1395. <tr><th valign="middle">LAB</th></tr>
  1396. <tr><td valign="middle">L (complicated equation relating X,Y,Z)</td></tr>
  1397. <tr><td valign="middle">A (complicated equation relating X,Y,Z)</td></tr>
  1398. <tr><td valign="middle">B (complicated equation relating X,Y,Z)</td></tr>
  1399. <tr><th valign="middle">LinearGray</th></tr>
  1400. <tr><td valign="middle">LinearGray = 0.298839*R+0.586811*G+0.114350*B</td></tr>
  1401. <tr><th valign="middle">LOG</th></tr>
  1402. <tr><td valign="middle">I1 (complicated equation involving logarithm of R)</td></tr>
  1403. <tr><td valign="middle">I2 (complicated equation involving logarithm of G)</td></tr>
  1404. <tr><td valign="middle">I3 (complicated equation involving logarithm of B)</td></tr>
  1405. <tr><th valign="middle">OHTA — approximates principal components transformation</th></tr>
  1406. <tr><td valign="middle">I1=0.33333*R+0.33334*G+0.33333*B; <var>intensity-like</var></td></tr>
  1407. <tr><td valign="middle">I2=(0.50000*R+0.00000*G−0.50000*B)*(<var>QuantumRange</var>+1)/2</td></tr>
  1408. <tr><td valign="middle">I3=(−0.25000*R+0.50000*G−0.25000*B)*(<var>QuantumRange</var>+1)/2</td></tr>
  1409. <tr><th valign="middle">Rec601Luma</th></tr>
  1410. <tr><td valign="middle">Gray = 0.298839*R+0.586811*G+0.114350*B</td></tr>
  1411. <tr><th valign="middle">Rec601YCbCr</th></tr>
  1412. <tr><td valign="middle">Y=0.2988390*R+0.5868110*G+0.1143500*B; <var>intensity-like</var></td></tr>
  1413. <tr><td valign="middle">Cb=(−0.168736*R-0.331264*G+0.500000*B)*(<var>QuantumRange</var>+1)/2</td></tr>
  1414. <tr><td valign="middle">Cr=(0.500000*R−0.418688*G−0.081312*B)*(<var>QuantumRange</var>+1)/2</td></tr>
  1415. <tr><th valign="middle">Rec709Luma</th></tr>
  1416. <tr><td valign="middle">Gray=0.212656*R+0.715158*G+0.072186*B</td></tr>
  1417. <tr><th valign="middle">Rec709YCbCr</th></tr>
  1418. <tr><td valign="middle">Y=0.212656*R+0.715158*G+0.072186*B; <var>intensity-like</var></td></tr>
  1419. <tr><td valign="middle">Cb=(−0.114572*R−0.385428*G+0.500000*B)+(<var>QuantumRange</var>+1)/2</td></tr>
  1420. <tr><td valign="middle">Cr=(0.500000*R−0.454153*G−0.045847*B)+(<var>QuantumRange</var>+1)/2</td></tr>
  1421. <tr><th valign="middle">sRGB</th></tr>
  1422. <tr><td valign="middle">if R ≤ .0.0031308 then Rs=R/12.92 else Rs=1.055 R ^ (1.0 / 2.4) - 0.055</td></tr>
  1423. <tr><td valign="middle">if G ≤ .0.0031308 then Gs=B/12.92 else Gs=1.055 R ^ (1.0 / 2.4) - 0.055</td></tr>
  1424. <tr><td valign="middle">if B ≤ .0.0031308 then Bs=B/12.92 else Bs=1.055 R ^ (1.0 / 2.4) - 0.055</td></tr>
  1425. <tr><th valign="middle">XYZ</th></tr>
  1426. <tr><td valign="middle">X=0.4124564*R+0.3575761*G+0.1804375*B</td></tr>
  1427. <tr><td valign="middle">Y=0.2126729*R+0.7151522*G+0.0721750*B</td></tr>
  1428. <tr><td valign="middle">Z=0.0193339*R+0.1191920*G+0.9503041*B</td></tr>
  1429. <tr><th valign="middle">YCC</th></tr>
  1430. <tr><td valign="middle">Y=(0.298839*R+0.586811*G+0.114350*B) (with complicated scaling); <var>intensity-like</var></td></tr>
  1431. <tr><td valign="middle">C1=(−0.298839*R−0.586811*G+0.88600*B) (with complicated scaling)</td></tr>
  1432. <tr><td valign="middle">C2=(0.70100*R−0.586811*G−0.114350*B) (with complicated scaling)</td></tr>
  1433. <tr><th valign="middle">YCbCr</th></tr>
  1434. <tr><td valign="middle">Y=0.2988390*R+0.5868110*G+0.1143500*B; <var>intensity-like</var></td></tr>
  1435. <tr><td valign="middle">Cb=(−0.168736*R−0.331264*G+0.500000*B)*(<var>QuantumRange</var>+1)/2</td></tr>
  1436. <tr><td valign="middle">Cr=(0.500000*R−0.418688*G−0.081312*B)*(<var>QuantumRange</var>+1)/2</td></tr>
  1437. <tr><th valign="middle">YIQ</th></tr>
  1438. <tr><td valign="middle">Y=0.298839*R+0.586811*G+0.114350*B; <var>intensity-like</var></td></tr>
  1439. <tr><td valign="middle">I=(0.59600*R−0.27400*G−0.32200*B)*(<var>QuantumRange</var>+1)/2</td></tr>
  1440. <tr><td valign="middle">Q=(0.21100*R−0.52300*G+0.31200*B)*(<var>QuantumRange</var>+1)/2</td></tr>
  1441. <tr><th valign="middle">YPbPr</th></tr>
  1442. <tr><td valign="middle">Y=0.2988390*R+0.5868110*G+0.1143500*B; <var>intensity-like</var></td></tr>
  1443. <tr><td valign="middle">Pb=(−0.168736*R−0.331264*G+0.500000*B)*(<var>QuantumRange</var>+1)/2</td></tr>
  1444. <tr><td valign="middle">Pr=(0.500000*R−0.418688*G−0.081312*B)*(<var>QuantumRange</var>+1)/2</td></tr>
  1445. <tr><th valign="middle">YUV</th></tr>
  1446. <tr><td valign="middle">Y=0.298839*R+0.586811*G+0.114350*B; <var>intensity-like</var></td></tr>
  1447. <tr><td valign="middle">U=(−0.14740*R−0.28950*G+0.43690*B)*(<var>QuantumRange</var>+1)/2</td></tr>
  1448. <tr><td valign="middle">V=(0.61500*R−0.51500*G−0.10000*B)*(<var>QuantumRange</var>+1)/2</td></tr>
  1449. </table>
  1450. </div>
  1451. <p>Note the scRGB colorspace requires HDRI support otherwise it behaves just like linear RGB.</p>
  1452. <p>Use the <samp>Undefined</samp> colorspace to identify multi-spectral images.</p>
  1453. <div style="margin: auto;">
  1454. <h2><a class="anchor" id="color-threshold"></a>-color-threshold <var>start-color</var>-<var>stop-color</var></h2>
  1455. </div>
  1456. <p>Return a binary image where all colors within the specified range are changed to white. All other colors are changed to black.</p>
  1457. <div style="margin: auto;">
  1458. <h2><a class="anchor" id="combine"></a>-combine</h2>
  1459. <h2>+combine <var>colorspace</var></h2>
  1460. </div>
  1461. <p class="magick-description">Combine one or more images into a single image.</p>
  1462. <p>The channels (previously set by <a href="command-line-options.html#channel">-channel</a>) of the
  1463. combined image are taken from the grayscale values of each image in the
  1464. sequence, in order. For the default -channel setting of <samp>RGB</samp>, this
  1465. means the first image is assigned to the <samp>Red</samp> channel, the second
  1466. to the <samp>Green</samp> channel, the third to the <samp>Blue</samp>.</p>
  1467. <p>This option can be thought of as the inverse to <a
  1468. href="command-line-options.html#separate">-separate</a>, so long as the channel settings are the same.
  1469. Thus, in the following example, the final image should be a copy of the
  1470. original. </p>
  1471. <pre class="bg-light text-dark mx-4 cli"><samp>magick original.png -channel RGB -separate sepimage.png
  1472. convert sepimage-0.png sepimage-1.png sepimage-2.png -channel RGB \
  1473. -combine imagecopy.png
  1474. </samp></pre>
  1475. <div style="margin: auto;">
  1476. <h2><a class="anchor" id="comment"></a>-comment <var>string</var></h2>
  1477. </div>
  1478. <p class="magick-description">Embed a comment in an image.</p>
  1479. <p>This option sets the comment meta-data of an image read in after this
  1480. option has been given. To modify a comment of images already in memory use
  1481. "<samp><a href="command-line-options.html#set">-set</a> comment</samp>". </p>
  1482. <p>The comment can contain special format characters listed in the <a
  1483. href="../www/escape.html">Format and
  1484. Print Image Properties</a>. These attributes are expanded when the comment
  1485. is finally assigned to the individual images. </p>
  1486. <p>If the first character of <var>string</var> is <var>@</var>, the image comment is read from a file titled by the
  1487. remaining characters in the string. Comments read in from a file are literal;
  1488. no embedded formatting characters are recognized.</p>
  1489. <p>Comment meta-data are not visible on the image itself. To do that use the
  1490. <a href="command-line-options.html#annotate">-annotate</a> or <a href="command-line-options.html#draw">-draw</a> options
  1491. instead.</p>
  1492. <p>For example,</p>
  1493. <pre class="bg-light text-dark mx-4 cli"><samp>-comment "%m:%f %wx%h" bird.miff
  1494. </samp></pre>
  1495. <p>produces an image comment of <samp>MIFF:bird.miff 512x480</samp> (assuming
  1496. that the image <samp>bird.miff</samp> has a width of 512 and a height of
  1497. 480.</p>
  1498. <div style="margin: auto;">
  1499. <h2><a class="anchor" id="compare"></a>-compare</h2>
  1500. </div>
  1501. <p class="magick-description">Mathematically and visually annotate the difference between an image and its reconstruction</p>
  1502. <p>This is a convert version of "<samp>compare</samp>" for two same sized images. The syntax is as follows, but other metrics are allowed.</p>
  1503. <pre class="bg-light text-dark mx-4 cli"><samp>magick image.png reference.png -metric RMSE -compare \ <br/> difference.png
  1504. </samp></pre>
  1505. <p>To get the metric value use the string format "%[distortion]".</p>
  1506. <pre class="bg-light text-dark mx-4 cli"><samp>magick image.png reference.png -metric RMSE -compare -format \
  1507. "%[distortion]" info:
  1508. </samp></pre>
  1509. <div style="margin: auto;">
  1510. <h2><a class="anchor" id="complex"></a>-complex <var>operator</var></h2>
  1511. </div>
  1512. <p class="magick-description">Perform complex mathematics on an image sequence</p>
  1513. Choose from these operators:
  1514. <pre class="bg-light text-dark mx-4"><samp>add
  1515. conjugate
  1516. divide
  1517. magnitude-phase
  1518. multiply
  1519. real-imaginary
  1520. subtract
  1521. </samp></pre>
  1522. <p>Optionally specify the <samp>divide</samp> operator SNR with <samp><a href="command-line-options.html#define">-define</a> complex:snr=float</samp>.</p>
  1523. <div style="margin: auto;">
  1524. <h2><a class="anchor" id="compose"></a>-compose <var>operator</var></h2>
  1525. </div>
  1526. <p class="magick-description">Set the type of image composition.</p>
  1527. <p>See <a href="../www/compose.html">Alpha Compositing</a> for
  1528. a detailed discussion of alpha compositing.</p>
  1529. <p>This setting affects image processing operators that merge two (or more)
  1530. images together in some way. This includes the operators,
  1531. <a href="command-line-options.html#composite">-compare</a>,
  1532. <a href="command-line-options.html#composite">-composite</a>,
  1533. <a href="command-line-options.html#layers">-layers</a> composite,
  1534. <a href="command-line-options.html#flatten">-flatten</a>,
  1535. <a href="command-line-options.html#mosaic">-mosaic</a>,
  1536. <a href="command-line-options.html#layers">-layers</a> merge,
  1537. <a href="command-line-options.html#border">-border</a>,
  1538. <a href="command-line-options.html#frame">-frame</a>,
  1539. and <a href="command-line-options.html#extent">-extent</a>. </p>
  1540. <p>It is also one of the primary options for the "<samp>composite</samp>"
  1541. command. </p>
  1542. <div style="margin: auto;">
  1543. <h2><a class="anchor" id="composite"></a>-composite</h2>
  1544. </div>
  1545. <p class="magick-description">Perform alpha composition on two images and an optional mask</p>
  1546. <p>Take the first image 'destination' and overlay the second 'source' image
  1547. according to the current <a href="command-line-options.html#compose">-compose</a> setting. The location
  1548. of the 'source' or 'overlay' image is controlled according to <a
  1549. href="command-line-options.html#gravity" >-gravity</a>, and <a href="command-line-options.html#geometry" >-geometry</a>
  1550. settings. </p>
  1551. <p>If a third image is given this is treated as a grayscale blending 'mask' image
  1552. relative to the first 'destination' image. This mask is blended with the
  1553. source image. However for the '<samp>displace</samp>' compose method, the
  1554. mask is used to provide a separate Y-displacement image instead. </p>
  1555. <p>If a <a href="command-line-options.html#compose">-compose</a> method requires extra numerical
  1556. arguments or flags these can be provided by setting the <a
  1557. href="command-line-options.html#set">-set</a> '<samp>option:compose:args</samp>'
  1558. appropriately for the compose method. </p>
  1559. <p>Some <a href="command-line-options.html#compose">-compose</a> methods can modify the 'destination'
  1560. image outside the overlay area. It is disabled by default. You can enable this by setting the define: <a href="command-line-options.html#define">-define</a> '<samp>compose:clip-to-self=true</samp>'.</p>
  1561. <p>The SVG compositing specification requires that color and opacity values range between zero and QuantumRange inclusive. You can permit values outside this range with this option: <a href="command-line-options.html#set">-set</a> '<samp>option:compose:clamp=false</samp></p>
  1562. <div style="margin: auto;">
  1563. <h2><a class="anchor" id="compress"></a>-compress <var>type</var></h2>
  1564. </div>
  1565. <p class="magick-description">Use pixel compression specified by <var>type</var> when writing the image.</p>
  1566. <p>Choices are: <samp>None</samp>, <samp>BZip</samp>, <samp>Fax</samp>, <samp>Group4</samp>, <samp>JPEG</samp>, <samp>JPEG2000</samp>, <samp>Lossless</samp>, <samp>LZW</samp>, <samp>RLE</samp> or <samp>Zip</samp>.</p>
  1567. <p>To print a complete list of compression types, use <a href="command-line-options.html#list">-list
  1568. compress</a>.</p>
  1569. <p>Specify <a href="command-line-options.html#compress">+compress</a> to store the binary image in an
  1570. uncompressed format. The default is the compression type of the specified
  1571. image file.</p>
  1572. <p>If <samp>LZW</samp> compression is specified but LZW compression has not been
  1573. enabled, the image data is written in an uncompressed LZW format that can be
  1574. read by LZW decoders. This may result in larger-than-expected GIF files.</p>
  1575. <p><samp>Lossless</samp> refers to lossless JPEG, which is only available if the
  1576. JPEG library has been patched to support it. Use of lossless JPEG is generally
  1577. not recommended.</p>
  1578. <p>
  1579. When writing an ICO file, you may request that the images be encoded in
  1580. PNG format, by specifying <samp>Zip</samp> compression.</p>
  1581. <p>
  1582. When writing a JNG file, specify <samp>Zip</samp> compression to request that
  1583. the alpha channel be encoded in PNG "IDAT" format, or <samp>JPEG</samp>
  1584. to request that it be encoded in JPG "JDAA" format.</p>
  1585. <p>Use the <a href="command-line-options.html#quality">-quality</a> option to set the compression level
  1586. to be used by JPEG, PNG, MIFF, and MPEG encoders.
  1587. Use the <a href="command-line-options.html#sampling-factor">-sampling-factor</a> option to set the
  1588. sampling factor to be used by JPEG, MPEG, and YUV encoders for down-sampling
  1589. the chroma channels.</p>
  1590. <div style="margin: auto;">
  1591. <h2><a class="anchor" id="connected-components"></a>-connected-components <var>connectivity</var></h2>
  1592. </div>
  1593. <p class="magick-description"><a href="../www/connected-components.html">connected-components</a> labeling detects connected regions in an image, choose from 4 or 8 way connectivity.</p>
  1594. <p>Use <samp><a href="command-line-options.html#define" >-define</a> connected-components:verbose=true</samp> to output statistics associated with each unique label.</p>
  1595. <div style="margin: auto;">
  1596. <h2><a class="anchor" id="contrast"></a>-contrast</h2>
  1597. </div>
  1598. <p class="magick-description">Enhance or reduce the image contrast.</p>
  1599. <p>This option enhances the intensity differences between the lighter and
  1600. darker elements of the image. Use <a href="command-line-options.html#contrast">-contrast</a> to enhance
  1601. the image or <a href="command-line-options.html#contrast">+contrast</a> to reduce the image
  1602. contrast.</p>
  1603. <p>For a more pronounced effect you can repeat the option:</p>
  1604. <pre class="bg-light text-dark mx-4 cli"><samp>magick rose: -contrast -contrast rose_c2.png
  1605. </samp></pre>
  1606. <div style="margin: auto;">
  1607. <h2><a class="anchor" id="contrast-stretch"></a>-contrast-stretch <var>black-point</var><br />-contrast-stretch <var>black-point</var>{x<var>white-point</var>}{<var>%</var>}</h2>
  1608. </div>
  1609. <p class="magick-description">Increase the contrast in an image by <var>stretching</var> the range of intensity values.</p>
  1610. <p>While performing the stretch, black-out at most <var>black-point</var> pixels and white-out at most <var>white-point</var> pixels. Or, if percent is used, black-out at most
  1611. <var >black-point %</var> pixels and white-out at most <var>white-point %</var> pixels.</p>
  1612. <p>Prior to ImageMagick 6.4.7-0, <a href="command-line-options.html#contrast-stretch"
  1613. >-contrast-stretch</a> will black-out at most <var>black-point</var> pixels and white-out at most <var >total pixels
  1614. minus white-point</var> pixels. Or, if percent is used, black-out at most <var>black-point %</var> pixels and white-out at most <var>100% minus white-point %</var> pixels.</p>
  1615. <p>Note that <samp>-contrast-stretch 0</samp> will modify the image such that
  1616. the image's min and max values are stretched to 0 and <var>QuantumRange</var>, respectively, without any loss of data due to burn-out or
  1617. clipping at either end. This is not the same as <a href="command-line-options.html#normalize"
  1618. >-normalize</a>, which is equivalent to <samp>-contrast-stretch 0.15x0.05%</samp> (or
  1619. prior to ImageMagick 6.4.7-0, <samp>-contrast-stretch 2%x99%</samp>).</p>
  1620. <p>Internally operator works by creating a histogram bin, and then uses that
  1621. bin to modify the image. As such some colors may be merged together when they
  1622. originally fell into the same 'bin'. </p>
  1623. <p>All the channels are normalized in concert by the same amount so as to
  1624. preserve color integrity, when the default <a href="command-line-options.html#channel" >+channel</a>
  1625. setting is in use. Specifying any other <a href="command-line-options.html#channel" >-channel</a>
  1626. setting will normalize the RGB channels independently.</p>
  1627. <p>See also <a href="command-line-options.html#auto-level" >-auto-level</a> for a 'perfect'
  1628. normalization of mathematical images. </p>
  1629. <p>This operator is under review for re-development. </p>
  1630. <div style="margin: auto;">
  1631. <h2><a class="anchor" id="convolve"></a>-convolve <var>kernel</var></h2>
  1632. </div>
  1633. <p class="magick-description">Convolve an image with a user-supplied convolution kernel.</p>
  1634. <p>The <var>kernel</var> is a matrix specified as
  1635. a comma-separated list of integers (with no spaces), ordered left-to right,
  1636. starting with the top row. Presently, only odd-dimensioned kernels are
  1637. supported, and therefore the number of entries in the specified <var>kernel</var> must be 3<sup>2</sup>=9, 5<sup>2</sup>=25,
  1638. 7<sup>2</sup>=49, etc. </p>
  1639. <p>Note that the <a class="text-nowrap" href="command-line-options.html#convolve">-convolve</a> operator supports the <a class="text-nowrap" href="command-line-options.html#bias">-bias</a> setting. This option shifts the convolution so that
  1640. positive and negative results are relative to a user-specified bias value.
  1641. This is important for non-HDRI compilations of ImageMagick when dealing with
  1642. convolutions that contain negative as well as positive values. This is
  1643. especially the case with convolutions involving high pass filters or edge
  1644. detection. Without an output bias, the negative values is clipped at zero.
  1645. </p>
  1646. <p>When using an ImageMagick with the HDRI compile-time setting, <a class="text-nowrap" href="command-line-options.html#bias">-bias</a> is not needed, as ImageMagick is able to store/handle any
  1647. negative results without clipping to the color value range (0..QuantumRange).
  1648. See the discussion on HDRI implementations of ImageMagick on the page <a
  1649. href="high-dynamic-range.html">High
  1650. Dynamic-Range Images</a>. For more about HDRI go the ImageMagick <a
  1651. href="../Usage/basics/#hdri">Usage</a> pages or this
  1652. <a href="http://en.wikipedia.org/wiki/High_dynamic_range_imaging">Wikipedia</a>
  1653. entry. </p>
  1654. <div style="margin: auto;">
  1655. <h2><a class="anchor" id="copy"></a>-copy <var>geometry</var> <var>offset</var></h2>
  1656. </div>
  1657. <p class="magick-description">Copy pixels from one area of an image to another.</p>
  1658. <div style="margin: auto;">
  1659. <h2><a class="anchor" id="crop"></a>-crop <var>geometry</var>{<var>@</var>}{<var>!</var>}</h2>
  1660. </div>
  1661. <p class="magick-description">Cut out one or more rectangular regions of the image.</p>
  1662. <p>See <a href="command-line-processing.html#geometry">Image Geometry</a> for complete details about the <em class="arg">geometry</em> argument.</p>
  1663. <p>The <var>width</var> and <var>height</var> of the <var>geometry</var> argument give the size of the image that remains
  1664. after cropping, and <var>x</var> and <var>y</var> in the
  1665. <var>offset</var> (if present) gives the location of the top left
  1666. corner of the cropped image with respect to the original image. To specify the
  1667. amount to be removed, use <a href="command-line-options.html#shave">-shave</a> instead.</p>
  1668. <p>If the <var>x</var> and <var>y</var> offsets are
  1669. present, a single image is generated, consisting of the pixels from the
  1670. cropping region. The offsets specify the location of the upper left corner of
  1671. the cropping region measured downward and rightward with respect to the upper
  1672. left corner of the image. If the <a href="command-line-options.html#gravity">-gravity</a> option is
  1673. present with <samp>NorthEast</samp>, <samp>East</samp>, or <samp>SouthEast</samp>
  1674. gravity, it gives the distance leftward from the right edge of the image to
  1675. the right edge of the cropping region. Similarly, if the <a
  1676. href="command-line-options.html#gravity">-gravity</a> option is present with <samp>SouthWest</samp>,
  1677. <samp>South</samp>, or <samp>SouthEast</samp> gravity, the distance is measured
  1678. upward between the bottom edges.</p>
  1679. <p>If the <var>x</var> and <var>y</var> offsets are
  1680. omitted, a set of tiles of the specified geometry, covering the entire input
  1681. image, is generated. The rightmost tiles and the bottom tiles are smaller if
  1682. the specified geometry extends beyond the dimensions of the input image.</p>
  1683. <p>You can add the <var>@</var> to the geometry argument to equally divide the image into the number of tiles generated.</p>
  1684. <p>By adding a exclamation character flag to the geometry argument, the
  1685. cropped images virtual canvas page size and offset is set as if the
  1686. geometry argument was a viewport or window. This means the canvas page size
  1687. is set to exactly the same size you specified, the image offset set
  1688. relative top left corner of the region cropped. </p>
  1689. <p>If the cropped image 'missed' the actual image on its virtual canvas, a
  1690. special single pixel transparent 'missed' image is returned, and a 'crop
  1691. missed' warning given. </p>
  1692. <p>It might be necessary to <a href="command-line-options.html#repage" >+repage</a> the image prior to
  1693. cropping the image to ensure the crop coordinate frame is relocated to the
  1694. upper-left corner of the visible image.
  1695. Similarly you may want to use <a href="command-line-options.html#repage" >+repage</a> after cropping to
  1696. remove the page offset that will be left behind. This is especially true when
  1697. you are going to write to an image format such as PNG that supports an image
  1698. offset.</p>
  1699. <div style="margin: auto;">
  1700. <h2><a class="anchor" id="cycle"></a>-cycle <var>amount</var></h2>
  1701. </div>
  1702. <p class="magick-description">Displace image colormap by amount.</p>
  1703. <p><var>Amount</var> defines the number of positions each
  1704. colormap entry is shifted.</p>
  1705. <div style="margin: auto;">
  1706. <h2><a class="anchor" id="debug"></a>-debug <var>events</var></h2>
  1707. </div>
  1708. <p class="magick-description">Enable debug printout.</p>
  1709. <p>The <samp>events</samp> parameter specifies which events are to be logged. It
  1710. can be either <samp>None</samp>, <samp>All</samp>, <samp>Trace</samp>, or
  1711. a comma-separated list consisting of one or more of the following domains:
  1712. <samp>Accelerate</samp>, <samp>Annotate</samp>, <samp>Blob</samp>, <samp>Cache</samp>,
  1713. <samp>Coder</samp>, <samp>Configure</samp>, <samp>Deprecate</samp>,
  1714. <samp>Exception</samp>, <samp>Locale</samp>, <samp>Render</samp>,
  1715. <samp>Resource</samp>, <samp>Security</samp>, <samp>TemporaryFile</samp>,
  1716. <samp>Transform</samp>, <samp>X11</samp>, or <samp>User</samp>. </p>
  1717. <p>For example, to log cache and blob events, use.</p>
  1718. <pre class="bg-light text-dark mx-4 cli"><samp>magick -debug "Cache,Blob" rose: rose.png
  1719. </samp></pre>
  1720. <p>The <samp>User</samp> domain is normally empty, but developers can log user
  1721. events in their private copy of ImageMagick.</p>
  1722. <p>To print the complete list of debug methods, use <a href="command-line-options.html#list">-list
  1723. debug</a>.</p>
  1724. <p>Use the <a href="command-line-options.html#log">-log</a> option to specify the format for debugging
  1725. output.</p>
  1726. <p>Use <a href="command-line-options.html#debug">+debug</a> to turn off all logging.</p>
  1727. <p>Debugging may also be set using the <samp>MAGICK_DEBUG</samp> <a href="../www/resources.html#environment"
  1728. >environment variable</a>. The allowed values for the <samp>MAGICK_DEBUG</samp>
  1729. environment variable are the same as for the <a href="command-line-options.html#debug">-debug</a>
  1730. option.</p>
  1731. <div style="margin: auto;">
  1732. <h2><a class="anchor" id="decipher"></a>-decipher <var>filename</var></h2>
  1733. </div>
  1734. <p class="magick-description">Decipher and restore pixels that were previously transformed by <a href="command-line-options.html#encipher">-encipher</a>.</p>
  1735. <p>Get the passphrase from the file specified by <var>filename</var>.</p>
  1736. <p>For more information, see the webpage, <a href="../www/cipher.html">ImageMagick: Encipher or
  1737. Decipher an Image</a>.</p>
  1738. <div style="margin: auto;">
  1739. <h2><a class="anchor" id="deconstruct"></a>-deconstruct</h2>
  1740. </div>
  1741. <p class="magick-description">Find areas that has changed between images </p>
  1742. <p>Given a sequence of images all the same size, such as produced by <a
  1743. href="command-line-options.html#coalesce">-coalesce</a>, replace the second and later images, with
  1744. a smaller image of just the area that changed relative to the previous image.
  1745. </p>
  1746. <p>The resulting sequence of images can be used to optimize an animation
  1747. sequence, though will not work correctly for GIF animations when parts of the
  1748. animation can go from opaque to transparent. </p>
  1749. <p>This option is actually equivalent to the <a href="command-line-options.html#layers">-layers</a>
  1750. method '<samp>compare-any</samp>'. </p>
  1751. <div style="margin: auto;">
  1752. <h2><a class="anchor" id="define"></a>-define <var>key</var>{<var>=value</var>}<var>...</var></h2>
  1753. </div>
  1754. <p class="magick-description">Add specific global settings generally used to control coders and image processing operations.</p>
  1755. <p>This option creates one or more definitions for coders and decoders to use
  1756. while reading and writing image data. Definitions are generally used to
  1757. control image file format coder modules, and image processing operations,
  1758. beyond what is provided by normal means. Defined settings are listed in <a
  1759. href="command-line-options.html#verbose" >-verbose</a> information ("<samp>info:</samp>" output format)
  1760. as "Artifacts". </p>
  1761. <p>If <var>value</var> is missing for a definition, an empty-valued
  1762. definition of a flag is created with that name. This used to control on/off
  1763. options. Use <a href="command-line-options.html#define">+define key</a> to remove definitions
  1764. previously created. Use <a href="command-line-options.html#define">+define "*"</a> to remove all
  1765. existing definitions.</p>
  1766. <p>The same 'artifact' settings can also be defined using the <a
  1767. href="command-line-options.html#set" >-set "option:<var>key</var>" "<var>value</var>"</a> option, which also allows the use of <a href="../www/escape.html" >Format and Print Image
  1768. Properties</a> in the defined value. </p>
  1769. <p>The <var>option</var> and <var>key</var> are case-independent (they are
  1770. converted to lowercase for use within the decoders) while the <var>value</var>
  1771. is case-dependent.</p>
  1772. <p>Such settings are global in scope, and affect all images and operations. </p>
  1773. <p>See <a href="defines.html">ImageMagick Defines</a> for a list of recognized defines. For example:</p>
  1774. <pre class="bg-light text-dark mx-4 cli"><samp>magick bilevel.tif -define ps:imagemask eps3:stencil.ps
  1775. </samp></pre>
  1776. <p>Set attributes of the image registry by prefixing the value with
  1777. <samp>registry:</samp>. For example, to set a temporary path to put work files,
  1778. use:</p>
  1779. <pre class="bg-light text-dark mx-4 cli"><samp>-define registry:temporary-path=/data/tmp
  1780. </samp></pre>
  1781. <div style="margin: auto;">
  1782. <h2><a class="anchor" id="delay"></a>-delay <var>ticks</var> <br />-delay <var>ticks</var>x<var>ticks-per-second</var> {<var>&lt;</var>} {<var>&gt;</var>}</h2>
  1783. </div>
  1784. <p class="magick-description">Display the next image after pausing.</p>
  1785. <p>This option is useful for regulating the animation of image sequences
  1786. <var>ticks/ticks-per-second</var> seconds must expire before the display of the
  1787. next image. The default is no delay between each showing of the image
  1788. sequence. The default ticks-per-second is 100.</p>
  1789. <p>Use <samp>&gt;</samp> to change the image delay <var>only</var> if its current
  1790. value exceeds the given delay. <samp>&lt;</samp> changes the image delay
  1791. <var>only</var> if current value is less than the given delay. For example, if
  1792. you specify <samp>30&gt;</samp> and the image delay is 20, the image delay does
  1793. not change. However, if the image delay is 40 or 50, the delay it is changed
  1794. to 30. Enclose the given delay in quotation marks to prevent the
  1795. <samp>&lt;</samp> or <samp>&gt;</samp> from being interpreted by your shell as
  1796. a file redirection.</p>
  1797. <div style="margin: auto;">
  1798. <h2><a class="anchor" id="delete"></a>-delete <var>indexes</var></h2>
  1799. </div>
  1800. <p class="magick-description">Delete the images specified by index, from the image sequence.</p>
  1801. <p>Specify the image by its index in the sequence. The first image is index
  1802. 0. Negative indexes are relative to the end of the sequence, for example, -1
  1803. represents the last image of the sequence. Specify a range of images with
  1804. a dash (e.g. 0-4). Separate indexes with a comma (e.g. 0,2). Use
  1805. <samp>+delete</samp> to delete the last image in the current image sequence. Use <samp>-delete 0--1</samp> to delete the entire image sequence.</p>
  1806. <p>You can also delete images from the persistent registry, e.g., <samp>-delete registry:checkers</samp></p>
  1807. <div style="margin: auto;">
  1808. <h2><a class="anchor" id="density"></a>-density <var>width</var><br />-density <var>width</var>x<var>height</var></h2>
  1809. </div>
  1810. <p class="magick-description">Set the horizontal and vertical resolution of an image for rendering to devices.</p>
  1811. <p>This option specifies the image resolution to store while encoding a raster
  1812. image or the canvas resolution while rendering (reading) vector formats such
  1813. as Postscript, PDF, WMF, and SVG into a raster image. Image resolution
  1814. provides the unit of measure to apply when rendering to an output device or
  1815. raster image. The default unit of measure is in dots per inch (DPI). The <a
  1816. href="command-line-options.html#units">-units</a> option may be used to select dots per centimeter
  1817. instead.</p>
  1818. <p>The default resolution is 72 dots per inch, which is equivalent to one
  1819. point per pixel (Macintosh and Postscript standard). Computer screens are
  1820. normally 72 or 96 dots per inch, while printers typically support 150, 300,
  1821. 600, or 1200 dots per inch. </p>
  1822. <p>If the file format supports it, this option may be used to update the
  1823. stored image resolution. Note that Photoshop stores and obtains image
  1824. resolution from a proprietary embedded profile. If this profile is not
  1825. stripped from the image, then Photoshop will continue to treat the image using
  1826. its former resolution, ignoring the image resolution specified in the standard
  1827. file header.</p>
  1828. <p>The <a href="command-line-options.html#density">-density</a> option sets an <var>attribute</var> and
  1829. does not alter the underlying raster image. It may be used to adjust the
  1830. rendered size for desktop publishing purposes by adjusting the scale applied
  1831. to the pixels. To change the number of pixels in the image so that it has the
  1832. same physical dimensions (in inches or centimeters), use the
  1833. <a href="command-line-options.html#resample">-resample</a> option.</p>
  1834. <div style="margin: auto;">
  1835. <h2><a class="anchor" id="depth"></a>-depth <var>value</var></h2>
  1836. </div>
  1837. <p class="magick-description">Depth of the image.</p>
  1838. <p>Color depth is the number of bits per channel for each pixel. For example, for a depth of 16 using RGB, each channel of Red, Green, and Blue can range from 0 to 2^16-1 (65535). Use this option to specify the depth of raw images formats whose depth is unknown such as GRAY, RGB, or CMYK, or to change the depth of any image after it has been read.</p>
  1839. <p>Use <a href="command-line-options.html#depth">+depth</a> to return depth to its default value.</p>
  1840. <div style="margin: auto;">
  1841. <h2><a class="anchor" id="descend"></a>-descend</h2>
  1842. </div>
  1843. <p class="magick-description">Obtain image by descending window hierarchy.</p>
  1844. <div style="margin: auto;">
  1845. <h2><a class="anchor" id="deskew"></a>-deskew <var>threshold{%}</var></h2>
  1846. </div>
  1847. <p class="magick-description">Straighten an image. A threshold of 40% works for most images.</p>
  1848. <p>Use <a href="command-line-options.html#set">-set</a> <samp>option:deskew:auto-crop
  1849. <var>true | false</var></samp> to auto crop the image.</p>
  1850. <div style="margin: auto;">
  1851. <h2><a class="anchor" id="despeckle"></a>-despeckle</h2>
  1852. </div>
  1853. <p class="magick-description">Reduce the speckles within an image.</p>
  1854. <div style="margin: auto;">
  1855. <h2><a class="anchor" id="direction"></a>-direction <var>type</var></h2>
  1856. </div>
  1857. <p class="magick-description">Render text right-to-left or left-to-right. Requires the <a href="https://github.com/HOST-Oman/libraqm">RAQM</a> delegate library and <a href="https://en.wikipedia.org/wiki/Complex_text_layout">complex text layout</a>.</p>
  1858. <div style="margin: auto;">
  1859. <h2><a class="anchor" id="displace"></a>-displace <var>horizontal-scale</var>{%}{!}<br />-displace <var>horizontal-scale</var>x<var>vertical-scale</var>{%}{!}</h2>
  1860. </div>
  1861. <p class="magick-description">Shift image pixels as defined by a displacement map.</p>
  1862. <p>With this option, the 'overlay' image, and optionally the 'mask' image,
  1863. is used as a displacement map, which is used to displace the lookup of
  1864. what part of the 'background' image is seen at each point of the overlaid
  1865. area. Much like the displacement map is a 'lens' that redirects light shining
  1866. through it so as to present a distorted view the original 'background' image
  1867. behind it. </p>
  1868. <p>Any perfect grey areas of the displacement map produce a zero
  1869. displacement of the image. Black areas produce the given maximum negative
  1870. displacement of the lookup point, while white produce a maximum positive
  1871. displacement of the lookup. </p>
  1872. <p>Note that it is the lookup of the 'background' that is displaced, not a
  1873. displacement of the image itself. As such an area of the displacement map
  1874. containing 'white' will have the lookup point 'shifted' by a positive amount,
  1875. and thus generating a copy of the destination image to the right/downward from
  1876. the correct position. That is the image will look like it may have been
  1877. 'shifted' in a negative left/upward direction. Understanding this is a very
  1878. important in understanding how displacement maps work. </p>
  1879. <p>The given arguments define the maximum amount of displacement in pixels
  1880. that a particular map can produce. If the displacement scale is large enough
  1881. it is also possible to lookup parts of the 'background' image that lie well
  1882. outside the bounds of the displacement map itself. That is you could very
  1883. easily copy a section of the original image from outside the overlay area
  1884. into the overlay area. </p>
  1885. <p>The '%' flag makes the displacement scale relative to the size of the
  1886. overlay image (100% = half width/height of image). Using '!' switches
  1887. percentage arguments to refer to the destination image size instead.
  1888. these flags were added as of IM v6.5.3-5.</p>
  1889. <p>Normally a single grayscale displacement map is provided, which with the
  1890. given scaling values will determine a single direction (vector) in which
  1891. displacements can occur (positively or negatively). However, if you also
  1892. specify a third image which is normally used as a <var>mask</var>,
  1893. the <var>composite image</var> is used for horizontal X
  1894. displacement, while the <var>mask image</var> is used for vertical Y
  1895. displacement. This allows you to define completely different displacement
  1896. values for the X and Y directions, and allowing you to lookup any point within
  1897. the <var>scale</var> bounds. In other words each pixel can lookup
  1898. any other nearby pixel, producing complex 2 dimensional displacements, rather
  1899. than a simple 1 dimensional vector displacements. </p>
  1900. <p>Alternatively rather than supplying two separate images, as of IM v6.4.4-0,
  1901. you can use the 'red' channel of the overlay image to specify the horizontal
  1902. or X displacement, and the 'green' channel for the vertical or Y displacement.
  1903. </p>
  1904. <p>As of IM v6.5.3-5 any alpha channel in the overlay image is used as a
  1905. mask the transparency of the destination image. However areas outside the
  1906. overlaid areas will not be affected. </p>
  1907. <div style="margin: auto;">
  1908. <h2><a class="anchor" id="display"></a>-display <var>host:display[.screen]</var></h2>
  1909. </div>
  1910. <p class="magick-description">Specifies the X server to contact.</p>
  1911. <p>This option is used with convert for obtaining image or font from this
  1912. X server. See <var>X(1)</var>.</p>
  1913. <div style="margin: auto;">
  1914. <h2><a class="anchor" id="dispose"></a>-dispose <var>method</var></h2>
  1915. </div>
  1916. <p class="magick-description">Define the GIF disposal image setting for images that are being created or read in. </p>
  1917. <p>The layer disposal method defines the way each the displayed image is to be
  1918. modified after the current 'frame' of an animation has finished being
  1919. displayed (after its 'delay' period), but before the next frame on an
  1920. animation is to be overlaid onto the display. </p>
  1921. <p>Here are the valid methods:</p>
  1922. <div class="pre-scrollable bg-light text-dark mx-4">
  1923. <dl class="row">
  1924. <dt class="col-md-4">Undefined</dt><dd class="col-md-8">0: No disposal specified (equivalent to '<samp>none</samp>').</dd>
  1925. <dt class="col-md-4">None</dt><dd class="col-md-8">1: Do not dispose, just overlay next frame image.</dd>
  1926. <dt class="col-md-4">Background</dt><dd class="col-md-8">2: Clear the frame area with the background color.</dd>
  1927. <dt class="col-md-4">Previous</dt><dd class="col-md-8">3: Clear to the image prior to this frames overlay.</dd>
  1928. </dl>
  1929. </div>
  1930. <p>You can also use the numbers given above, which is what the GIF format
  1931. uses internally to represent the above settings. </p>
  1932. <p>To print a complete list of dispose methods, use <a href="command-line-options.html#list">-list dispose</a>.</p>
  1933. <p>Use <a href="command-line-options.html#dispose" >+dispose</a>, turn off the setting and prevent
  1934. resetting the layer disposal methods of images being read in. </p>
  1935. <p>Use <a href="command-line-options.html#set">-set</a> '<samp>dispose</samp>' method to set the image
  1936. disposal method for images already in memory.</p>
  1937. <div style="margin: auto;">
  1938. <h2><a class="anchor" id="dissimilarity-threshold"></a>-dissimilarity-threshold <var>value</var></h2>
  1939. </div>
  1940. <p class="magick-description">Maximum RMSE for subimage match (default 0.2).</p>
  1941. <div style="margin: auto;">
  1942. <h2><a class="anchor" id="dissolve"></a>-dissolve <var>src_percent</var>[x<var>dst_percent</var>]</h2>
  1943. </div>
  1944. <p class="magick-description">Dissolve an image into another by the given percent.</p>
  1945. <p>The opacity of the composite image is multiplied by the given percent, then
  1946. it is composited 'over' the main image. If <var>src_percent</var>
  1947. is greater than 100, start dissolving the main image so it becomes
  1948. transparent at a value of '<samp>200</samp>'. If both percentages
  1949. are given, each image are dissolved to the percentages given. </p>
  1950. <p>Note that dissolve percentages do not add, two opaque images dissolved
  1951. '50,50', produce a 75% transparency. For a 50% + 50% blending of the two
  1952. images, you would need to use dissolve values of '50,100'. </p>
  1953. <div style="margin: auto;">
  1954. <h2><a class="anchor" id="distort"></a>-distort <var>method arguments</var></h2>
  1955. </div>
  1956. <p class="magick-description">Distort an image, using the given <var>method</var> and its required <var>arguments</var>.</p>
  1957. <p>The <var>arguments</var> is a single string containing a list
  1958. of floating point numbers separated by commas or spaces. The number of
  1959. and meaning of the floating point values depends on the distortion <var>method</var> being used. </p>
  1960. <p>Choose from these distortion types:</p>
  1961. <div class="pre-scrollable bg-light text-dark mx-4">
  1962. <table class="table table-sm table-hover table-striped table-responsive">
  1963. <tr>
  1964. <th style="width: 8%">Method</th>
  1965. <th>Description</th>
  1966. </tr>
  1967. <tr>
  1968. <td>ScaleRotateTranslate <br/> SRT</td>
  1969. <td>
  1970. Distort image by first scaling and rotating about a given 'center',
  1971. before translating that 'center' to the new location, in that order. It
  1972. is an alternative method of specifying a 'Affine' type of
  1973. distortion, but without shearing effects. It also provides a good way
  1974. of rotating and displacing a smaller image for tiling onto a larger
  1975. background (IE 2-dimensional animations). <br/>
  1976. The number of arguments determine the specific meaning of each
  1977. argument for the scales, rotation, and translation operations. <br/>
  1978. <dl class="row">
  1979. <dt class="col-md-4">2:</dt><dd class="col-md-8"><var>Scale Angle</var></dd>
  1980. <dt class="col-md-4">3:</dt><dd class="col-md-8"><var>X,Y Angle</var></dd>
  1981. <dt class="col-md-4">4:</dt><dd class="col-md-8"><var>X,Y Scale Angle</var></dd>
  1982. <dt class="col-md-4">5:</dt> <dd class="col-md-8"><var>X,Y ScaleX,ScaleY Angle</var></dd>
  1983. <dt class="col-md-4">6:</dt> <dd class="col-md-8"><var>X,Y Scale Angle NewX,NewY</var></dd>
  1984. <dt class="col-md-4">7:</dt> <dd class="col-md-8"><var>X,Y ScaleX,ScaleY Angle NewX,NewY</var></dd>
  1985. </dl>
  1986. This is actually an alternative way of specifying a 2 dimensional linear
  1987. 'Affine' or 'AffineProjection' distortion. </td> </tr>
  1988. <tr>
  1989. <td>Affine</td>
  1990. <td>
  1991. Distort the image linearly by moving a list of at least 3 or more sets
  1992. of control points (as defined below). Ideally 3 sets or 12 floating
  1993. point values are given allowing the image to be linearly scaled,
  1994. rotated, sheared, and translated, according to those three points. See
  1995. also the related 'AffineProjection' and 'SRT'
  1996. distortions. <br/>
  1997. More than 3 sets given control point pairs (12 numbers) is least
  1998. squares fitted to best match a linear affine distortion. If only 2
  1999. control point pairs (8 numbers) are given a two point image translation
  2000. rotation and scaling is performed, without any possible shearing,
  2001. flipping or changes in aspect ratio to the resulting image. If only one
  2002. control point pair is provides the image is only translated, (which may
  2003. be a floating point non-integer translation). <br/>
  2004. This distortion does not include any form of perspective distortion.
  2005. </td>
  2006. </tr>
  2007. <tr>
  2008. <td>RigidAffine</td>
  2009. <td>
  2010. A rigid affine (also known as a Euclidean transform), is similar to Affine but restricts the distortion to 4 arguments (S, R, Tx, Ty) with Sy = Sx and Ry = -Rx so that the distortion only has scale, rotation and translation. No skew. A minimum of two control point pairs is required.
  2011. </td>
  2012. </tr>
  2013. <tr>
  2014. <td>AffineProjection</td>
  2015. <td>
  2016. Linearly distort an image using the given Affine Matrix of 6
  2017. pre-calculated coefficients forming a set of Affine Equations to map
  2018. the source image to the destination image.
  2019. <p class="text-center"><var>
  2020. s<sub>x</sub>, r<sub>x</sub>,
  2021. r<sub>y</sub>, s<sub>y</sub>,
  2022. t<sub>x</sub>, t<sub>y</sub>
  2023. </var></p>
  2024. See <a href="command-line-options.html#affine" >-affine</a> setting for more detail, and
  2025. meanings of these coefficients. <br/>
  2026. The distortions 'Affine' and 'SRT' provide
  2027. alternative methods of defining this distortion, with ImageMagick doing
  2028. the calculations needed to generate the required coefficients. You can
  2029. see the internally generated coefficients, by using a <a
  2030. href="command-line-options.html#verbose" >-verbose</a> setting with those other variants. </td>
  2031. </tr>
  2032. <tr>
  2033. <td>BilinearForward<br/>
  2034. BilinearReverse</td>
  2035. <td>
  2036. Bilinear Distortion, given a minimum of 4 sets of coordinate pairs, or
  2037. 16 values (see below). Not that lines may not appear straight after
  2038. distortion, though the distance between coordinates will remain
  2039. consistent. <br/>
  2040. The 'BilinearForward' is used to map rectangles to any
  2041. quadrilateral, while the 'BilinearReverse' form maps any
  2042. quadrilateral to a rectangle, while preserving the straight line edges
  2043. in each case. <br/>
  2044. Note that 'BilinearForward' can generate invalid pixels
  2045. which will be colored using the <a href="command-line-options.html#mattecolor" >-mattecolor</a>
  2046. color setting. Also if the quadrilateral becomes 'flipped' the image
  2047. may disappear. <br/>
  2048. There are future plans to produce a true Bilinear distortion that will
  2049. attempt to map any quadrilateral to any other quadrilateral, while
  2050. preserving edges (and edge distance ratios).
  2051. </td>
  2052. </tr>
  2053. <tr>
  2054. <td>Perspective</td>
  2055. <td>
  2056. Perspective distort the images, using a list of 4 or more sets of
  2057. control points (as defined below). More that 4 sets (16 numbers) of
  2058. control points provide least squares fitting for more accurate
  2059. distortions (for the purposes of image registration and panorama
  2060. effects). Less than 4 sets will fall back to a 'Affine'
  2061. linear distortion. <br/>
  2062. Perspective Distorted images ensures that straight lines remain
  2063. straight, but the scale of the distorted image will vary. The horizon
  2064. is anti-aliased, and the 'sky' color may be set using the
  2065. <a href="command-line-options.html#mattecolor" >-mattecolor</a> setting. </td>
  2066. </tr>
  2067. <tr>
  2068. <td>PerspectiveProjection </td>
  2069. <td>
  2070. Do a 'Perspective' distortion biased on a set of 8
  2071. pre-calculated coefficients. You can get these coefficients by looking
  2072. at the <a href="command-line-options.html#verbose" >-verbose</a> output of a
  2073. 'Perspective' distortion, or by calculating them yourself.
  2074. If the last two perspective scaling coefficients are zero, the
  2075. remaining 6 represents a transposed 'Affine Matrix'. </td>
  2076. </tr>
  2077. <tr>
  2078. <td>Polynomial</td>
  2079. <td>
  2080. Do an Nth order 2D 'Polynomial' distortion using a set of corresponding
  2081. control points. The order of the polynomial dictates the minimum number of
  2082. control points needed. Order 1 is the same as -distort Affine. Order 1.5 is the
  2083. same as -distort BilinearReverse. Typical use is for a 2nd order distortion.
  2084. There is no +distort polynomial.</td>
  2085. </tr>
  2086. <tr>
  2087. <td>Arc</td>
  2088. <td>
  2089. Arc the image (variation of polar mapping) over the angle given around
  2090. a circle.
  2091. <dl class="row">
  2092. <dt class="col-md-4">arc_angle</dt>
  2093. <dd class="col-md-8">The angle over which to arc the image side-to-side</dd>
  2094. <dt class="col-md-4">rotate_angle</dt>
  2095. <dd class="col-md-8">Angle to rotate resulting image from vertical center</dd>
  2096. <dt class="col-md-4">top_radius</dt>
  2097. <dd class="col-md-8">Set top edge of source image at this radius</dd>
  2098. <dt class="col-md-4">bottom_radius </dt>
  2099. <dd class="col-md-8">Set bottom edge to this radius (radial scaling)</dd>
  2100. </dl>
  2101. The resulting image is always resized to best fit the resulting image,
  2102. (as if using <a href="command-line-options.html#distort" >+distort</a>) while attempting to
  2103. preserve scale and aspect ratio of the original image as much as
  2104. possible with the arguments given by the user. All four arguments will
  2105. be needed to change the overall aspect ratio of an 'Arc'ed image. <br/>
  2106. This a variation of a polar distortion designed to try to preserve the
  2107. aspect ratio of the image rather than direct Cartesian to Polar
  2108. conversion. </td>
  2109. </tr>
  2110. <tr>
  2111. <td>Polar</td>
  2112. <td>
  2113. Like 'Arc' but do a complete Cartesian to Polar mapping of
  2114. the image. that is the height of the input image is mapped to the
  2115. radius limits, while the width is wrapped around between the
  2116. angle limits. <br/>
  2117. Arguments: <var>Rmax,Rmin CenterX,CenterY, start,end_angle</var> <br/>
  2118. All arguments are optional. With <var>Rmin</var> defaulting to zero, the
  2119. center to the center of the image, and the angles going from -180 (top)
  2120. to +180 (top). If <var>Rmax</var> is given the special value of
  2121. '0', the distance from the center to the nearest edge
  2122. is used for the radius of the output image, which will ensure the whole
  2123. image is visible (though scaled smaller). However a special value of
  2124. '-1' will use the distance from the center to the furthest
  2125. corner, This may 'clip' the corners from the input rectangular image,
  2126. but will generate the exact reverse of a 'DePolar' with
  2127. the same arguments. <br/>
  2128. If the plus form of distort (<a href="command-line-options.html#distort" >+distort</a>) is used
  2129. output image center will default to 0,0 of the virtual
  2130. canvas, and the image size adjusted to ensure the whole input image is
  2131. made visible in the output image on the virtual canvas. </td>
  2132. </tr>
  2133. <tr>
  2134. <td>DePolar</td>
  2135. <td>
  2136. Uses the same arguments and meanings as a 'Polar' distortion
  2137. but generates the reverse Polar to Cartesian distortion. <br/>
  2138. The special <var>Rmax</var> setting of '0' may however clip
  2139. the corners of the input image. However using the special
  2140. <var>Rmax</var> setting of '-1' (maximum center to corner
  2141. distance) will ensure the whole distorted image is preserved in the
  2142. generated result, so that the same argument to 'Polar' will
  2143. reverse the distortion re-producing the original.
  2144. Note that as this distortion requires the area resampling of a circular
  2145. arc, which can not be handled by the builtin EWA resampling function.
  2146. As such the normal EWA filters are turned off. It is recommended some
  2147. form of 'super-sampling' image processing technique be used to produce
  2148. a high quality result. </td>
  2149. </tr>
  2150. <tr>
  2151. <td>Barrel</td>
  2152. <td>
  2153. Given the four coefficients (A,B,C,D) as defined by <a
  2154. href="http://wiki.panotools.org/Lens_correction_model" >Helmut
  2155. Dersch</a>, perform a barrel or pin-cushion distortion appropriate to
  2156. correct radial lens distortions. That is in photographs, make straight
  2157. lines straight again. <br/>
  2158. <p class="text-center">Arguments: <var>A B C</var> [ <var>D</var> [
  2159. <var>X</var> , <var>Y</var> ] ] <br/>
  2160. or <var>A<sub>x</sub> B<sub>x</sub> C<sub>x</sub> D<sub>x</sub>
  2161. A<sub>y</sub> B<sub>y</sub> C<sub>y</sub> D<sub>y</sub></var>
  2162. [ <var>X</var> , <var>Y</var> ] </p>
  2163. So that it forms the function
  2164. <p class="text-center">Rsrc = r * ( <var>A</var>*r<sup>3</sup> + <var>B</var>*r<sup>2</sup> +
  2165. <var>C</var>*r + <var>D</var> )</p>
  2166. Where <var>X</var>,<var>Y</var> is the optional center of the distortion
  2167. (defaulting to the center of the image). <br/>
  2168. The second form is typically used to distort images, rather than
  2169. correct lens distortions. <br/>
  2170. </td>
  2171. </tr>
  2172. <tr>
  2173. <td>BarrelInverse</td>
  2174. <td>
  2175. This is very similar to 'Barrel' with the same set of
  2176. arguments, and argument handling. However it uses the inverse
  2177. of the radial polynomial,
  2178. so that it forms the function
  2179. <p class="text-center">Rsrc = r / ( <var>A</var>*r<sup>3</sup> + <var>B</var>*r<sup>2</sup> +
  2180. <var>C</var>*r + <var>D</var> )</p>
  2181. Note that this is not the reverse of the 'Barrel'
  2182. distortion, just a different barrel-like radial distortion method.
  2183. </td>
  2184. </tr>
  2185. <tr>
  2186. <td>Shepards</td>
  2187. <td>
  2188. Distort the given list control points (any number) using an Inverse
  2189. Squared Distance Interpolation Method (<a
  2190. href="http://en.wikipedia.org/wiki/Shepard%27s_method" >Shepards
  2191. Method</a>). The control points in effect do 'localized' displacement
  2192. of the image around the given control point (preserving the look and
  2193. the rotation of the area near the control points. For best results
  2194. extra control points should be added to 'lock' the positions of the
  2195. corners, edges and other unchanging parts of the image, to prevent
  2196. their movement. <br/>
  2197. The distortion has been likened to 'taffy pulling' using nails, or
  2198. pins' stuck in a block of 'jelly' which is then moved to the new
  2199. position, distorting the surface of the jelly. <br/>
  2200. Internally it is equivalent to generating a displacement map (see <a
  2201. href="command-line-options.html#displace" >-displace</a>) for source image color look-up using
  2202. the <a href="command-line-options.html#sparse-color" >-sparse-color</a> method of the same name.
  2203. </td>
  2204. </tr>
  2205. </table>
  2206. </div>
  2207. <p>To print a complete list of distortion methods, use <a href="command-line-options.html#list">-list
  2208. distort</a>.</p>
  2209. <p>Many of the above distortion methods such as '<samp>Affine</samp>',
  2210. '<samp>Perspective</samp>', and '<samp>Shepards</samp>' use a list control points
  2211. defining how these points in the given image should be distorted in the
  2212. destination image. Each set of four floating point values represent a source
  2213. image coordinate, followed immediately by the destination image coordinate.
  2214. This produces a list of values such as...</p>
  2215. <p class="text-center"><var>
  2216. U<sub>1</sub>,V<sub>1</sub> X<sub>1</sub>,Y<sub>1</sub>
  2217. U<sub>2</sub>,V<sub>2</sub> X<sub>2</sub>,Y<sub>2</sub>
  2218. U<sub>3</sub>,V<sub>3</sub> X<sub>3</sub>,Y<sub>3</sub>
  2219. ...
  2220. U<sub>n</sub>,V<sub>n</sub> X<sub>n</sub>,Y<sub>n</sub>
  2221. </var></p>
  2222. <p>where <var>U,V</var> on the source image is mapped to <var>X,Y</var> on the
  2223. destination image. </p>
  2224. <p>For example, to warp an image using '<samp>perspective</samp>' distortion,
  2225. needs a list of at least 4 sets of coordinates, or 16 numbers. Here is the
  2226. perspective distortion of the built-in "rose:" image. Note how spaces were
  2227. used to group the 4 sets of coordinate pairs, to make it easier to read and
  2228. understand.</p>
  2229. <pre class="bg-light text-dark mx-4 cli"><samp>magick rose: -virtual-pixel black \
  2230. -distort Perspective '0,0,0,0 0,45,0,45 69,0,60,10 69,45,60,35' \
  2231. rose_3d_rotated.gif"
  2232. </samp></pre>
  2233. <p>If more that the required number of coordinate pairs are given for
  2234. a distortion, the distortion method is 'least squares' fitted to produce the
  2235. best result for all the coordinate pairs given. If less than the ideal number
  2236. of points are given, the distort will generally fall back to a simpler form of
  2237. distortion that can handles the smaller number of coordinates (usually a linear
  2238. '<samp>Affine</samp>' distortion). </p>
  2239. <p>By using more coordinates you can make use of image registration tool to
  2240. find matching coordinate pairs in overlapping images, so as to improve the
  2241. 'fit' of the distortion. Of course a bad coordinate pair can also make the
  2242. 'fit' worse. Caution is always advised. </p>
  2243. <p>Colors are acquired from the source image according to a cylindrical
  2244. resampling <a href="command-line-options.html#filter" >-filter</a>, using a special technique known as
  2245. EWA resampling. This produces very high quality results, especially when
  2246. images become smaller (minified) in the output, which is very common when
  2247. using '<samp>perspective</samp>' distortion. For example here we view
  2248. a infinitely tiled 'plane' all the way to the horizon. </p>
  2249. <pre class="bg-light text-dark mx-4 cli"><samp>magick -size 90x90 pattern:checkerboard -normalize -virtual-pixel tile \
  2250. -distort perspective '0,0,5,45 89,0,45,46 0,89,0,89 89,89,89,89' \
  2251. checks_tiled.jpg
  2252. </samp></pre>
  2253. <p>Note that a infinitely tiled perspective images involving the horizon can
  2254. be very slow, because of the number of pixels that are compressed to generate
  2255. each individual pixel close to the 'horizon'. You can turn off EWA
  2256. resampling, by specifying the special <a href="command-line-options.html#filter" >-filter</a> setting of
  2257. '<samp>point</samp>' (recommended if you plan to use super-sampling instead).
  2258. </p>
  2259. <p>If an image generates <i>invalid pixels</i>, such as the 'sky' in the last
  2260. example, <a href="command-line-options.html#distort" >-distort</a> will use the current <a
  2261. href="command-line-options.html#mattecolor" >-mattecolor</a> setting for these pixels. If you do not
  2262. what these pixels to be visible, set the color to match the rest of the
  2263. ground. </p>
  2264. <p>The output image size will by default be the same as the input image. This
  2265. means that if the part of the distorted image falls outside the viewed area of
  2266. the 'distorted space', those parts is clipped and lost. However if you use
  2267. the plus form of the operator (<a href="command-line-options.html#distort" >+distort</a>) the operator
  2268. will attempt (if possible) to show the whole of the distorted image, while
  2269. retaining a correct 'virtual canvas' offset, for image layering. This offset
  2270. may need to be removed using <a href="command-line-options.html#repage" >+repage</a>, to remove if it
  2271. is unwanted. </p>
  2272. <p>Setting <a href="command-line-options.html#verbose" >-verbose</a> setting, will cause <a
  2273. href="command-line-options.html#distort" >-distort</a> to attempt to output the internal coefficients,
  2274. and the <a href="command-line-options.html#fx" >-fx</a> equivalent to the distortion, for expert study,
  2275. and debugging purposes. This many not be available for all distorts. </p>
  2276. <p>You can alternatively specify a special "<samp><a href="command-line-options.html#define"
  2277. >-define</a> distort:viewport={geometry_string}</samp>" setting which will
  2278. specify the size and the offset of the generated 'viewport' image of the
  2279. distorted image space.</p>
  2280. <p>Setting a "<samp><a href="command-line-options.html#define" >-define</a>
  2281. distort:scale=<var>scale_factor</var></samp>" will scale the output image (viewport or
  2282. otherwise) by that factor without changing the viewed contents of the
  2283. distorted image. This can be used either for 'super-sampling' the image for
  2284. a higher quality result, or for panning and zooming around the image (with
  2285. appropriate viewport changes, or post-distort cropping and resizing). </p>
  2286. <p>Setting "<samp><a href="command-line-options.html#define" >-define</a> resample:verbose=1</samp>"
  2287. will output the cylindrical filter lookup table created by the EWA (Elliptical
  2288. Weighted Average) resampling algorithm. Note this table uses a squared radius
  2289. lookup value. This is typically only used for debugging EWA resampling. </p>
  2290. <div style="margin: auto;">
  2291. <h2><a class="anchor" id="distribute-cache"></a>-distribute-cache <var>port</var></h2>
  2292. </div>
  2293. <p class="magick-description">Launch a distributed pixel cache server. </p>
  2294. <div style="margin: auto;">
  2295. <h2><a class="anchor" id="dither"></a>-dither <var>method</var></h2>
  2296. </div>
  2297. <p class="magick-description">Apply a Riemersma or Floyd-Steinberg error diffusion dither to
  2298. images when general color reduction is applied via an option, or automagically
  2299. when saving to specific formats. This enabled by default.</p>
  2300. <p>Dithering places two or more colors in neighboring pixels so that to the
  2301. eye a closer approximation of the images original color is reproduced. This
  2302. reduces the number of colors needed to reproduce the image but at the cost of
  2303. a lower level pattern of colors. Error diffusion dithers can use any set of
  2304. colors (generated or user defined) to an image. </p>
  2305. <p>Dithering is turned on by default, to turn it off use the plus form of the
  2306. setting, <a href="command-line-options.html#dither">+dither</a>. This will also render PostScript
  2307. without text or graphic aliasing. Disabling dithering often (but not always)
  2308. leads to faster process, a smaller number of colors, but more cartoon like
  2309. image coloring. Generally resulting in 'color banding' effects in areas with
  2310. color gradients. </p>
  2311. <p>The color reduction operators <a href="command-line-options.html#colors">-colors</a>, <a
  2312. href="command-line-options.html#monochrome">-monochrome</a>, <a href="command-line-options.html#remap ">-remap</a>, and <a
  2313. href="command-line-options.html#posterize">-posterize</a>, apply dithering to images using the reduced
  2314. color set they created. These operators are also used as part of automatic
  2315. color reduction when saving images to formats with limited color support, such
  2316. as <samp>GIF:</samp>, <samp>XBM:</samp>, and others, so dithering may also be used
  2317. in these cases. </p>
  2318. <p>Alternatively you can use <a href="command-line-options.html#random-threshold">-random-threshold</a>
  2319. to generate purely random dither. Or use <a
  2320. href="command-line-options.html#ordered-dither">-ordered-dither</a> to apply threshold mapped dither
  2321. patterns, using uniform color maps, rather than specific color maps. </p>
  2322. <p>Use "<samp><a href="command-line-options.html#define" >-define</a> dither:diffusion-amount=35%</samp>, for example, to control the amount of Floyd-Steinberg dither.</p>
  2323. <div style="margin: auto;">
  2324. <h2><a class="anchor" id="draw"></a>-draw <var>string</var></h2>
  2325. </div>
  2326. <p class="magick-description">Annotate an image with one or more graphic primitives.</p>
  2327. <p>Use this option to annotate or decorate an image with one or more graphic
  2328. primitives. The primitives include shapes, text, transformations, and pixel
  2329. operations.</p>
  2330. <p>The shape primitives:</p>
  2331. <div class="pre-scrollable bg-light text-dark mx-4">
  2332. <dl class="row">
  2333. <dt class="col-md-4">point</dt><dd class="col-md-8"> x,y</dd>
  2334. <dt class="col-md-4">line</dt><dd class="col-md-8"> x0,y0 x1,y1</dd>
  2335. <dt class="col-md-4">rectangle</dt><dd class="col-md-8"> x0,y0 x1,y1</dd>
  2336. <dt class="col-md-4">roundRectangle</dt><dd class="col-md-8"> x0,y0 x1,y1 wc,hc</dd>
  2337. <dt class="col-md-4">arc</dt><dd class="col-md-8"> x0,y0 x1,y1 a0,a1</dd>
  2338. <dt class="col-md-4">ellipse</dt><dd class="col-md-8"> x0,y0 rx,ry a0,a1</dd>
  2339. <dt class="col-md-4">circle</dt><dd class="col-md-8"> x0,y0 x1,y1</dd>
  2340. <dt class="col-md-4">polyline</dt><dd class="col-md-8"> x0,y0 ... xn,yn</dd>
  2341. <dt class="col-md-4">polygon</dt><dd class="col-md-8"> x0,y0 ... xn,yn</dd>
  2342. <dt class="col-md-4">bezier</dt><dd class="col-md-8"> x0,y0 ... xn,yn</dd>
  2343. <dt class="col-md-4">path</dt><dd class="col-md-8">specification </dd>
  2344. <dt class="col-md-4">image</dt><dd class="col-md-8"> operator x0,y0 w,h filename</dd>
  2345. </dl>
  2346. </div>
  2347. <p>The text primitive:</p>
  2348. <dl class="row">
  2349. <dt class="col-md-4">text</dt><dd class="col-md-8">x0,y0 string</dd>
  2350. </dl>
  2351. <p>The text gravity primitive:</p>
  2352. <dl class="row">
  2353. <dt class="col-md-4">gravity</dt><dd class="col-md-8">NorthWest, North, NorthEast, West, Center, East, SouthWest, South, or SouthEast</dd>
  2354. </dl>
  2355. <p>The text gravity primitive only affects the placement of text and does not
  2356. interact with the other primitives. It is equivalent to using the <a
  2357. href="command-line-options.html#gravity">-gravity</a> command-line option, except that it is limited in
  2358. scope to the <a href="command-line-options.html#draw">-draw</a> option in which it appears.</p>
  2359. <p>The transformation primitives:</p>
  2360. <div class="pre-scrollable bg-light text-dark mx-4">
  2361. <dl class="row">
  2362. <dt class="col-md-4">rotate</dt><dd class="col-md-8">degrees</dd>
  2363. <dt class="col-md-4">translate</dt><dd class="col-md-8">dx,dy</dd>
  2364. <dt class="col-md-4">scale</dt><dd class="col-md-8">sx,sy</dd>
  2365. <dt class="col-md-4">skewX</dt><dd class="col-md-8">degrees</dd>
  2366. <dt class="col-md-4">skewY</dt><dd class="col-md-8">degrees</dd>
  2367. </dl>
  2368. </div>
  2369. <p>The pixel operation primitives:</p>
  2370. <div class="pre-scrollable bg-light text-dark mx-4">
  2371. <dl class="row">
  2372. <dt class="col-md-4">color</dt><dd class="col-md-8">x0,y0 method</dd>
  2373. <dt class="col-md-4">matte</dt><dd class="col-md-8">x0,y0 method</dd>
  2374. </dl>
  2375. </div>
  2376. <p>The shape primitives are drawn in the color specified by the preceding <a
  2377. href="command-line-options.html#fill">-fill</a> setting. For unfilled shapes, use <a
  2378. href="command-line-options.html#fill">-fill none</a>. You can optionally control the stroke (the
  2379. "outline" of a shape) with the <a href="command-line-options.html#stroke">-stroke</a> and <a
  2380. href="command-line-options.html#strokewidth">-strokewidth</a> settings.</p>
  2381. <p>A <samp>point</samp> primitive is specified by a single <var>point</var> in the
  2382. pixel plane, that is, by an ordered pair of integer coordinates,
  2383. <var>x</var>,<var>y</var>. (As it involves only a single pixel, a <samp>point</samp>
  2384. primitive is not affected by <a href="command-line-options.html#stroke">-stroke</a> or <a
  2385. href="command-line-options.html#strokewidth">-strokewidth</a>.)</p>
  2386. <p>A <samp>line</samp> primitive requires a start point and end point.</p>
  2387. <p>A <samp>rectangle</samp> primitive is specified by the pair of points at the
  2388. upper left and lower right corners.</p>
  2389. <p>A <samp>roundRectangle</samp> primitive takes the same corner points as
  2390. a <samp>rectangle</samp> followed by the width and height of the rounded corners
  2391. to be removed.</p>
  2392. <p>The <samp>circle</samp> primitive makes a disk (filled) or circle (unfilled).
  2393. Give the center and any point on the perimeter (boundary). Note, by using a translation, you can remove the need to calculate the circles edge coordinate, but can just give the radius directly:</p>
  2394. <pre class="bg-light text-dark mx-4"><samp>magick -size 100x60 xc: -stroke SeaGreen -fill PaleGreen -strokewidth 2 -draw 'translate 50,30 circle 0,0 25,0' circle.gif</samp></pre>
  2395. <p>The <samp>arc</samp> primitive is used to inscribe an elliptical segment in
  2396. to a given rectangle. An <samp>arc</samp> requires the two corners used for
  2397. <samp>rectangle</samp> (see above) followed by the start and end angles of the
  2398. arc of the segment (e.g. 130,30 200,100 45,90). The start and end
  2399. points produced are then joined with a line segment and the resulting segment
  2400. of an ellipse is filled.</p>
  2401. <p>Use <samp>ellipse</samp> to draw a partial (or whole) ellipse. Give the
  2402. center point, the horizontal and vertical "radii" (the <var>semi-axes</var> of
  2403. the ellipse) and start and end angles in degrees (e.g. 100,100 100,150
  2404. 0,360).</p>
  2405. <p>The <samp>polyline</samp> and <samp>polygon</samp> primitives require three or
  2406. more points to define their perimeters. A <samp>polyline</samp> is simply
  2407. a <samp>polygon</samp> in which the final point is not stroked to the start
  2408. point. When unfilled, this is a <var>polygonal line</var>. If the <a
  2409. href="command-line-options.html#stroke">-stroke</a> setting is <samp>none</samp> (the default), then
  2410. a <samp>polyline</samp> is identical to a <samp>polygon</samp>. </p>
  2411. <p>A <var>coordinate</var> is a pair of integers separated by a space or
  2412. optional comma. </p>
  2413. <p>As an example, to define a circle centered at 100,100 that extends to
  2414. 150,150 use:</p>
  2415. <pre class="bg-light text-dark mx-4 cli"><samp>-draw 'circle 100,100 150,150'
  2416. </samp></pre>
  2417. <p>The <samp>Bezier</samp> primitive creates a spline curve and requires three
  2418. or points to define its shape. The first and last points are the
  2419. <var>knots</var> and these points are attained by the curve, while any
  2420. intermediate coordinates are <var>control points</var>. If two control points
  2421. are specified, the line between each end knot and its sequentially respective
  2422. control point determines the tangent direction of the curve at that end. If
  2423. one control point is specified, the lines from the end knots to the one
  2424. control point determines the tangent directions of the curve at each end. If
  2425. more than two control points are specified, then the additional control points
  2426. act in combination to determine the intermediate shape of the curve. In order
  2427. to draw complex curves, it is highly recommended either to use the
  2428. <samp>path</samp> primitive or to draw multiple four-point bezier segments with
  2429. the start and end knots of each successive segment repeated. For example:</p>
  2430. <pre class="bg-light text-dark mx-4 cli"><samp>-draw 'bezier 20,50 45,100 45,0 70,50'
  2431. -draw 'bezier 70,50 95,100 95,0 120,50'
  2432. </samp></pre>
  2433. <p>A <samp>path</samp> represents an outline of an object, defined in terms of
  2434. moveto (set a new current point), lineto (draw a straight line), curveto (draw
  2435. a Bezier curve), arc (elliptical or circular arc) and closepath (close the
  2436. current shape by drawing a line to the last moveto) elements. Compound paths
  2437. (i.e., a path with subpaths, each consisting of a single moveto followed by
  2438. one or more line or curve operations) are possible to allow effects such as
  2439. <var>donut holes</var> in objects. (See <a
  2440. href="http://www.w3.org/TR/SVG/paths.html">Paths</a>.)</p>
  2441. <p>Use <samp>image</samp> to composite an image with another image. Follow the
  2442. image keyword with the composite operator, image location, image size, and
  2443. filename:</p>
  2444. <pre class="bg-light text-dark mx-4 cli"><samp>-draw 'image SrcOver 100,100 225,225 image.jpg'
  2445. </samp></pre>
  2446. <p>You can use 0,0 for the image size, which means to use the actual
  2447. dimensions found in the image header. Otherwise, it is scaled to the given
  2448. dimensions. See <a href="../www/compose.html">Alpha Compositing</a> for
  2449. a detailed discussion of alpha composition methods that are available. </p>
  2450. <p>The "special augmented compose operators" such as "dissolve" that require
  2451. arguments cannot be used at present with the <samp>-draw image</samp> option.
  2452. </p>
  2453. <p>Use <samp>text</samp> to annotate an image with text. Follow the text
  2454. coordinates with a string. If the string has embedded spaces, enclose it in
  2455. single or double quotes.</p>
  2456. <p>For example, the following annotates the image with <samp>Works like
  2457. magick!</samp> for an image titled <samp>bird.miff</samp>. </p>
  2458. <pre class="bg-light text-dark mx-4 cli"><samp>-draw "text 100,100 'Works like magick!'"</samp></pre>
  2459. <p>See the <a href="command-line-options.html#annotate">-annotate</a> option for another convenient way
  2460. to annotate an image with text.</p>
  2461. <p>The <samp>rotate</samp> primitive rotates subsequent shape primitives and
  2462. text primitives about the origin of the main image:</p>
  2463. <pre class="bg-light text-dark mx-4 cli"><samp>-draw "rotate 45 text 10,10 'Works like magick!'"</samp></pre>
  2464. <p>The <samp>translate</samp> primitive translates subsequent shape and text
  2465. primitives.</p>
  2466. <p>The <samp>scale</samp> primitive scales them.</p>
  2467. <p>The <samp>skewX</samp> and <samp>skewY</samp> primitives skew them with respect
  2468. to the origin of the main image or the region.</p>
  2469. <p>The transformations modify the current affine matrix, which is initialized
  2470. from the initial affine matrix defined by the <a href="command-line-options.html#affine">-affine</a>
  2471. option. Transformations are cumulative within the <a href="command-line-options.html#draw">-draw</a>
  2472. option. The initial affine matrix is not affected; that matrix is only changed
  2473. by the appearance of another <a href="command-line-options.html#affine">-affine</a> option. If another
  2474. <a href="command-line-options.html#draw">-draw</a> option appears, the current affine matrix is
  2475. reinitialized from the initial affine matrix.</p>
  2476. <p>Use the <samp>color</samp> primitive to change the color of a pixel to the
  2477. fill color (see <a href="command-line-options.html#fill">-fill</a>). Follow the pixel coordinate with
  2478. a method:</p>
  2479. <pre class="bg-light text-dark mx-4"><samp>point
  2480. replace
  2481. floodfill
  2482. filltoborder
  2483. reset
  2484. </samp></pre>
  2485. <p>Consider the target pixel as that specified by your coordinate. The
  2486. <samp>point</samp> method recolors the target pixel. The <samp>replace</samp>
  2487. method recolors any pixel that matches the color of the target pixel.
  2488. <samp>Floodfill</samp> recolors any pixel that matches the color of the target
  2489. pixel and is a neighbor, whereas <samp>filltoborder</samp> recolors any neighbor
  2490. pixel that is not the border color. Finally, <samp>reset</samp> recolors all
  2491. pixels.</p>
  2492. <p>Use <samp>matte</samp> to the change the pixel matte value to transparent.
  2493. Follow the pixel coordinate with a method (see the <samp>color</samp> primitive
  2494. for a description of methods). The <samp>point</samp> method changes the matte
  2495. value of the target pixel. The <samp>replace</samp> method changes the matte
  2496. value of any pixel that matches the color of the target pixel.
  2497. <samp>Floodfill</samp> changes the matte value of any pixel that matches the
  2498. color of the target pixel and is a neighbor, whereas <samp>filltoborder</samp>
  2499. changes the matte value of any neighbor pixel that is not the border color (<a
  2500. href="command-line-options.html#bordercolor">-bordercolor</a>). Finally <samp>reset</samp> changes the
  2501. matte value of all pixels.</p>
  2502. <p>You can set the primitive color, font, and font bounding box color with <a
  2503. href="command-line-options.html#fill">-fill</a>, <a href="command-line-options.html#font">-font</a>, and <a href="command-line-options.html#box">-box</a>
  2504. respectively. Options are processed in command line order so be sure to use
  2505. these options <var>before</var> the <a href="command-line-options.html#draw">-draw</a> option.</p>
  2506. <p>Strings that begin with a number must be quoted (e.g. use '1.png' rather
  2507. than 1.png).</p>
  2508. <p>Drawing primitives conform to the <a href="magick-vector-graphics.html" >Magick
  2509. Vector Graphics</a> format.</p>
  2510. <p>Note, drawing requires an alpha channel. If none is available, an all opaque alpha channel is implicitedly created.</p>
  2511. <div style="margin: auto;">
  2512. <h2><a class="anchor" id="duplicate"></a>-duplicate <var>count,indexes</var></h2>
  2513. </div>
  2514. <p class="magick-description">Duplicate an image one or more times.</p>
  2515. <p>Specify the count and the image to duplicate by its index in the sequence.
  2516. The first image is index 0. Negative indexes are relative to the end of the
  2517. sequence, for example, -1 represents the last image of the sequence. Specify
  2518. a range of images with a dash (e.g. 0-4). Separate indexes with a comma (e.g.
  2519. 0,2). Use <samp>+duplicate</samp> to duplicate the last image in the current
  2520. image sequence.</p>
  2521. <div style="margin: auto;">
  2522. <h2><a class="anchor" id="edge"></a>-edge <var>radius</var></h2>
  2523. </div>
  2524. <p class="magick-description">Detect edges within an image.</p>
  2525. <div style="margin: auto;">
  2526. <h2><a class="anchor" id="emboss"></a>-emboss <var>radius</var>{x<var>sigma</var></h2>
  2527. </div>
  2528. <p class="magick-description">Emboss an image.</p>
  2529. <div style="margin: auto;">
  2530. <h2><a class="anchor" id="encipher"></a>-encipher <var>filename</var></h2>
  2531. </div>
  2532. <p class="magick-description">Encipher pixels for later deciphering by <a href="command-line-options.html#decipher">-decipher</a>.</p>
  2533. <p>Get the passphrase from the file specified by <var>filename</var>.</p>
  2534. <p>For more information, see the webpage, <a href="../www/cipher.html">ImageMagick: Encipher or
  2535. Decipher an Image</a>.</p>
  2536. <div style="margin: auto;">
  2537. <h2><a class="anchor" id="encoding"></a>-encoding <var>type</var></h2>
  2538. </div>
  2539. <p class="magick-description">Specify the text encoding.</p>
  2540. <p>Choose from</p>
  2541. <pre class="bg-light text-dark mx-4"><samp>AdobeCustom AdobeExpert
  2542. AdobeStandard AppleRoman
  2543. BIG5 GB2312
  2544. Latin 2 None
  2545. SJIScode Symbol
  2546. Unicode Wansung
  2547. </samp></pre>
  2548. <div style="margin: auto;">
  2549. <h2><a class="anchor" id="endian"></a>-endian <var>type</var></h2>
  2550. </div>
  2551. <p class="magick-description">Specify endianness (<samp>MSB</samp> or <samp>LSB</samp>) of the image.</p>
  2552. <p>To print a complete list of endian types, use the <a href="command-line-options.html#list">-list endian</a> option.</p>
  2553. <p>Use <a href="command-line-options.html#endian">+endian</a> to revert to unspecified endianness.</p>
  2554. <div style="margin: auto;">
  2555. <h2><a class="anchor" id="enhance"></a>-enhance</h2>
  2556. </div>
  2557. <p class="magick-description">Apply a digital filter to enhance a noisy image.</p>
  2558. <div style="margin: auto;">
  2559. <h2><a class="anchor" id="equalize"></a>-equalize</h2>
  2560. </div>
  2561. <p class="magick-description">Perform histogram equalization on the image channel-by-channel.</p>
  2562. <p>To perform histogram equalization on all channels in concert, transform the
  2563. image into some other color space, such as HSL, OHTA, YIQ or YUV, then
  2564. equalize the appropriate intensity-like channel, then convert back to RGB.</p>
  2565. <p>For example using HSL, we have: ... <samp>-colorspace HSL -channel lightness
  2566. -equalize -colorspace sRGB</samp> ...</p>
  2567. <p>For YIQ, YUV and OHTA use the red channel. For example, OHTA is a principal
  2568. components transformation that puts most of the information in the first
  2569. channel. Here we have ... <samp>-colorspace OHTA -channel red -equalize
  2570. -colorspace sRGB</samp> ...</p>
  2571. <div style="margin: auto;">
  2572. <h2><a class="anchor" id="evaluate"></a>-evaluate <var>operator value</var></h2>
  2573. </div>
  2574. <p class="magick-description">Alter channel pixels by evaluating an arithmetic, relational, or logical expression.</p>
  2575. <p>(See the <a href="command-line-options.html#function" >-function</a> operator for some
  2576. multi-parameter functions. See the <a href="command-line-options.html#fx" >-fx</a> operator if more
  2577. elaborate calculations are needed.)</p>
  2578. <p>The behaviors of each <var>operator</var> are summarized in the
  2579. following list. For brevity, the numerical value of a "pixel" referred to
  2580. below is the value of the corresponding channel of that pixel, while
  2581. a "normalized pixel" is that number divided by the maximum
  2582. (installation-dependent) value <var>QuantumRange</var>. (If
  2583. normalized pixels are used, they are restored, following the other
  2584. calculations, to the full range by multiplying by <var>QuantumRange</var>.)</p>
  2585. <div class="pre-scrollable bg-light text-dark mx-4">
  2586. <table class="table table-sm table-hover table-striped table-responsive">
  2587. <col width="25%" />
  2588. <col width="75%" />
  2589. <thead>
  2590. <tr>
  2591. <th><var>operator</var></th>
  2592. <th>Summary (see further below for details)</th>
  2593. </tr>
  2594. </thead>
  2595. <tbody>
  2596. <tr><td>Abs </td> <td>Add <var>value</var> to pixels and return absolute value. </td></tr>
  2597. <tr><td>Add </td> <td>Add <var>value</var> to pixels. </td></tr>
  2598. <tr><td>AddModulus </td> <td>Add <var>value</var> to pixels modulo <var>QuantumRange</var>.</td></tr>
  2599. <tr><td>And </td> <td>Binary AND of pixels with <var>value</var>.</td></tr>
  2600. <tr><td>Cos, Cosine </td> <td>Apply cosine to pixels with frequency <var>value</var> with 50% bias added.</td></tr>
  2601. <tr><td>Divide </td> <td>Divide pixels by <var>value</var>.</td></tr>
  2602. <tr><td>Exp </td> <td>base-e exponential function</td></tr>
  2603. <tr><td>Exponential </td> <td>base-e exponential function</td></tr>
  2604. <tr><td>InverseLog </td> <td>Apply inverse scaled logarithm to normalized pixels.</td></tr>
  2605. <tr><td>LeftShift </td> <td>Shift the pixel values left by <var>value</var> bits (i.e., multiply pixels by 2<sup><var>value</var></sup>).</td></tr>
  2606. <tr><td>Log </td> <td>Apply scaled logarithm to normalized pixels.</td></tr>
  2607. <tr><td>Max </td> <td>Set pixels to maximum of <var>value</var> and current pixel <var>value</var> (i.e. set any pixels currently less than <var>value</var> to <var>value</var>).</td></tr>
  2608. <tr><td>Mean </td> <td>Add the <var>value</var> and divide by 2.</td></tr>
  2609. <tr><td>Median </td> <td>Choose the median value from an image sequence.</td></tr>
  2610. <tr><td>Min </td> <td>Set pixels to minimum of <var>value</var> and current pixel <var>value</var> (i.e. set any pixels currently greater than <var>value</var> to <var>value</var>).</td></tr>
  2611. <tr><td>Multiply </td> <td>Multiply pixels by <var>value</var>.</td></tr>
  2612. <tr><td>Or </td> <td>Binary OR of pixels with <var>value</var>.</td></tr>
  2613. <tr><td>Pow </td> <td>Raise normalized pixels to the power <var>value</var>.</td></tr>
  2614. <tr><td>RightShift </td> <td>Shift the pixel values right by <var>value</var> bits (i.e., divide pixels by 2<sup><var>value</var></sup>).</td></tr>
  2615. <tr><td>RMS</td> <td>Square the pixel and add the <var>value</var>.</td></tr>
  2616. <tr><td>RootMeanSquare</td> <td>Square the pixel and add the <var>value</var>.</td></tr>
  2617. <tr><td>Set </td> <td>Set pixel equal to <var>value</var>.</td></tr>
  2618. <tr><td>Sin, Sine </td> <td>Apply sine to pixels with frequency <var>value</var> with 50% bias added.</td></tr>
  2619. <tr><td>Subtract </td> <td>Subtract <var>value</var> from pixels.</td></tr>
  2620. <tr><td>Xor </td> <td>Binary XOR of pixels with <var>value.</var></td></tr>
  2621. <tr><td> </td><td> </td></tr>
  2622. <tr><td>Gaussian-noise</td><td> </td></tr>
  2623. <tr><td>Impulse-noise</td><td> </td></tr>
  2624. <tr><td>Laplacian-noise</td><td> </td></tr>
  2625. <tr><td>Multiplicative-noise</td> <td>(These are equivalent to the corresponding <a href="command-line-options.html#noise" >-noise</a> operators.)</td></tr>
  2626. <tr><td>PoissonNoise</td><td> </td></tr>
  2627. <tr><td>Uniform-noise</td><td> </td></tr>
  2628. <tr><td> </td><td> </td></tr>
  2629. <tr><td>Threshold </td> <td>Threshold pixels larger than <var>value</var>.</td></tr>
  2630. <tr><td>ThresholdBlack </td> <td>Threshold pixels to zero values equal to or below <var>value</var>.</td></tr>
  2631. <tr><td>ThresholdWhite </td> <td>Threshold pixels to maximum values above <var>value</var>. </td></tr>
  2632. </tbody>
  2633. </table>
  2634. </div>
  2635. <p>The specified functions are applied only to each previously set <a
  2636. href="command-line-options.html#channel" >-channel</a> in the image. If necessary, the results of the
  2637. calculations are truncated (clipped) to fit in the interval [0, <var>QuantumRange</var>]. The transparency channel of the image is
  2638. represented as a 'alpha' values (0 = fully transparent), so, for example, a
  2639. <samp>Divide</samp> by 2 of the alpha channel will make the image
  2640. semi-transparent. Append the percent symbol '<samp>%</samp>' to specify a value
  2641. as a percentage of the <var>QuantumRange</var>.</p>
  2642. <p>To print a complete list of <a href="command-line-options.html#evaluate">-evaluate</a> operators, use
  2643. <a href="command-line-options.html#list">-list evaluate</a>.</p>
  2644. <p>The results of the <samp>Add</samp>, <samp>Subtract</samp> and
  2645. <samp>Multiply</samp> methods can also be achieved using either the <a
  2646. href="command-line-options.html#level" >-level</a> or the <a href="command-line-options.html#level" >+level</a> operator, with
  2647. appropriate argument, to linearly modify the overall range of color values.
  2648. Please note, however, that <a href="command-line-options.html#level" >-level</a> treats transparency as
  2649. 'matte' values (0 = opaque), while <a href="command-line-options.html#level" >-evaluate</a> works with
  2650. 'alpha' values.</p>
  2651. <p><samp>AddModulus</samp> has been added as of ImageMagick 6.4.8-4 and provides
  2652. addition modulo the <var>QuantumRange</var>. It is therefore
  2653. equivalent to <samp>Add</samp> unless the resulting pixel value is outside the
  2654. interval [0, <var>QuantumRange</var>]. </p>
  2655. <p><samp>Exp or Exponential</samp> has been added as of ImageMagick 6.6.5-1 and
  2656. works on normalized pixel values. The <var>value</var> used with
  2657. <samp>Exp</samp> should be negative so as to produce a decaying exponential
  2658. function. Non-negative values will always produce results larger unity and
  2659. thus outside the interval [0, <var>QuantumRange</var>]. The
  2660. formula is expressed below. </p>
  2661. <p class="text-center">
  2662. exp(<var>value</var> × <b><var>u</var></b>)
  2663. </p>
  2664. <p> If the input image is squared, for example, using <a href="command-line-options.html#-function"
  2665. >-function polynomial "2 0 0"</a>, then a decaying Gaussian function will be
  2666. the result.</p>
  2667. <p><samp>Log</samp> has been added as of ImageMagick 6.4.2-1 and works on
  2668. normalized pixel values. This a <var>scaled</var> log function. The <var>value</var> used with <samp>Log</samp> provides a <var>scaling
  2669. factor</var> that adjusts the curvature in the graph of the log function. The
  2670. formula applied to a normalized value <b><var>u</var></b> is below. </p>
  2671. <p class="text-center">
  2672. log(<var>value</var> × <b><var>u</var></b> + 1) / log(<var>value</var> + 1)
  2673. </p>
  2674. <p><samp>Pow</samp> has been added as of ImageMagick 6.4.1-9, and works on
  2675. normalized pixel values. Note that <samp>Pow</samp> is related to the <a
  2676. href="command-line-options.html#gamma" >-gamma</a> operator. For example, <b>-gamma 2</b> is equivalent
  2677. to <b>-evaluate pow 0.5</b>, i.e., a 'square root' function. The value used
  2678. with <a href="command-line-options.html#gamma" >-gamma</a> is simply the reciprocal of the value used
  2679. with <samp>Pow</samp>.</p>
  2680. <p><samp>Cosine</samp> and <samp>Sine</samp> was added as of IM v6.4.8-8 and
  2681. converts the image values into a value according to a (co)sine wave function.
  2682. The synonyms <samp>Cos</samp> and <samp>Sin</samp> may also be used. The output
  2683. is biased 50% and normalized by 50% so as to fit in the respective color value
  2684. range. The <var>value</var> scaling of the <var>period</var> of the
  2685. function (its frequency), and thus determines the number of 'waves' that will
  2686. be generated over the input color range. For example, if the <var>value</var> is 1, the effective period is simply the <var>QuantumRange</var>; but if the <var>value</var> is 2,
  2687. then the effective period is the <var>half</var> the <var>QuantumRange</var>.</p>
  2688. <p class="text-center">
  2689. 0.5 + 0.5 × cos(2 π <b><var>u</var></b> × <var>value</var>).
  2690. </p>
  2691. <p>Use <a href="command-line-options.html#set">-set</a> '<samp>option:evaluate:clamp=true</samp> to clamp the evaluation value.</p>
  2692. <p>See also the <a href="command-line-options.html#function" >-function</a> operator, which is a
  2693. multi-value version of evaluate. </p>
  2694. <div style="margin: auto;">
  2695. <h2><a class="anchor" id="evaluate-sequence"></a>-evaluate-sequence <var>operator</var></h2>
  2696. </div>
  2697. <p class="magick-description">Alter channel pixels by evaluating an arithmetic, relational, or logical expression over a sequence of images. Ensure all the images in the sequence are in the same colorspace, otherwise you may get unexpected results, e.g. add <a href="command-line-options.html#colorspace" >-colorspace sRGB</a> to your command-line.</p>
  2698. <p>To print a complete list of <a
  2699. href="command-line-options.html#evaluate-sequence">-evaluate-sequence</a> operators, use <a
  2700. href="command-line-options.html#list">-list evaluate</a>.</p>
  2701. <div style="margin: auto;">
  2702. <h2><a class="anchor" id="exit"></a>-exit</h2>
  2703. </div>
  2704. <p class="magick-description">Stop processing at this point.</p>
  2705. <p> No further options are processed after this option. Useful in a script to force the <samp>magick</samp> command to exit without actually closing the pipeline that it is processing options from. You can also use the option as a <em>final</em> option on the <samp>magick</samp> command line instead of an implicit output image, to completely prevent any image write. Note, even the <samp>NULL:</samp> coder requires at least one image, for it to 'not write'! This option does not require any images at all.</p>
  2706. <div style="margin: auto;">
  2707. <h2><a class="anchor" id="extent"></a>-extent <var>geometry</var></h2>
  2708. </div>
  2709. <p class="magick-description">Set the image size and offset.</p>
  2710. <p>If the image is enlarged, unfilled areas are set to the background color.
  2711. To position the image, use offsets in the <var>geometry</var>
  2712. specification or precede with a <a href="command-line-options.html#gravity">-gravity</a> setting. To
  2713. specify how to compose the image with the background, use <a href="command-line-options.html#compose"
  2714. >-compose</a>.</p>
  2715. <p>The following command reduces or expands a JPEG image to fit on an 800x600
  2716. display. If the aspect ratio of the input image isn't exactly 4:3, then the
  2717. image is centered on an 800x600 black canvas: </p>
  2718. <pre class="bg-light text-dark mx-4 cli"><samp>magick input.jpg -resize 800x600 -background black -compose Copy \
  2719. -gravity center -extent 800x600 -quality 92 output.jpg
  2720. </samp></pre>
  2721. <p>The command can also be used with a ratio. If the image is not already at that ratio, it will be cropped to fit it. The <a href="command-line-options.html#gravity">-gravity</a> setting has the expected effects.
  2722. <p>The following command crops a JPEG image so that it has a 4:3 ratio:</p>
  2723. <pre class="bg-light text-dark mx-4 cli"><samp>magick input.jpg -extent 4:3 -quality 92 output.jpg
  2724. </samp></pre>
  2725. <p>Append <samp>&lt;</samp> to pad only if the image is smaller than the specified size <em>and</em> not crop if the image is larger (i.e. no-op). Append <samp>&gt;</samp> to crop only if the image is larger than the specified size <em>and</em> not extend if the image is smaller. (i.e. no-op).</p>
  2726. <p>See <a href="command-line-processing.html#geometry">Image Geometry</a> for complete details about the <em class="arg">geometry</em> argument.</p>
  2727. <div style="margin: auto;">
  2728. <h2><a class="anchor" id="extract"></a>-extract <var>geometry</var></h2>
  2729. </div>
  2730. <p class="magick-description">Extract the specified area from image.</p>
  2731. <p>This option is most useful for extracting a subregion of a very large raw
  2732. image. Note that these two commands are equivalent:</p>
  2733. <pre class="bg-light text-dark mx-4 cli"><samp>magick -size 16000x16000 -depth 8 -extract 640x480+1280+960 \
  2734. image.rgb image.png",
  2735. convert -size 16000x16000 -depth 8 'image.rgb[640x480+1280+960]' \
  2736. image.rgb image.png"
  2737. </samp></pre>
  2738. <p>If you omit the offsets, as in</p>
  2739. <pre class="bg-light text-dark mx-4 cli"><samp>magick -size 16000x16000 -depth 8 -extract 640x480 \
  2740. image.rgb image.png
  2741. </samp></pre>
  2742. <p>the image is <var>resized</var> to the specified dimensions instead,
  2743. equivalent to:</p>
  2744. <pre class="bg-light text-dark mx-4 cli"><samp>magick -size 16000x16000 -depth 8 -resize 640x480 image.rgb image.png
  2745. </samp></pre>
  2746. <p>See <a href="command-line-processing.html#geometry">Image Geometry</a> for complete details about the <em class="arg">geometry</em> argument.</p>
  2747. <div style="margin: auto;">
  2748. <h2><a class="anchor" id="family"></a>-family <var>fontFamily</var></h2>
  2749. </div>
  2750. <p class="magick-description">Set a font family for text.</p>
  2751. <p>This setting suggests a font family that ImageMagick should try to use for
  2752. rendering text. If the family can be found it is used; if not, a default font
  2753. (e.g., "Arial") or a family known to be similar is substituted (e.g.,
  2754. "Courier" might be used if "System" is requested but not found). Note, the family can be a CSS-style font list.</p>
  2755. <p>For other settings that affect fonts, see the options
  2756. <a href="command-line-options.html#font">-font</a>,
  2757. <a href="command-line-options.html#pointsize">-pointsize</a>,
  2758. <a href="command-line-options.html#stretch">-stretch</a>,
  2759. <a href="command-line-options.html#style">-style</a>,
  2760. and <a href="command-line-options.html#weight">-weight</a>. </p>
  2761. <div style="margin: auto;">
  2762. <h2><a class="anchor" id="features"></a>-features <var>distance</var></h2>
  2763. </div>
  2764. <p class="magick-description">Display (co-occurrence matrix) texture measure features for each channel in the image in each of four directions (horizontal, vertical, left and right diagonals) for the specified distance.</p>
  2765. <pre class="bg-light text-dark mx-4"><samp>Angular Second Moment Sum Entropy
  2766. Contrast Entropy
  2767. Correlation Difference Variance
  2768. Sum of Squares Variance Difference Entropy
  2769. Inverse Difference Moment Information Measure of Correlation 1
  2770. Sum Average Information Measure of Correlation 2
  2771. Sum Variance Maximum Correlation Coefficient
  2772. </samp></pre>
  2773. <div style="margin: auto;">
  2774. <h2><a class="anchor" id="fft"></a>-fft</h2>
  2775. </div>
  2776. <p class="magick-description">Implements the forward discrete Fourier transform (DFT).</p>
  2777. <p>This option is new as of ImageMagick 6.5.4-3 (and now working for Windows
  2778. users in ImageMagick 6.6.0-9). It transforms an image from the normal
  2779. (spatial) domain to the frequency domain. In the frequency domain, an image is
  2780. represented as a superposition of complex sinusoidal waves of varying
  2781. amplitudes. The image x and y coordinates are the possible frequencies along
  2782. the x and y directions, respectively, and the pixel intensity values are
  2783. complex numbers that correspond to the sinusoidal wave amplitudes. See for
  2784. example, <a href="http://en.wikipedia.org/wiki/Fourier_transform">Fourier
  2785. Transform</a>, <a href="http://en.wikipedia.org/wiki/DFT">Discrete Fourier
  2786. Transform</a> and <a href="http://en.wikipedia.org/wiki/FFT">Fast Fourier
  2787. Transform</a>.</p>
  2788. <p>A single image name is provided as output for this option. However, the
  2789. output result will have two components. It is either a two-frame image or two
  2790. separate images, depending upon whether the image format specified supports
  2791. multi-frame images. The reason that we get a dual output result is because the
  2792. frequency domain represents an image using complex numbers, which cannot be
  2793. visualized directly. Therefore, the complex values are automagically separated
  2794. into a two-component image representation. The first component is the
  2795. magnitude of the complex number and the second is the phase of the complex
  2796. number. See for example, <a
  2797. href="http://en.wikipedia.org/wiki/Complex_numbers">Complex Numbers</a>.</p>
  2798. <p>The magnitude and phase component images must be specified using image
  2799. formats that do not limit the color or compress the image. Thus, MIFF, TIF,
  2800. PFM, EXR and PNG are the recommended image formats to use. All of these
  2801. formats, except PNG support multi-frame images. So for example,</p>
  2802. <pre class="bg-light text-dark mx-4 cli"><samp>magick image.png -fft fft_image.miff
  2803. </samp></pre>
  2804. <p>generates a magnitude image as <samp>fft_image.miff[0]</samp> and a phase
  2805. image as <samp>fft_image.miff[1]</samp>. Similarly,</p>
  2806. <pre class="bg-light text-dark mx-4 cli"><samp>magick image.png -fft fft_image.png
  2807. </samp></pre>
  2808. <p>generates a magnitude image as <samp>fft_image-0.png</samp> and a phase image
  2809. as <samp>fft_image-1.png</samp>. If you prefer this representation, then you can
  2810. force any of the other formats to produce two output images by including <a
  2811. href="command-line-options.html#adjoin">+adjoin</a> following -fft in the command line.</p>
  2812. <p>The input image can be any size, but if not square and even-dimensioned, it
  2813. is padded automagically to the larger of the width or height of the input
  2814. image and to an even number of pixels. The padding will occur at the bottom
  2815. and/or right sides of the input image. The resulting output magnitude and
  2816. phase images is square at this size. The kind of padding relies on the <a
  2817. href="command-line-options.html#virtual-pixel">-virtual-pixel</a> setting.</p>
  2818. <p>Both output components will have dynamic ranges that fit within
  2819. [0, <var>QuantumRange</var>], so that HDRI need not be enabled.
  2820. Phase values nominally range from 0 to 2*π, but is scaled to span the full
  2821. dynamic range. (The first few releases had non-HDRI scaled but HDRI not
  2822. scaled). The magnitude image is not scaled and thus generally will contain
  2823. very small values. As such, the image normally will appear totally black. In
  2824. order to view any detail, the magnitude image typically is enhanced with a log
  2825. function into what is usually called the spectrum. A log function is used to
  2826. enhance the darker values more in comparison to the lighter values. This can
  2827. be done, for example, as follows:</p>
  2828. <pre class="bg-light text-dark mx-4 cli"><samp>magick fft_image.miff[0] -contrast-stretch 0 \
  2829. -evaluate log 1000 fft_image_spectrum.png"
  2830. </samp></pre>
  2831. <p>where either <a href="command-line-options.html#contrast-stretch">-contrast-stretch</a> 0 or <a
  2832. href="command-line-options.html#auto-level">-auto-level</a> is used to scale the image to full dynamic
  2833. range, first. The argument to the <a href="command-line-options.html#evaluate">-evaluate</a> log
  2834. typically is specified between 100 and 10,000, depending upon the amount of
  2835. detail that one wants to bring out in the spectrum. Larger values produce more
  2836. visible detail. Too much detail, however, may hide the important features.</p>
  2837. <p>The <a href="http://www.fftw.org/">FFTW</a> delegate library is required to
  2838. use <a href="command-line-options.html#fft">-fft</a>.</p>
  2839. <p>Use <a href="command-line-options.html#fft">+fft</a> to produce two output images that are the real
  2840. and imaginary components of the complex valued Fourier transform.</p>
  2841. <p>However, as the real and imaginary components can contain negative values,
  2842. this requires that IM be configured with HDRI enabled. In this case, you must
  2843. use either MIFF, TIF, PFM or MPC formats for the real and imaginary component
  2844. results, since they are formats that preserve both negative and fractional
  2845. values without clipping them or truncating the fractional part. With either
  2846. MIFF or TIF, one should add <samp>-define quantum:format=32</samp>, to allow those image
  2847. types to work properly in HDRI mode without clipping.</p>
  2848. <p>The real and imaginary component images resulting from <a
  2849. href="command-line-options.html#fft">+fft</a> are also square, even dimensioned images due to the same
  2850. padding that was discussed above for the magnitude and phase component
  2851. images.</p>
  2852. <p>See the discussion on HDRI implementations of ImageMagick on the page <a
  2853. href="high-dynamic-range.html" >High Dynamic-Range Images</a>. For more
  2854. about HDRI go the ImageMagick <a
  2855. href="../Usage/basics/#hdri" >Usage</a> pages, <a
  2856. href="http://www.fmwconcepts.com/imagemagick/fourier_transforms/fourier.html"
  2857. >Fred's Fourier Processing With ImageMagick page</a> or this <a
  2858. href="http://en.wikipedia.org/wiki/High_dynamic_range_imaging" >Wikipedia</a>
  2859. entry. </p>
  2860. <p>By default the FFT is normalized (and the IFT is not). Use "<samp><a href="command-line-options.html#define" >-define</a> fourier:normalize=forward</samp> to explicitly normalize the FFT and unnormalize the IFT.</p>
  2861. <div style="margin: auto;">
  2862. <h2><a class="anchor" id="fill"></a>-fill <var>color</var></h2>
  2863. </div>
  2864. <p class="magick-description">Color to use when filling a graphic primitive.</p>
  2865. <p>This option accepts a color name, a hex color, or a numerical RGB, RGBA,
  2866. HSL, HSLA, CMYK, or CMYKA specification. See <a href="../www/color.html" >Color Names</a> for
  2867. a description of how to properly specify the color argument.</p>
  2868. <p>Enclose the color specification in quotation marks to prevent the "#" or
  2869. the parentheses from being interpreted by your shell.</p>
  2870. <p>For example,</p>
  2871. <pre class="bg-light text-dark mx-4"><samp>-fill blue
  2872. -fill "#ddddff"
  2873. -fill "rgb(255,255,255)"
  2874. </samp></pre>
  2875. <p>See <a href="command-line-options.html#draw">-draw</a> for further details.</p>
  2876. <p>To print a complete list of color names, use the <a href="command-line-options.html#list">-list color</a> option.</p>
  2877. <div style="margin: auto;">
  2878. <h2><a class="anchor" id="filter"></a>-filter <var>type</var></h2>
  2879. </div>
  2880. <p class="magick-description">Use this <var>type</var> of filter when resizing or distorting an image.</p>
  2881. <p>Use this option to affect the resizing operation of an image during
  2882. operations such as <a href="command-line-options.html#resize">-resize</a> and <a href="command-line-options.html#distort"
  2883. >-distort</a>. For example you can use a simple resize filter such as:</p>
  2884. <pre class="bg-light text-dark mx-4"><samp>Point Hermite Cubic
  2885. Box Gaussian Catrom
  2886. Triangle Quadratic Mitchell
  2887. CubicSpline
  2888. </samp></pre>
  2889. <p>Use <samp>-define filter:lobes={2,3,4}</samp> to specify the support size for filtering for the <samp>CubicSpline</samp> filter.</p>
  2890. <p>The <samp>Bessel</samp> and <samp>Sinc</samp> filter is also provided (as well
  2891. as a faster <samp>SincFast</samp> equivalent form). However these filters are
  2892. generally useless on their own as they are infinite filters that are being
  2893. clipped to the filters support size. Their direct use is not recommended
  2894. except via expert settings (see below). </p>
  2895. <p>Instead these special filter functions are typically windowed by a windowing
  2896. function that the <a href="command-line-options.html#filter" >-filter</a> setting defines. That is
  2897. using these functions will define a 'Windowed' filter, appropriate to the
  2898. operator involved. Windowed filters include: </p>
  2899. <pre class="bg-light text-dark mx-4"><samp>Lanczos Hamming Parzen
  2900. Blackman Kaiser Welsh
  2901. Hanning Bartlett Bohman
  2902. </samp></pre>
  2903. <p>Also one special self-windowing filter is also provided
  2904. <samp>Lagrange</samp>, which will automagically re-adjust its function depending
  2905. on the current 'support' or 'lobes' expert settings (see below).</p>
  2906. <p>If you do not select a filter with this option, the filter defaults to
  2907. <samp>Mitchell</samp> for a colormapped image, an image with a matte channel, or
  2908. if the image is enlarged. Otherwise the filter default to
  2909. <samp>Lanczos</samp>.</p>
  2910. <p>To print a complete list of resize filters, use the <a href="command-line-options.html#list">-list
  2911. filter</a> option.</p>
  2912. <p>You can modify how the filter behaves as it scales your image through the
  2913. use of these expert settings (see also <a href="command-line-options.html#define" >-define</a> and <a
  2914. href="command-line-options.html#set" >-set</a>):-</p>
  2915. <div class="pre-scrollable bg-light text-dark mx-4">
  2916. <table class="table table-sm table-hover table-striped table-responsive">
  2917. <tr>
  2918. <td>-define filter:blur=<var>factor</var></td>
  2919. <td>Scale the X axis of the filter (and its window). Use &gt; 1.0 for
  2920. blurry or &lt; 1.0 for sharp. This should only be used with Gaussian and
  2921. Gaussian-like filters simple filters, or you may not get the expected
  2922. results. </td>
  2923. </tr>
  2924. <tr>
  2925. <td>-define filter:support=<var>radius</var></td>
  2926. <td>Set the filter support radius. Defines how large the filter should be and
  2927. thus directly defines how slow the filtered resampling process is. All
  2928. filters have a default 'preferred' support size. Some filters like
  2929. <samp>Lagrange</samp> and windowed filters adjust themselves depending on
  2930. this value. With simple filters this value either does nothing (but slow
  2931. the resampling), or will clip the filter function in a detrimental way.
  2932. </td>
  2933. </tr>
  2934. <tr>
  2935. <td>-define filter:lobes=<var>count</var></td>
  2936. <td>Set the number of lobes to use for the Sinc/Bessel filter. This an
  2937. alternative way of specifying the 'support' range of the filter, that is
  2938. designed to be more suited to windowed filters, especially when used for
  2939. image distorts.</td>
  2940. </tr>
  2941. <tr>
  2942. <td>-define filter:sigma=<var>value</var></td>
  2943. <td>The 'sigma' value used to define the <samp>Gaussian</samp> filter. Default
  2944. sigma value is '<samp>0.5</samp>'. It only affects <samp>Gaussian</samp> but
  2945. does not shrink (but may enlarge) the filter's 'support'. It can be used
  2946. to generate very small blurs but without the filter 'missing' pixels due
  2947. to using a small support setting. A larger value of '<samp>0.707</samp>'
  2948. (a value of '1/sqrt(2)') is another common setting. </td>
  2949. </tr>
  2950. <tr>
  2951. <td>-define filter:b=<var>b-spline_factor</var></td>
  2952. </tr>
  2953. <tr>
  2954. <td>-define filter:c=<var>keys_alpha_factor</var></td>
  2955. <td>Redefine the values used for cubic filters such as <samp>Cubic</samp>,
  2956. <samp>Catrom</samp>, <samp>Mitchel</samp>, and <samp>Hermite</samp>, as well as
  2957. the <samp>Parzen</samp> cubic windowing function. If only one of the values
  2958. are defined, the other is set so as to generate a 'Cubic-Keys' filter.
  2959. The values meaning was defined by a research paper by
  2960. Mitchell-Netravali.</td>
  2961. </tr>
  2962. <tr>
  2963. <td>-define filter:kaiser-beta=<var>value</var></td>
  2964. <td>The 'alpha' value used to as part of the Kaiser Windowing function.
  2965. Default value is '6.5'. It only affects Kaiser windowing function, and
  2966. does not affect any other attributes.
  2967. Before ImageMagick v6.7.6-10, this option was known as "filter:alpha", (an
  2968. inheritance from the very old "zoom" program). It was changed to bring the
  2969. function in line with more modern academic research usage, and better
  2970. assign it be more definitive. </td>
  2971. </tr>
  2972. <tr>
  2973. <td>-define filter:kaiser-alpha=<var>value</var></td>
  2974. <td>This value when multiplied by 'PI' is equivalent to "kaiser-beta", and
  2975. will override that setting. It only affects Kaiser windowing function,
  2976. and does not affect any other attributes. </td>
  2977. </tr>
  2978. <tr>
  2979. <td>-define filter:filter=<var>filter_function</var></td>
  2980. <td>Use this function directly as the weighting filter. This will allow
  2981. you to directly use a windowing function such as <samp>Blackman</samp>,
  2982. as a resampling filter, rather than as its normal usage as a windowing
  2983. function. If defined, no windowing function also defined, the window function is set
  2984. to <samp>Box</samp>). Directly specifying <samp>Sinc</samp> or <samp>Jinc</samp>
  2985. as a filter will also do this. </td>
  2986. </tr>
  2987. <tr>
  2988. <td>-define filter:window=<var>filter_function</var></td>
  2989. <td>The IIR (infinite impulse response) filters <samp>Sinc</samp> and
  2990. <samp>Jinc</samp> are windowed (brought down to zero over the defined
  2991. support range) with the given filter. This allows you to specify a filter
  2992. function to be used as a windowing function for these IIR filters.
  2993. Many of the defined filters are actually windowing functions for these IIR
  2994. filters. A typical choices is <samp>Box</samp>, (which effectively turns
  2995. off the windowing function). </td>
  2996. </tr>
  2997. <tr>
  2998. <td>-define filter:win-support=<var>radius</var></td>
  2999. <td>Scale windowing function to this size instead. This causes the windowing
  3000. (or self-windowing Lagrange filter) to act is if the support window is
  3001. larger than what is actually supplied to the calling operator. The filter
  3002. however is still clipped to the real support size given. If unset this
  3003. will equal the normal filter support size. </td>
  3004. </tr>
  3005. <tr>
  3006. <td>-define filter:verbose=<var>1</var></td>
  3007. <td>This causes IM to print information on the final internal filter
  3008. selection to standard output. This includes a commented header on the
  3009. filter settings being used, and data allowing the filter weights to be
  3010. easily graphed. Note however that some filters are internally defined in terms of other filters. The <samp>Lanczos</samp> filter for example is defined in terms of
  3011. a <samp>SincFast</samp> windowed <samp>SincFast</samp> filter, while
  3012. <samp>Mitchell</samp> is defined as a general <samp>Cubic</samp> family filter
  3013. with specific 'B' and 'C' settings. </td>
  3014. </tr>
  3015. </table>
  3016. </div>
  3017. <p>For example, to get a 8 lobe jinc windowed sinc filter (Genseng filter?):</p>
  3018. <pre class="bg-light text-dark mx-4 cli"><samp>magick image.png \
  3019. -filter sinc \
  3020. -set filter:window=jinc \
  3021. -set filter:lobes=8 \
  3022. -resize 150% image.jpg"
  3023. </samp></pre>
  3024. <p>Or a raw un-windowed Sinc filter with 4 lobes:</p>
  3025. <pre class="bg-light text-dark mx-4 cli"><samp>magick image.png \
  3026. -set filter:filter=sinc \
  3027. -set filter:lobes=4 \
  3028. -resize 150% image.jpg"
  3029. </samp></pre>
  3030. <p>To extract the data for a raw windowing function, combine it with
  3031. a '<samp>Box</samp>' filter. For example the '<samp>Welch</samp> parabolic
  3032. windowing function. </p>
  3033. <pre class="bg-light text-dark mx-4 cli"><samp>magick null: -define filter:filter=Box \
  3034. -define filter:window=Welch \
  3035. -define filter:support=1.0 \
  3036. -define filter:verbose=1 \
  3037. -resize 2 null: > window_welch.dat
  3038. gnuplot
  3039. set grid
  3040. plot \"window_welch.dat\" with lines
  3041. </samp></pre>
  3042. <p>Note that the use of expert options is provided for image processing experts
  3043. who have studied and understand how resize filters work. Without this
  3044. knowledge, and an understanding of the definition of the actual filters
  3045. involved, using expert settings are more likely to be detrimental to your image
  3046. resizing.</p>
  3047. <div style="margin: auto;">
  3048. <h2><a class="anchor" id="flatten"></a>-flatten</h2>
  3049. </div>
  3050. <p class="magick-description">This is a simple alias for the <a href="command-line-options.html#layers" >-layers</a> method "flatten".</p>
  3051. <div style="margin: auto;">
  3052. <h2><a class="anchor" id="flip"></a>-flip</h2>
  3053. </div>
  3054. <p class="magick-description">Create a <var>mirror image</var></p>
  3055. <p>reflect the scanlines in the vertical direction. The image will be mirrored
  3056. upside-down. </p>
  3057. <div style="margin: auto;">
  3058. <h2><a class="anchor" id="floodfill"></a>-floodfill {<var>+-</var>}<var>x</var>{<var>+-</var>}<var>y</var> <var>color</var></h2>
  3059. </div>
  3060. <p class="magick-description">Floodfill the image with color at the specified offset.</p>
  3061. <p>Flood fill starts from the given 'seed point' which is not gravity affected.
  3062. Any color that matches within <a href="command-line-options.html#fuzz" >-fuzz</a> color distance of the
  3063. given <var>color</var> argument, connected to that 'seed point'
  3064. will be replaced with the current <a href="command-line-options.html#fill" >-fill</a> color. </p>
  3065. <p>Note that if the pixel at the 'seed point' does not itself match the given
  3066. <var>color</var> (according to <a href="command-line-options.html#fuzz" >-fuzz</a>), then no
  3067. action will be taken. </p>
  3068. <p>This operator works more like the <a href="command-line-options.html#opaque" >-opaque</a> option, than
  3069. a more general flood fill that reads the matching color directly at the 'seed
  3070. point'. For this form of flood fill, look at <a href="command-line-options.html#draw" >-draw</a> and
  3071. its 'color floodfill' drawing method. </p>
  3072. <div style="margin: auto;">
  3073. <h2><a class="anchor" id="flop"></a>-flop</h2>
  3074. </div>
  3075. <p class="magick-description">Create a <var>mirror image</var>.</p>
  3076. <p>Reflect the scanlines in the horizontal direction, just like the image in
  3077. a vertical mirror. </p>
  3078. <div style="margin: auto;">
  3079. <h2><a class="anchor" id="font"></a>-font <var>name</var></h2>
  3080. </div>
  3081. <p class="magick-description">Set the font to use when annotating images with text, or creating labels.</p>
  3082. <p>To print a complete list of fonts, use the <a href="command-line-options.html#list">-list font</a>
  3083. option (for versions prior to 6.3.6, use 'type' instead of 'font').</p>
  3084. <p>In addition to the fonts specified by the above pre-defined list, you can
  3085. also specify a font from a specific source. For example <samp>Arial.ttf</samp>
  3086. is a TrueType font file, <samp>ps:helvetica</samp> is PostScript font, and
  3087. <samp>x:fixed</samp> is X11 font.</p>
  3088. <p>For other settings that affect fonts, see the options <a
  3089. href="command-line-options.html#family">-family</a>, <a href="command-line-options.html#stretch">-stretch</a>, <a
  3090. href="command-line-options.html#style">-style</a>, and <a href="command-line-options.html#weight">-weight</a>. </p>
  3091. <p>To specify an explicit font filename or collection, specify the font path preceded with a <samp>@</samp>, e.g., <samp>@arial.ttf</samp>. You can specify the font face index for font collections, e.g., <samp>@msgothic.ttc[1]</samp>.</p>
  3092. <div style="margin: auto;">
  3093. <h2><a class="anchor" id="foreground"></a>-foreground <var>color</var></h2>
  3094. </div>
  3095. <p class="magick-description">Define the foreground color for menus.", "display</p>
  3096. <p>The color is specified using the format described under the <a
  3097. href="command-line-options.html#fill">-fill</a> option.</p>
  3098. <p>The default foreground color is black.</p>
  3099. <div style="margin: auto;">
  3100. <h2><a class="anchor" id="format"></a>-format <var>type</var></h2>
  3101. </div>
  3102. <p class="magick-description">The image format type.</p>
  3103. <p>When used with the <samp>mogrify</samp> utility, this option converts any
  3104. image to the image <a href="formats.html">format</a> you specify.
  3105. For a list of image format types supported by ImageMagick, use <a
  3106. href="command-line-options.html#list">-list format</a>.</p>
  3107. <p>By default the file is written to its original name. However, if the
  3108. filename extension matches a supported format, the extension is replaced with
  3109. the image format type specified with <a href="command-line-options.html#format">-format</a>. For
  3110. example, if you specify <var>tiff</var> as the format type and the
  3111. input image filename is <var>image.gif</var>, the output image
  3112. filename becomes <var>image.tiff</var>.</p>
  3113. <div style="margin: auto;">
  3114. <h2><a class="anchor" id="format_identify"></a>-format <var>expression</var></h2>
  3115. </div>
  3116. <p class="magick-description">Output formatted image characteristics.</p>
  3117. <p>See <a href="../www/escape.html">Format and Print Image
  3118. Properties</a> for an explanation on how to specify the argument to this
  3119. option.</p>
  3120. <div style="margin: auto;">
  3121. <h2><a class="anchor" id="frame"></a>-frame <var>geometry</var></h2>
  3122. </div>
  3123. <p class="magick-description">Surround the image with a border or beveled frame.</p>
  3124. <p>The color of the border is specified with the <a href="command-line-options.html#mattecolor"
  3125. >-mattecolor</a> command line option. </p>
  3126. <p>See <a href="command-line-processing.html#geometry">Image Geometry</a> for complete details about the <em class="arg">geometry</em> argument. The <var>size</var> portion of the <var>geometry</var> argument indicates the amount of extra width and
  3127. height that is added to the dimensions of the image. If no offsets are given
  3128. in the <var>geometry</var> argument, then the border added is
  3129. a solid color. Offsets <var>x</var> and <var>y</var>, if present, specify that
  3130. the width and height of the border is partitioned to form an outer bevel of
  3131. thickness <var>x</var> pixels and an inner bevel of thickness
  3132. <var>y</var> pixels. Negative offsets make no sense as frame arguments.
  3133. </p>
  3134. <p>The <a href="command-line-options.html#frame">-frame</a> option is affected by the current <a
  3135. href="command-line-options.html#compose">-compose</a> setting and assumes that this is using the default
  3136. '<samp>Over</samp>' composition method. It generates an image of the appropriate
  3137. size with the current <a href="command-line-options.html#bordercolor">-bordercolor</a> setting, and then
  3138. draws the frame of four distinct colors close to the current <a
  3139. href="command-line-options.html#mattecolor">-mattecolor</a>. The original image is then overlaid onto
  3140. center of this image. This means that with the default compose method of
  3141. '<samp>Over</samp>' any transparent parts may be replaced by the current <a
  3142. href="command-line-options.html#bordercolor">-bordercolor</a> setting.</p>
  3143. <p>The image composition is not
  3144. affected by the <a href="command-line-options.html#gravity">-gravity</a> option.</p>
  3145. <div style="margin: auto;">
  3146. <h2><a class="anchor" id="frame_import_"></a>-frame</h2>
  3147. </div>
  3148. <p class="magick-description">Include the X window frame in the imported image. </p>
  3149. <div style="margin: auto;">
  3150. <h2><a class="anchor" id="function"></a>-function <var>function</var> <var>parameters</var></h2>
  3151. </div>
  3152. <p class="magick-description">Apply a function to channel values.</p>
  3153. <p>This operator performs calculations based on the given arguments to modify
  3154. each of the color values for each previously set <a
  3155. href="command-line-options.html#channel">-channel</a> in the image. See <a
  3156. href="command-line-options.html#evaluate">-evaluate</a> for details concerning how the results of the
  3157. calculations are handled.</p>
  3158. <p>This is can be considered a multi-argument version of the <a
  3159. href="command-line-options.html#evaluate">-evaluate</a> operator. (Added in
  3160. ImageMagick 6.4.8−8.)</p>
  3161. <p>Here, <var>parameters</var> is a comma-separated list of
  3162. numerical values. The number of values varies depending on which <var>function</var> is selected. Choose the <var>function</var> from:</p>
  3163. <pre class="bg-light text-dark mx-4"><samp>Polynomial
  3164. Sinusoid
  3165. Arcsin
  3166. Arctan
  3167. </samp></pre>
  3168. <p>To print a complete list of <a href="command-line-options.html#function">-function</a> operators,
  3169. use <a href="command-line-options.html#list">-list function</a>. Descriptions follow.</p>
  3170. <div class="pre-scrollable bg-light text-dark mx-4">
  3171. <dl class="row">
  3172. <dt class="col-md-4">Polynomial</dt>
  3173. <dd class="col-md-8"><p>The <samp>Polynomial</samp> function takes an arbitrary number of parameters,
  3174. these being the coefficients of a polynomial, in decreasing order of degree.
  3175. That is, entering</p>
  3176. <pre class="bg-light text-dark mx-4"><samp>-function Polynomial <var>a</var><sub><var>n</var></sub>,<var>a</var><sub><var>n</var>-1</sub>,...<var>a</var><sub>1</sub>,<var>a</var><sub>0</sub>
  3177. </samp></pre>
  3178. <p>will invoke a polynomial function given by</p>
  3179. <pre class="bg-light text-dark mx-4"><samp><var>a</var><sub><var>n</var></sub> <b><var>u</var></b><sup><var>n</var></sup> + <var>a</var><sub><var>n</var>-1</sub> <b><var>u</var></b><sup><var>n</var>-1</sup> + ··· <var>a</var><sub>1</sub> <b><var>u</var></b> + <var>a</var><sub>0</sub>,
  3180. </samp></pre>
  3181. <p>where <b><var>u</var></b> is pixel's original normalized channel value.</p>
  3182. <p>The <samp>Polynomial</samp> function can be used in place of <samp>Set</samp>
  3183. (the <var>constant</var> polynomial) and <samp>Add</samp>, <samp>Divide</samp>,
  3184. <samp>Multiply</samp>, and <samp>Subtract</samp> (some <var>linear</var>
  3185. polynomials) of the <a href="command-line-options.html#evaluate">-evaluate</a> operator. The <a
  3186. href="command-line-options.html#level">-level</a> operator also affects channels linearly. Some
  3187. correspondences follow.</p>
  3188. <div class="pre-scrollable bg-light text-dark mx-4">
  3189. <table class="table table-sm table-hover table-striped table-responsive">
  3190. <tr>
  3191. <td>-evaluate Set <var>value</var> </td>
  3192. <td>-function Polynomial <var>value</var></td>
  3193. <td>(Constant functions; set <var>value</var>×100% gray when channels are RGB.)</td>
  3194. </tr>
  3195. <tr>
  3196. <td>-evaluate Add <var>value</var> </td>
  3197. <td>-function Polynomial 1,<var>value</var></td>
  3198. </tr>
  3199. <tr>
  3200. <td>-evaluate Subtract <var>value</var> </td>
  3201. <td>-function Polynomial 1,−<var>value</var></td>
  3202. </tr>
  3203. <tr>
  3204. <td>-evaluate Multiply <var>value</var> </td>
  3205. <td>-function Polynomial <var>value</var>,0</td>
  3206. </tr>
  3207. <tr>
  3208. <td>+level black% x white%</td>
  3209. <td>-function Polynomial A,B</td>
  3210. <td>(Reduce contrast. Here, A=(white-black)/100 and B=black/100.)</td>
  3211. </tr>
  3212. </table>
  3213. </div>
  3214. <p>The <samp>Polynomial</samp> function gives great versatility, since
  3215. polynomials can be used to fit any continuous curve to any degree of accuracy
  3216. desired.</p>
  3217. </dd>
  3218. <dt class="col-md-4">Sinusoid</dt>
  3219. <dd class="col-md-8">
  3220. <p>The <samp>Sinusoid</samp> function can be used to vary the channel values
  3221. sinusoidally by setting frequency, phase shift, amplitude, and a bias. These
  3222. values are given as one to four parameters, as follows,</p>
  3223. <pre class="bg-light text-dark mx-4"><samp>-function <samp>Sinusoid</samp> <var>freq</var>,[<var>phase</var>,[<var>amp</var>,[<var>bias</var>]]]
  3224. </samp></pre>
  3225. <p>where <var>phase</var> is in degrees. (The domain [0,1] of the function
  3226. corresponds to 0 through <var>freq</var>×360 degrees.)
  3227. The result is that if a pixel's normalized channel value is originally
  3228. <b><var>u</var></b>, its resulting normalized value is given by </p>
  3229. <pre class="bg-light text-dark mx-4"><samp><var>amp</var> * sin(2*π* (<var>freq</var> * <b><var>u</var></b> + <var>phase</var> / 360)) + <var>bias</var>
  3230. </samp></pre>
  3231. <p> For example, the following generates a curve that starts and ends at 0.9
  3232. (when <b><var>u</var></b>=0 and 1, resp.), oscillating three times between
  3233. .7−.2=.5 and .7+.2=.9. </p>
  3234. <pre class="bg-light text-dark mx-4"><samp>-function Sinusoid 3,-90,.2,.7
  3235. </samp></pre>
  3236. <p>The default values of <var>amp</var> and <var>bias</var> are both .5. The default for <var>phase</var>
  3237. is 0.</p>
  3238. <p>The <samp>Sinusoid</samp> function generalizes <samp>Sin</samp> and
  3239. <samp>Cos</samp> of the <a href="command-line-options.html#evaluate">-evaluate</a> operator by allowing
  3240. varying amplitude, phase and bias. The correspondence is as follows.</p>
  3241. <div class="pre-scrollable bg-light text-dark mx-4">
  3242. <table class="table table-sm table-hover table-striped table-responsive">
  3243. <tr>
  3244. <td>-evaluate Sin <var>freq</var> </td>
  3245. <td>-function Sinusoid <var>freq</var>,0 </td>
  3246. </tr>
  3247. <tr>
  3248. <td>-evaluate Cos <var>freq</var> </td>
  3249. <td>-function Sinusoid <var>freq</var>,90 </td>
  3250. </tr>
  3251. </table>
  3252. </div>
  3253. </dd>
  3254. <dt class="col-md-4">ArcSin</dt>
  3255. <dd class="col-md-8">
  3256. <p>The <samp>ArcSin</samp> function generates the inverse curve of a Sinusoid,
  3257. and can be used to generate cylindrical distortion and displacement maps.
  3258. The curve can be adjusted relative to both the input values and output range
  3259. of values.</p>
  3260. <pre class="bg-light text-dark mx-4"><samp>-function <samp>ArcSin</samp> <var>width</var>,[<var>center</var>,[<var>range</var>,[<var>bias</var>]]]
  3261. </samp></pre>
  3262. <p>with all values given in terms of normalized color values (0.0 for black,
  3263. 1.0 for white). Defaulting to values covering the full range from 0.0 to 1.0
  3264. for bout input (<var>width</var>), and output (<var>width</var>) values. '<samp>1.0,0.5,1.0,0.5</samp>' </p>
  3265. <pre class="bg-light text-dark mx-4"><samp><var>range</var>/π * asin( 2/<var>width</var> * ( <b><var>u</var></b> - <var>center</var> ) ) + <var>bias</var>
  3266. </samp></pre>
  3267. </dd>
  3268. <dt class="col-md-4">ArcTan</dt>
  3269. <dd class="col-md-8">
  3270. <p>The <samp>ArcTan</samp> function generates a curve that smooth crosses from
  3271. limit values at infinities, though a center using the given slope value.
  3272. All these values can be adjusted via the arguments.</p>
  3273. <pre class="bg-light text-dark mx-4"><samp>-function <samp>ArcTan</samp> <var>slope</var>,[<var>center</var>,[<var>range</var>,[<var>bias</var>]]]
  3274. </samp></pre>
  3275. <p>Defaulting to '<samp>1.0,0.5,1.0,0.5</samp>'.
  3276. </p>
  3277. <pre class="bg-light text-dark mx-4"><samp><var>range</var>/π * atan( <var>slope</var>*π * ( <b><var>u</var></b> - <var>center</var> ) ) + <var>bias</var>
  3278. </samp></pre>
  3279. </dd>
  3280. </dl>
  3281. </div>
  3282. <div style="margin: auto;">
  3283. <h2><a class="anchor" id="fuzz"></a>-fuzz <var>distance</var>{<var>%</var>}</h2>
  3284. </div>
  3285. <p class="magick-description">Colors within this <var>distance</var> are considered equal.</p>
  3286. <p>A number of algorithms search for a target color. By default the color must
  3287. be exact. Use this option to match colors that are close to the target color
  3288. in RGB space. For example, if you want to automagically trim the edges of an
  3289. image with <a href="command-line-options.html#trim">-trim</a> but the image was scanned and the target
  3290. background color may differ by a small amount. This option can account for
  3291. these differences.</p>
  3292. <p>The <var>distance</var> can be in absolute intensity units or, by
  3293. appending <samp>%</samp> as a percentage of the maximum possible intensity (255,
  3294. 65535, or 4294967295).</p>
  3295. <p>Use <a href="command-line-options.html#fuzz" >+fuzz</a> to reset the fuzz value to 0.</p>
  3296. <div style="margin: auto;">
  3297. <h2><a class="anchor" id="fx"></a>-fx <var>expression</var></h2>
  3298. </div>
  3299. <p class="magick-description">Apply a mathematical expression to an image or image channels.</p>
  3300. <p>If the first character of <var>expression</var> is <samp>@</samp>,
  3301. the expression is read from a file titled by the remaining characters in the
  3302. string.</p>
  3303. <p>See <a href="../www/fx.html">FX,
  3304. The Special Effects Image Operator</a> for a detailed discussion of this
  3305. option.</p>
  3306. <div style="margin: auto;">
  3307. <h2><a class="anchor" id="gamma"></a>-gamma <var>value</var></h2>
  3308. </div>
  3309. <p class="magick-description">Level of gamma correction.</p>
  3310. <p>The same color image displayed on two different workstations may look
  3311. different due to differences in the display monitor. Use gamma correction to
  3312. adjust for this color difference. Reasonable values extend from
  3313. <samp>0.8</samp> to <samp>2.3</samp>. Gamma less than 1.0 darkens the image and
  3314. gamma greater than 1.0 lightens it. Large adjustments to image gamma may
  3315. result in the loss of some image information if the pixel quantum size is only
  3316. eight bits (quantum range 0 to 255).</p>
  3317. <p>Gamma adjusts the image's channel values pixel-by-pixel according to
  3318. a power law, namely, pow(pixel,1/gamma) or pixel^(1/gamma), where pixel is the
  3319. normalized or 0 to 1 color value. For example, using a value of gamma=2 is the
  3320. same as taking the square root of the image.</p>
  3321. <p>Use <a href="command-line-options.html#gamma">+gamma <var>value</var></a> to set the
  3322. image gamma level without actually adjusting the image pixels. This option
  3323. is useful if the image is of a known gamma but not set as an image attribute
  3324. (e.g. PNG images). Write the "file gamma" which is the reciprocal of the
  3325. display gamma; e.g., if your image is sRGB and you want to write a PNG gAMA
  3326. chunk, use</p>
  3327. <pre class="bg-light text-dark mx-4 cli"><samp>magick input.png +gamma .45455 output.png
  3328. </samp></pre>
  3329. <p>(0.45455 is 1/2.2)</p>
  3330. <p>Note that gamma adjustments are also available via the <a href="command-line-options.html#level">-level</a> operator.</p>
  3331. <div style="margin: auto;">
  3332. <h2><a class="anchor" id="gaussian-blur"></a>-gaussian-blur <var>radius</var><br />-gaussian-blur <var>radius</var>{x<var>sigma</var>}</h2>
  3333. </div>
  3334. <p class="magick-description">Blur the image with a Gaussian operator.</p>
  3335. <p>Convolve the image with a Gaussian or normal distribution using the given
  3336. <var >Sigma</var> value. The formula is:</p>
  3337. <p class="text-center"><img class="img-thumbnail" alt="gaussian distribution" width="243px" height="42px" src="../images/gaussian-blur.png"/> </p>
  3338. <p>The <var>sigma</var> value is the important argument, and
  3339. determines the actual amount of blurring that will take place. </p>
  3340. <p>The <var>radius</var> is only used to determine the size of the
  3341. array which will hold the calculated Gaussian distribution. It should be an
  3342. integer. If not given, or set to zero, IM will calculate the largest possible
  3343. radius that will provide meaningful results for the Gaussian distribution.
  3344. </p>
  3345. <p>The larger the <var >Radius</var> the radius the slower the
  3346. operation is. However too small a <var >Radius</var>, and severe
  3347. aliasing effects may result. As a guideline, <var >Radius</var>
  3348. should be at least twice the <var >Sigma</var> value, though three
  3349. times will produce a more accurate result. </p>
  3350. <p>This differs from the faster <a href="command-line-options.html#blur">-blur</a> operator in that a
  3351. full 2-dimensional convolution is used to generate the weighted average of the
  3352. neighboring pixels. </p>
  3353. <p>The <a href="command-line-options.html#virtual-pixel">-virtual-pixel</a> setting will determine how
  3354. pixels which are outside the image proper are blurred into the final result.
  3355. </p>
  3356. <div style="margin: auto;">
  3357. <h2><a class="anchor" id="geometry"></a>-geometry <var>geometry</var></h2>
  3358. </div>
  3359. <p class="magick-description">Set the preferred size and location of the image.</p>
  3360. <p>See <a href="command-line-processing.html#geometry">Image Geometry</a> for complete details about the <em class="arg">geometry</em> argument.</p>
  3361. <div style="margin: auto;">
  3362. <h2><a class="anchor" id="gravity"></a>-gravity <var>type</var></h2>
  3363. </div>
  3364. <p class="magick-description">Sets the current gravity suggestion for various other settings and options.</p>
  3365. <p>Choices include: <samp>NorthWest</samp>, <samp>North</samp>,
  3366. <samp>NorthEast</samp>, <samp>West</samp>, <samp>Center</samp>, <samp>East</samp>,
  3367. <samp>SouthWest</samp>, <samp>South</samp>, <samp>SouthEast</samp>. Use <a
  3368. href="command-line-options.html#list">-list gravity</a> to get a complete list of <a
  3369. href="command-line-options.html#gravity">-gravity</a> settings available in your ImageMagick
  3370. installation.</p>
  3371. <p>The direction you choose specifies where to position text or subimages. For
  3372. example, a gravity of <samp>Center</samp> forces the text to be centered within
  3373. the image. By default, the image gravity is <samp>undefined</samp>. See <a
  3374. href="command-line-options.html#draw">-draw</a> for more details about graphic primitives. Only the
  3375. text primitive of <a href="command-line-options.html#draw">-draw</a> is affected by the <a
  3376. href="command-line-options.html#gravity">-gravity</a> option.</p>
  3377. <p>The <a href="command-line-options.html#gravity">-gravity</a> option is also used in concert with the
  3378. <a href="command-line-options.html#geometry">-geometry</a> setting and other settings or options that
  3379. take <var>geometry</var> as an argument, such as the <a
  3380. href="command-line-options.html#crop">-crop</a> option. </p>
  3381. <p>If a <a href="command-line-options.html#gravity">-gravity</a> setting occurs before another option
  3382. or setting having a <var>geometry</var> argument that specifies an
  3383. offset, the offset is usually applied to the point within the image suggested
  3384. by the <a href="command-line-options.html#gravity">-gravity</a> argument. Thus, in the following
  3385. command, for example, suppose the file <samp>image.png</samp> has dimensions
  3386. 200x100. The offset specified by the argument to <a href="command-line-options.html#region">-region</a>
  3387. is (−40,+20). The argument to <a href="command-line-options.html#gravity">-gravity</a> is
  3388. <samp>Center</samp>, which suggests the midpoint of the image, at the point
  3389. (100,50). The offset (−40,20) is applied to that point, giving
  3390. (100−40,50+20)=(60,70), so the specified 10x10 region is located at
  3391. that point. (In addition, the <a href="command-line-options.html#gravity">-gravity</a> affects the
  3392. region itself, which is <var>centered</var> at the pixel
  3393. coordinate (60,70). (See <a href="command-line-processing.html#geometry">Image Geometry</a> for complete details about the <em class="arg">geometry</em> argument.)</p>
  3394. <pre class="bg-light text-dark mx-4 cli"><samp>magick image.png -gravity Center -region 10x10-40+20 \
  3395. -negate output.png
  3396. </samp></pre>
  3397. <p>When used as an option to <a href="../www/composite.html">composite</a>, <a
  3398. href="command-line-options.html#gravity">-gravity</a> gives the direction that the image gravitates
  3399. within the composite.</p>
  3400. <p>When used as an option to <a href="montage.html">montage</a>, <a
  3401. href="command-line-options.html#gravity">-gravity</a> gives the direction that an image gravitates
  3402. within a tile. The default gravity is <samp>Center</samp> for this purpose.</p>
  3403. <p>Use <a href="command-line-options.html#gravity">+gravity</a> to return gravity to its default value.</p>
  3404. <div style="margin: auto;">
  3405. <h2><a class="anchor" id="grayscale"></a>-grayscale <var>method</var></h2>
  3406. </div>
  3407. <p class="magick-description">Convert image to grayscale.</p>
  3408. <p>This will use one of the <a href="command-line-options.html#intensity" >-intensity</a> methods to
  3409. convert the given image into a grayscale image. </p>
  3410. <p>For example, to convert an image to (linear) Rec709Luminance grayscale, type:</p>
  3411. <pre class="bg-light text-dark mx-4 cli"><samp>magick in.png -grayscale Rec709Luminance out.png
  3412. </samp></pre>
  3413. <p>which is equivalent to:</p>
  3414. <pre class="bg-light text-dark mx-4">
  3415. <samp>magick in.png -colorspace LinearGray out.png</samp>
  3416. </pre>
  3417. <p>Similarly, to convert an image to (non-linear) Rec709Luma grayscale, type:</p>
  3418. <pre class="bg-light text-dark mx-4 cli"><samp>magick in.png -grayscale Rec709Luma out.png
  3419. </samp></pre>
  3420. <p>which is equivalent to:</p>
  3421. <pre class="bg-light text-dark mx-4 cli"><samp>magick in.png -colorspace Gray out.png
  3422. </samp></pre>
  3423. <p>Note that a 'colorspace' intensity method will produce the same result
  3424. regardless of the current colorpsace of the image. But a 'mathematical'
  3425. intensity method depends on the current colorspace the image is currently
  3426. using. </p>
  3427. <p>While this operation uses an <a href="command-line-options.html#intensity" >-intensity</a> method,
  3428. it does not use or set the <a href="command-line-options.html#intensity" >-intensity</a> setting, so
  3429. will not affect other operations that may use that setting.</p>
  3430. <div style="margin: auto;">
  3431. <h2><a class="anchor" id="green-primary"></a>-green-primary <var>x,y</var></h2>
  3432. </div>
  3433. <p class="magick-description">Green chromaticity primary point.</p>
  3434. <div style="margin: auto;">
  3435. <h2><a class="anchor" id="hald-clut"></a>-hald-clut</h2>
  3436. </div>
  3437. <p class="magick-description">Apply a Hald color lookup table to the image.</p>
  3438. <p>A Hald color lookup table is a 3-dimensional color cube mapped to 2
  3439. dimensions. Create it with the <samp>HALD:</samp> prefix (e.g. HALD:8). You
  3440. can apply any color transformation to the Hald image and then use this option
  3441. to apply the transform to the image. </p>
  3442. <pre class="bg-light text-dark mx-4 cli"><samp>magick image.png hald.png -hald-clut transform.png
  3443. </samp></pre>
  3444. <p>This option provides a convenient method for you to use Gimp or Photoshop
  3445. to make color corrections to the Hald CLUT image and subsequently apply them
  3446. to multiple images using an ImageMagick script. </p>
  3447. <p>Note that the representation is only of the normal RGB color space and that
  3448. the whole color value triplet is used for the interpolated lookup of the
  3449. represented Hald color cube image. Because of this the operation is not <a
  3450. href="command-line-options.html#channel" >-channel</a> setting affected, nor can it adjust or modify an
  3451. images transparency or alpha/matte channel.</p>
  3452. <p>See also <a href="command-line-options.html#clut" >-clut</a> which provides color value replacement
  3453. of the individual color channels, usually involving a simpler grayscale
  3454. image. E.g: grayscale to color replacement, or modification by a histogram
  3455. mapping. </p>
  3456. <div style="margin: auto;">
  3457. <h2><a class="anchor" id="help"></a>-help</h2>
  3458. </div>
  3459. <p class="magick-description">Print usage instructions.</p>
  3460. <div style="margin: auto;">
  3461. <h2><a class="anchor" id="highlight-color"></a>-highlight-color <var>color</var></h2>
  3462. </div>
  3463. <p class="magick-description">When comparing images, emphasize pixel differences with this color.</p>
  3464. <div style="margin: auto;">
  3465. <h2><a class="anchor" id="hough-lines"></a>-hough-lines <var>width</var>x<var>height</var>{<var>+threshold</var>}</h2>
  3466. </div>
  3467. <p class="magick-description">Identify straight lines in the image (e.g. -hough-lines 9x9+195).</p>
  3468. <p>Use the Hough line detector with any binary edge extracted image to locate and draw any straight lines that it finds.</p>
  3469. <p>The process accumulates counts for every white pixel in the binary edge image for every possible orientation (for angles from 0 to 179 in 1 deg increments) and distance from the center of the image to the corners (in 1 px increments). It stores the counts in an accumulator matrix of angle vs distance. The size of the accumulator will be 180x(diagonal/2). Next it searches the accumulator for peaks in counts and converts the locations of the peaks to slope and intercept in the normal x,y input image space. The algorithm uses slope/intercepts to find the endpoints clipped to the bounds of the image. The lines are drawn from the given endpoints. The counts are a measure of the length of the lines.</p>.
  3470. <p>The WxH arguments specify the filter size for locating the peaks in the Hough accumulator. The threshold excludes lines whose counts are less than the threshold value.</p>
  3471. <p>Use <samp><a href="command-line-options.html#background" >-background</a></samp> to specify the color of the background onto which the lines will be drawn. The default is black.</p>
  3472. <p>Use <samp><a href="command-line-options.html#fill" >-fill</a></samp> to specify the color of the lines. The default is black.</p>
  3473. <p>Use <samp><a href="command-line-options.html#stroke" >-stroke</a></samp> and <samp><a href="command-line-options.html#strokewidth" >-strokewidth</a></samp> to specify the thickness of the lines. The default is black and no strokewidth.</p>
  3474. <p>A text file listing the endpoints and counts may be created by using the suffix, .mvg, for the output image.</p>
  3475. <p>Use <samp><a href="command-line-options.html#define" >-define</a> hough-lines:accumulator=true</samp> to return the accumulator image in addition to the lines image.</p>
  3476. <div style="margin: auto;">
  3477. <h2><a class="anchor" id="iconGeometry"></a>-iconGeometry <var>geometry</var></h2>
  3478. </div>
  3479. <p class="magick-description">Specify the icon geometry.</p>
  3480. <p>Offsets, if present in the geometry specification, are handled in the same
  3481. manner as the <a href="command-line-options.html#geometry">-geometry</a> option, using X11 style to
  3482. handle negative offsets.</p>
  3483. <p>See <a href="command-line-processing.html#geometry">Image Geometry</a> for complete details about the <em class="arg">geometry</em> argument.</p>
  3484. <div style="margin: auto;">
  3485. <h2><a class="anchor" id="iconic"></a>-iconic</h2>
  3486. </div>
  3487. <p class="magick-description">Start in icon mode in X Windows", 'animate', 'display</p>
  3488. <div style="margin: auto;">
  3489. <h2><a class="anchor" id="identify"></a>-identify</h2>
  3490. </div>
  3491. <p class="magick-description">Identify the format and characteristics of the image.</p>
  3492. <p>This information is printed by default:
  3493. <ul>
  3494. <li>image scene number (if its not zero)</li>
  3495. <li>image name</li>
  3496. <li>image format</li>
  3497. <li>image size</li>
  3498. <li>virtual page offset</li>
  3499. <li>color depth</li>
  3500. <li>colorspace</li>
  3501. <li>file size in bytes</li>
  3502. <li>consumed user time identifying the image</li>
  3503. <li>elapsed time identifying the image</li>
  3504. </ul></p>
  3505. <p>To customize the attributes you want to identify, use <a href="command-line-options.html#format_identify_">-format</a>.</p>
  3506. <p>If <a href="command-line-options.html#colors">-colors</a> is also specified, the total unique colors
  3507. in the image and color reduction error values are printed. Refer to <a
  3508. href="../www/quantize.html">color
  3509. reduction algorithm</a> for a description of these values.</p>
  3510. <p>If <a href="command-line-options.html#verbose">-verbose</a> precedes this option, copious
  3511. amounts of image properties are displayed including image statistics, profiles,
  3512. image histogram, and others.</p>
  3513. <div style="margin: auto;">
  3514. <h2><a class="anchor" id="ift"></a>-ift</h2>
  3515. </div>
  3516. <p class="magick-description">Implements the inverse discrete Fourier transform (DFT).</p>
  3517. <p>This option is new as of ImageMagick 6.5.4-3 (and now working for Windows
  3518. users in ImageMagick 6.6.0-9). It transforms a pair of magnitude and phase
  3519. images from the frequency domain to a single image in the normal or spatial
  3520. domain. See for example, <a
  3521. href="http://en.wikipedia.org/wiki/Fourier_transform">Fourier Transform</a>,
  3522. <a href="http://en.wikipedia.org/wiki/DFT">Discrete Fourier Transform</a> and
  3523. <a href="http://en.wikipedia.org/wiki/FFT">Fast Fourier Transform</a>.</p>
  3524. <p>For example, depending upon the image format used to store the result of
  3525. the <a href="command-line-options.html#fft">-fft</a>, one would use either</p>
  3526. <pre class="bg-light text-dark mx-4 cli"><samp>magick fft_image.miff -ift fft_image_ift.png
  3527. </samp></pre>
  3528. <p>or</p>
  3529. <pre class="bg-light text-dark mx-4 cli"><samp>magick fft_image-0.png fft_image-1.png -ift fft_image_ift.png
  3530. </samp></pre>
  3531. <p>The resulting image may need to be cropped due to padding introduced when
  3532. the original image, prior to the <a href="command-line-options.html#fft">-fft</a> or <a
  3533. href="command-line-options.html#fft">+fft</a>, was not square or even dimensioned. Any padding is at
  3534. the right and/or bottom sides of the image.</p>
  3535. <p>The <a href="http://www.fftw.org/">FFTW</a> delegate library is required to
  3536. use <a href="command-line-options.html#ift">-ift</a>.</p>
  3537. <p>Use <a href="command-line-options.html#ift">+ift</a> (with HDRI enabled) to transform a pair of real
  3538. and imaginary images from the frequency domain to a single image in the normal
  3539. (spatial) domain.</p>
  3540. <p>By default the IFT is not normalized (and the FFT is). Use "<samp><a href="command-line-options.html#define" >-define</a> fourier:normalize=inverse</samp> to explicitly normalize the IFT and unnormalize the FFT.</p>
  3541. <div style="margin: auto;">
  3542. <h2><a class="anchor" id="illuminant"></a>-illuminant <var>method</var></h2>
  3543. </div>
  3544. <p class="magick-description">reference illuminant. Choose from <samp>A</samp>, <samp>B</samp>, <samp>C</samp>, <samp>D50</samp>, <samp>D55</samp>, <samp>D65</samp>, <samp>E</samp>, <samp>F2</samp>, <samp>F7</samp>, or <samp>F11</samp>.</p>
  3545. <div style="margin: auto;">
  3546. <h2><a class="anchor" id="immutable"></a>-immutable</h2>
  3547. </div>
  3548. <p class="magick-description">Make image immutable.</p>
  3549. <div style="margin: auto;">
  3550. <h2><a class="anchor" id="implode"></a>-implode <var>factor</var></h2>
  3551. </div>
  3552. <p class="magick-description">Implode image pixels about the center.</p>
  3553. <div style="margin: auto;">
  3554. <h2><a class="anchor" id="insert"></a>-insert <var>index</var></h2>
  3555. </div>
  3556. <p class="magick-description">Insert the last image into the image sequence.</p>
  3557. <p>This option takes last image in the current image sequence and inserts it
  3558. at the given index. If a negative index is used, the insert position is
  3559. calculated before the last image is removed from the sequence. As such
  3560. <samp>-insert -1</samp> will result in no change to the image sequence.</p>
  3561. <p>The <samp>+insert</samp> option is equivalent to <samp>-insert -1</samp>. In
  3562. other words, insert the last image, at the end of the current image sequence.
  3563. Consequently this has no effect on the image sequence order.</p>
  3564. <div style="margin: auto;">
  3565. <h2><a class="anchor" id="intensity"></a>-intensity <var>method</var></h2>
  3566. </div>
  3567. <p class="magick-description">Method to generate intensity value from pixel.</p>
  3568. <p>ImageMagick provides a number of methods used in situations where an
  3569. operator needs to determine a single grayscale value for some purpose, from
  3570. an image with red, green, and blue pixel components. Typically the
  3571. <samp>Rec709Luma</samp> formula is used, which is the same formula used when converting images to <samp>-colorspace gray</samp>. </p>
  3572. <p>The following formulas are currently provided, and will first convert
  3573. the pixel values to linear-RGB or non-linear sRGB colorspace before
  3574. being applied to calculate the final greyscale value. </p>
  3575. <div class="pre-scrollable bg-light text-dark mx-4">
  3576. <dl class="row">
  3577. <dt class="col-md-4">Rec601Luma</dt><dd class="col-md-8"> 0.298839R' + 0.586811G'+ 0.114350B'</dd>
  3578. <dt class="col-md-4">Rec601Luminance</dt><dd class="col-md-8"> 0.298839R + 0.586811G + 0.114350B</dd>
  3579. <dt class="col-md-4">Rec709Luma</dt><dd class="col-md-8"> 0.212656R' + 0.715158G' + 0.072186B'</dd>
  3580. <dt class="col-md-4">Rec709Luminance</dt><dd class="col-md-8"> 0.212656R + 0.715158G + 0.072186B</dd>
  3581. <dt class="col-md-4">Brightness</dt><dd class="col-md-8"> max(R', G', B')</dd>
  3582. <dt class="col-md-4">Lightness</dt><dd class="col-md-8"> (min(R', G', B') + max(R', G', B')) / 2.0</dd>
  3583. </dl>
  3584. </div>
  3585. <p>Note that the above R,G,B values is the image's linear-RGB values, while
  3586. R',G',B' are sRGB non-linear values. </p>
  3587. <p>These intensity methods are mathematical in nature and will use the
  3588. current value in the images respective R,G,B channel regardless of
  3589. what that is, or what colorspace the image is currently using.</p>
  3590. <div class="pre-scrollable bg-light text-dark mx-4">
  3591. <dl class="row">
  3592. <dt class="col-md-4">Average</dt><dd class="col-md-8">(R' + G' + B') / 3.0</dd>
  3593. <dt class="col-md-4">MS</dt><dd class="col-md-8">(R'^2 + G'^2 + B'^2) / 3.0</dd>
  3594. <dt class="col-md-4">RMS</dt><dd class="col-md-8">sqrt( (R'^2 + G'^2 + B'^2) / 3.0 )</dd>
  3595. </dl>
  3596. </div>
  3597. <p>These methods are often used for other purposes, such as generating a
  3598. grayscale difference image between two color images (using <a href="command-line-options.html#compose"
  3599. >-compose</a> '<samp>Difference</samp>' composition. </p>
  3600. <p> For example The 'MS' (Mean Squared) setting is good for minimizing color
  3601. error comparisions. While... The method 'RMS' (Root Mean Squared) for
  3602. example is appropriate for calculating color vector distance, from a color
  3603. difference image. This is equivalent to the color only component of the <a
  3604. href="command-line-options.html#fuzz" >-fuzz</a> factor color compare setting. </p>
  3605. <p>See also <a href="command-line-options.html#grayscale" >-grayscale</a> which applies one of the above
  3606. grayscaling formula directly to an image without setting the <a
  3607. href="command-line-options.html#intensity" >-intensity</a> setting.</p>
  3608. <p>The <a href="command-line-options.html#colorspace" >-colorspace gray</a> image conversion also uses
  3609. the current intensity setting, but will always convert the image to the
  3610. appropriate sRGB or linear-RGB colorspace before appling the above
  3611. function.</p>
  3612. <p>To print a complete list of possible pixel intensity setting methods, use <a href="command-line-options.html#list">-list intensity</a>.</p>
  3613. <p>Operators affected by the <a href="command-line-options.html#intensity" >-intensity</a> setting include:</p>
  3614. <pre class="bg-light text-dark mx-4"><samp>-adaptive-blur
  3615. -adaptive-sharpen
  3616. -black-threshold
  3617. -clut (when mapping greyscale CLUT image to alpha channel if set by -channels)
  3618. -colors for gray colorspace
  3619. -compose {LightenIntensity, DarkenIntensity, CopyOpacity, CopyBlack}
  3620. -contrast-stretch
  3621. -distort {ErodeIntensity, DilateIntensity}
  3622. -normalize
  3623. -random-threshold
  3624. -range-threshold
  3625. -selective-blur
  3626. -shade
  3627. -threshold
  3628. -tint
  3629. -white-threshold
  3630. </samp></pre>
  3631. <div style="margin: auto;">
  3632. <h2><a class="anchor" id="intent"></a>-intent <var>type</var></h2>
  3633. </div>
  3634. <p class="magick-description">Use this type of rendering intent when managing the image color.</p>
  3635. <p>Use this option to affect the color management operation of an image (see
  3636. <a href="command-line-options.html#profile">-profile</a>). Choose from these intents: <samp>Absolute,
  3637. Perceptual, Relative, Saturation</samp>.</p>
  3638. <p>The default intent is Perceptual for the sRGB colorspace and undefined for the RGB and gray colorspaces.</p>
  3639. <p>To print a complete list of rendering intents, use <a href="command-line-options.html#list">-list intent</a>.</p>
  3640. <div style="margin: auto;">
  3641. <h2><a class="anchor" id="interlace"></a>-interlace <var>type</var></h2>
  3642. </div>
  3643. <p class="magick-description">The type of interlacing scheme.</p>
  3644. <p>Choose from:</p>
  3645. <pre class="bg-light text-dark mx-4"><samp>none
  3646. line
  3647. plane
  3648. partition
  3649. JPEG
  3650. GIF
  3651. PNG
  3652. </samp></pre>
  3653. <p>This option is used to specify the type of interlacing scheme for raw image
  3654. formats such as <samp>RGB</samp> or <samp>YUV</samp>.</p>
  3655. <p><samp>None</samp> means do not interlace (RGBRGBRGBRGBRGBRGB...),</p>
  3656. <p><samp>Line</samp> uses scanline interlacing (RRR...GGG...BBB...RRR...GGG...BBB...), and.</p>
  3657. <p><samp>Plane</samp> uses plane interlacing (RRRRRR...GGGGGG...BBBBBB...).</p>
  3658. <p><samp>Partition</samp> is like plane except the different planes are saved to
  3659. individual files (e.g. image.R, image.G, and image.B).</p>
  3660. <p>Use <samp>Line</samp> or <samp>Plane</samp> to create an <samp>interlaced
  3661. PNG</samp> or <samp>GIF</samp> or <samp>progressive JPEG</samp> image.</p>
  3662. <p>To print a complete list of interlacing schemes, use <a href="command-line-options.html#list">-list
  3663. interlace</a>.</p>
  3664. <div style="margin: auto;">
  3665. <h2><a class="anchor" id="interline-spacing"></a>-interline-spacing <var>value</var></h2>
  3666. </div>
  3667. <p class="magick-description">The space between two text lines.</p>
  3668. <div style="margin: auto;">
  3669. <h2><a class="anchor" id="interpolate"></a>-interpolate <var>type</var></h2>
  3670. </div>
  3671. <p class="magick-description">Set the pixel color interpolation method to use when looking up a color based on a floating point or real value.</p>
  3672. <p>When looking up the color of a pixel using a non-integer floating point
  3673. value, you typically fall in between the pixel colors defined by the source
  3674. image. This setting determines how the color is determined from the colors of
  3675. the pixels surrounding that point. That is how to determine the color of a
  3676. point that falls between two, or even four different colored pixels. </p>
  3677. <div class="pre-scrollable bg-light text-dark mx-4">
  3678. <dl class="row">
  3679. <dt class="col-md-4">average</dt>
  3680. <dd class="col-md-8">The average color of the surrounding four pixels</dd>
  3681. <dt class="col-md-4">average4</dt>
  3682. <dd class="col-md-8">The average color of the surrounding four pixels</dd>
  3683. <dt class="col-md-4">average9</dt>
  3684. <dd class="col-md-8">The average color of the surrounding nine pixels</dd>
  3685. <dt class="col-md-4">average16</dt>
  3686. <dd class="col-md-8">The average color of the surrounding sixteen pixels</dd>
  3687. <dt class="col-md-4">background</dt>
  3688. <dd class="col-md-8"> </dd>
  3689. <dt class="col-md-4">bilinear</dt>
  3690. <dd class="col-md-8">A double linear interpolation of pixels (the default)</dd>
  3691. <dt class="col-md-4">blend</dt>
  3692. <dd class="col-md-8"> </dd>
  3693. <dt class="col-md-4">catrom</dt>
  3694. <dd class="col-md-8">Fitted bicubic-spines of surrounding 16 pixels</dd>
  3695. <dt class="col-md-4">integer</dt>
  3696. <dd class="col-md-8">The color of the top-left pixel (floor function)</dd>
  3697. <dt class="col-md-4">mesh</dt>
  3698. <dd class="col-md-8">Divide area into two flat triangular interpolations</dd>
  3699. <dt class="col-md-4">nearest-neighbor</dt>
  3700. <dd class="col-md-8">The nearest pixel to the lookup point (rounded function)</dd>
  3701. <dt class="col-md-4">spline</dt>
  3702. <dd class="col-md-8">Direct spline curves (colors are blurred)</dd>
  3703. </dl>
  3704. </div>
  3705. <p>This most important for distortion operators such as <a href="command-line-options.html#distort"
  3706. >-distort</a>, <a href="command-line-options.html#implode" >-implode</a>, <a href="command-line-options.html#transform"
  3707. >-transform</a> and <a href="command-line-options.html#fx" >-fx</a>. </p>
  3708. <p>To print a complete list of interpolation methods, use <a href="command-line-options.html#list">-list interpolate</a>.</p>
  3709. <p>See also <a href="command-line-options.html#virtual-pixel" >-virtual-pixel</a>, for control of the
  3710. lookup for positions outside the boundaries of the image. </p>
  3711. <div style="margin: auto;">
  3712. <h2><a class="anchor" id="interpolative-resize"></a>-interpolative-resize <var>geometry</var></h2>
  3713. </div>
  3714. <p class="magick-description">Resize with interpolation. See the <a href="command-line-options.html#interpolate">-interpolate</a> setting.</p>
  3715. <div style="margin: auto;">
  3716. <h2><a class="anchor" id="interword-spacing"></a>-interword-spacing <var>value</var></h2>
  3717. </div>
  3718. <p class="magick-description">The space between two words.</p>
  3719. <div style="margin: auto;">
  3720. <h2><a class="anchor" id="integral"></a>-integral</h2>
  3721. </div>
  3722. <p class="magick-description">Calculate the sum of values (pixel values) in the image.</p>
  3723. <div style="margin: auto;">
  3724. <h2><a class="anchor" id="kerning"></a>-kerning <var>value</var></h2>
  3725. </div>
  3726. <p class="magick-description">The space between two letters.</p>
  3727. <div style="margin: auto;">
  3728. <h2><a class="anchor" id="kmeans"></a>-kmeans <var>colors</var>{x<var>iterations</var>}{+<var>tolerance</var>}</h2>
  3729. </div>
  3730. <p class="magick-description">Kmeans (iterative) color reduction (e.g. <samp>-kmeans 5x300+0.0001</samp>). Colors is the desired number of colors. Initial colors are found using color quantization. Iterations is the stopping number of iterations (default=300). Convergence is the stopping threshold on the color change between iterations (default=0.0001). Processing finishes, if either iterations or tolerance are reached. Use <samp>-define kmeans:seed-colors=<var>color-list</var></samp> to initialize the colors, where color-list is a semicolon delimited list of seed colors (e.g. <samp>-define kmeans:seed-colors="red;sRGB(19,167,254);#00ffff</samp>). A color list overrides the color quantization. A non-empty list of colors overrides the number of colors. Any unassigned initial colors are assigned random colors from the image.</p>
  3731. <div style="margin: auto;">
  3732. <h2><a class="anchor" id="kuwahara"></a>-kuwahara <var>radius</var><br />-kuwahara <var>radius</var>{x<var>sigma</var>}</h2>
  3733. </div>
  3734. <p class="magick-description">Edge preserving noise reduction filter.</p>
  3735. <p>The <var >radius</var> is more important than the <var >sigma</var>. If <var >sigma</var> is left off, it will be computed automatically from the <var >radius</var> as <var >sigma</var>=<var >radius</var>-0.5. The <var >sigma</var> provides a bit of additional smoothing control.</p>
  3736. <div style="margin: auto;">
  3737. <h2><a class="anchor" id="label"></a>-label <var>name</var></h2>
  3738. </div>
  3739. <p class="magick-description">Assign a label to an image.</p>
  3740. <p>Use this option to assign a specific label to the image, as it is read in
  3741. or created. You can use the <a href="command-line-options.html#set" >-set</a> operation to re-assign
  3742. a the labels of images already read in. Image formats such as TIFF, PNG,
  3743. MIFF, supports saving the label information with the image.</p>
  3744. <p>When saving an image to a <var>PostScript</var> file, any label
  3745. assigned to an image is used as a header string to print above the postscript
  3746. image. </p>
  3747. <p>You can include the image filename, type, width, height, or other image
  3748. attribute by embedding special format character. See <a href="../www/escape.html">Format and Print Image
  3749. Properties</a> for details of the percent escape codes.</p>
  3750. <p>For example,</p>
  3751. <pre class="bg-light text-dark mx-4"><samp>-label "%m:%f %wx%h" bird.miff
  3752. </samp></pre>
  3753. <p>assigns an image label of <samp>MIFF:bird.miff 512x480</samp> to the
  3754. "<samp>bird.miff</samp>" image and whose width is 512 and height is 480, as it
  3755. is read in. If a <a href="command-line-options.html#label">+label</a> option was used instead, any
  3756. existing label present in the image would be used. You can remove all labels
  3757. from an image by assigning the empty string. </p>
  3758. <p>A label is not drawn on the image, but is embedded in the image datastream
  3759. via <var>Label</var> tag or similar mechanism. If you want the label to be
  3760. visible on the image itself, use the <a href="command-line-options.html#draw">-draw</a> option, or
  3761. during the final processing in the creation of an image montage.</p>
  3762. <p>If the first character of <var>string</var> is <var>@</var>, the image label is read from a file titled by the
  3763. remaining characters in the string. Labels in a file are literal, no embedded
  3764. formatting characters are recognized.</p>
  3765. <div style="margin: auto;">
  3766. <h2><a class="anchor" id="lat"></a>-lat <var>width</var><br />-lat <var>width</var>x<var>height</var>{<var>+-</var>}<var>offset</var>{<var>%</var>}</h2>
  3767. </div>
  3768. <p class="magick-description">Perform local adaptive threshold.</p>
  3769. <p>Adaptively threshold each pixel based on the value of pixels in a
  3770. surrounding window. If the current pixel is lighter than this average plus
  3771. the optional <samp>offset</samp>, then it is made white, otherwise it is made
  3772. black. Small variations in pixel values such as found in scanned documents
  3773. can be ignored if offset is positive. A negative offset will make it more
  3774. sensitive to those small variations. </p>
  3775. <p>This is commonly used to threshold images with an uneven background. It is
  3776. based on the assumption that average color of the small window is the
  3777. the local background color, from which to separate the foreground color. </p>
  3778. <div style="margin: auto;">
  3779. <h2><a class="anchor" id="layers"></a>-layers <var>method</var></h2>
  3780. </div>
  3781. <p class="magick-description">Handle multiple images forming a set of image layers or animation frames.</p>
  3782. <p>Perform various image operation methods to a ordered sequence of images
  3783. which may represent either a set of overlaid 'image layers', a GIF disposal
  3784. animation, or a fully-'coalesced' animation sequence. </p>
  3785. <div class="pre-scrollable bg-light text-dark mx-4">
  3786. <table class="table table-sm table-hover table-striped table-responsive">
  3787. <tbody>
  3788. <tr>
  3789. <th style="width: 8%">Method</th>
  3790. <th>Description</th>
  3791. </tr>
  3792. <tr>
  3793. <td>compare-any</td>
  3794. <td>Crop the second and later frames to the smallest rectangle
  3795. that contains all the differences between the two images. No GIF <a
  3796. href="command-line-options.html#dispose" >-dispose</a> methods are taken into account. </td>
  3797. </tr>
  3798. <tr><td></td><td>This exactly the same as the <a href="command-line-options.html#deconstruct"
  3799. >-deconstruct</a> operator, and does not preserve animations normal
  3800. working, especially when animation used layer disposal methods such as
  3801. '<samp>Previous</samp>' or '<samp>Background</samp>'. </td>
  3802. </tr>
  3803. <tr>
  3804. <td>compare-clear</td>
  3805. <td>As '<samp>compare-any</samp>' but crop to the bounds of any
  3806. opaque pixels which become transparent in the second frame. That is the
  3807. smallest image needed to mask or erase pixels for the next frame. </td>
  3808. </tr>
  3809. <tr>
  3810. <td>compare-overlay</td>
  3811. <td>As '<samp>compare-any</samp>' but crop to pixels that add
  3812. extra color to the next image, as a result of overlaying color pixels.
  3813. That is the smallest single overlaid image to add or change colors. </td>
  3814. </tr>
  3815. <tr><td></td><td>This can be used with the <a href="command-line-options.html#compose" >-compose</a> alpha
  3816. composition method '<samp>change-mask</samp>', to reduce the image to
  3817. just the pixels that need to be overlaid. </td>
  3818. </tr>
  3819. <tr>
  3820. <td>coalesce</td>
  3821. <td>Equivalent to a call to the <a href="command-line-options.html#coalesce"
  3822. >-coalesce</a> operator. Apply the layer disposal methods set in the
  3823. current image sequence to form a fully defined animation sequence, as
  3824. it should be displayed. Effectively converting a GIF animation into a
  3825. 'film strip'-like animation. </td>
  3826. </tr>
  3827. <tr>
  3828. <td>composite</td>
  3829. <td>Alpha Composition of two image lists, separated by a
  3830. "<samp>null:</samp>" image, with the destination image list first, and
  3831. the source images last. An image from each list are composited
  3832. together until one list is finished. The separator image and source
  3833. image lists are removed. </td>
  3834. </tr>
  3835. <tr><td></td>
  3836. <td>The <a href="command-line-options.html#geometry" >-geometry</a> offset is adjusted according
  3837. to <a href="command-line-options.html#gravity" >-gravity</a> in accordance of the virtual
  3838. canvas size of the first image in each list. Unlike a normal <a
  3839. href="command-line-options.html#composite" >-composite</a> operation, the canvas offset is also
  3840. added to the final composite positioning of each image. </td> </tr>
  3841. <tr><td></td>
  3842. <td>If one of the image lists only contains one image, that image is
  3843. applied to all the images in the other image list, regardless of which
  3844. list it is. In this case it is the image meta-data of the list which
  3845. preserved. </td>
  3846. </tr>
  3847. <tr>
  3848. <td>dispose</td>
  3849. <td>This like '<samp>coalesce</samp>' but shows the look of
  3850. the animation after the layer disposal method has been applied, before
  3851. the next sub-frame image is overlaid. That is the 'dispose' image that
  3852. results from the application of the GIF <a href="command-line-options.html#dispose"
  3853. >-dispose</a> method. This allows you to check what
  3854. is going wrong with a particular animation you may be developing.
  3855. </td>
  3856. </tr>
  3857. <tr>
  3858. <td>flatten</td>
  3859. <td>Create a canvas the size of the first images virtual
  3860. canvas using the current <a href="command-line-options.html#background" >-background</a> color,
  3861. and <a href="command-line-options.html#compose" >-compose</a> each image in turn onto that
  3862. canvas. Images falling outside that canvas is clipped. Final
  3863. image will have a zero virtual canvas offset. </td>
  3864. </tr>
  3865. <tr><td></td>
  3866. <td>This usually used as one of the final 'image layering' operations
  3867. overlaying all the prepared image layers into a final image. </td>
  3868. </tr>
  3869. <tr><td></td>
  3870. <td>For a single image this method can also be used to fillout a virtual
  3871. canvas with real pixels, or to underlay an opaque color to remove
  3872. transparency from an image.</td>
  3873. </tr>
  3874. <tr>
  3875. <td>merge</td>
  3876. <td>As 'flatten' method but merging all the given image
  3877. layers to create a new layer image just large enough to hold all the
  3878. image without clipping or extra space. The new images virtual offset
  3879. will preserve the position of the new layer, even if this offset is
  3880. negative. The virtual canvas size of the first image is preserved.
  3881. </td>
  3882. </tr>
  3883. <tr><td></td><td>Caution is advised when handling image layers with
  3884. negative offsets as few image file formats handle them correctly.
  3885. Following this operation method with <a href="command-line-options.html#repage" >+repage</a>
  3886. will remove the layer offset, and create an image in which all the
  3887. overlaid image positions relative to each other is preserved, though
  3888. not necessarily exactly where you specified them.
  3889. </td>
  3890. </tr>
  3891. <tr><td></td><td>See also 'trim-bounds' below which is closely related but
  3892. without doing the'flatten' to merge the images together. </td>
  3893. </tr>
  3894. <tr>
  3895. <td>mosaic</td>
  3896. <td>As 'flatten' method but expanding the initial canvas size
  3897. of the first image in a positive direction only so as to hold all the
  3898. image layers. However as a virtual canvas is 'locked' to the origin,
  3899. by its own definition, image layers with a negative offsets will still
  3900. become clipped by the top and left edges. See 'merge' or 'trim-bounds'
  3901. if this could be a problem. </td>
  3902. </tr>
  3903. <tr><td></td><td>This method is commonly used to layout individual image
  3904. using various offset but without knowing the final canvas size. The
  3905. resulting image will, like 'flatten' not have any virtual offset, so
  3906. can be saved to any image file format. </td>
  3907. </tr>
  3908. <tr>
  3909. <td>optimize</td>
  3910. <td>Optimize a coalesced animation, into GIF animation using
  3911. a number of general techniques. This currently a short cut to
  3912. apply both the '<samp>optimize-frame</samp>', and
  3913. '<samp>optimize-transparency</samp>' methods but may be expanded to
  3914. include other optimization methods as they are developed. </td>
  3915. </tr>
  3916. <tr>
  3917. <td>optimize-frame</td>
  3918. <td>Optimize a coalesced animation, into GIF animation by
  3919. reducing the number of pixels per frame as much as possible by
  3920. attempting to pick the best layer disposal method to use, while ensuring
  3921. the result will continue to animate properly. </td>
  3922. </tr>
  3923. <tr><td></td><td> There is no guarantee that the best optimization is found.
  3924. But then no reasonably fast GIF optimization algorithm can do this.
  3925. However this does seem to do better than most other GIF frame
  3926. optimizers seen. </td>
  3927. </tr>
  3928. <tr>
  3929. <td>optimize-plus</td>
  3930. <td>As '<samp>optimize-frame</samp>' but attempt to improve the
  3931. overall optimization by adding extra frames to the animation, without
  3932. changing the final look or timing of the animation. The frames are
  3933. added to attempt to separate the clearing of pixels from the
  3934. overlaying of new additional pixels from one animation frame to the
  3935. next. If this does not improve the optimization (for the next frame
  3936. only), it will fall back to the results of the previous normal
  3937. '<samp>optimize-frame</samp>' technique. </td>
  3938. </tr>
  3939. <tr><td></td><td>There is the possibility that the change in the disposal
  3940. style will result in a worsening in the optimization of later frames,
  3941. though this is unlikely. In other words there no guarantee that it is
  3942. better than the normal '<samp>optimize-frame</samp>' technique. For some
  3943. animations however you can get a vast improvement in the final
  3944. animation size. </td>
  3945. </tr>
  3946. <tr>
  3947. <td>optimize-transparency</td>
  3948. <td>Given a GIF animation, replace any pixel in the sub-frame
  3949. overlay images with transparency, if it does not change the resulting
  3950. animation by more than the current <a href="command-line-options.html#fuzz" >-fuzz</a> factor.
  3951. </td>
  3952. </tr>
  3953. <tr><td></td><td>This should allow a existing frame optimized GIF animation
  3954. to compress into a smaller file size due to larger areas of one
  3955. (transparent) color rather than a pattern of multiple colors repeating
  3956. the current disposed image of the last frame. </td>
  3957. </tr>
  3958. <tr>
  3959. <td>remove-dups</td>
  3960. <td>Remove (and merge time delays) of duplicate consecutive
  3961. images, so as to simplify layer overlays of coalesced animations.
  3962. </td>
  3963. </tr>
  3964. <tr><td></td><td>Usually this a result of using a constant time delay
  3965. across the whole animation, or after a larger animation was split into
  3966. smaller sub-animations. The duplicate frames could also have been
  3967. used as part of some frame optimization methods. </td>
  3968. </tr>
  3969. <tr>
  3970. <td>remove-zero</td>
  3971. <td>Remove any image with a zero time delay, unless ALL the
  3972. images have a zero time delay (and is not a proper timed animation, a
  3973. warning is then issued). </td>
  3974. </tr>
  3975. <tr><td></td><td>In a GIF animation, such images are usually frames which
  3976. provide partial intermediary updates between the frames that are
  3977. actually displayed to users. These frames are usually added for
  3978. improved frame optimization in GIF animations. </td>
  3979. </tr>
  3980. <tr>
  3981. <td>trim-bounds</td>
  3982. <td>Find the bounds of all the images in the current
  3983. image sequence, then adjust the offsets so all images are contained on
  3984. a minimal positive canvas. None of the image data is modified or
  3985. merged, only the individual image virtual canvas size and offset.
  3986. All the images is given the same canvas size, and will have
  3987. a positive offset, but will remain in the same position relative to
  3988. each other. As a result of the minimal canvas size at least one image
  3989. will touch every edge of that canvas. The image data touching those
  3990. edges however may be transparent. </td>
  3991. </tr>
  3992. <tr><td></td><td>The result is much like if you used 'merge' followed by a
  3993. <a href="command-line-options.html#repage" >+repage</a> option, except that all the images
  3994. have been kept separate. If 'flatten' is used after using
  3995. 'trim-bounds' you will get the same result. </td>
  3996. </tr>
  3997. </tbody>
  3998. </table>
  3999. </div>
  4000. <p>To print a complete list of layer types, use <a href="command-line-options.html#list">-list layers</a>.</p>
  4001. <p>The operators <a href="command-line-options.html#coalesce" >-coalesce</a>, <a href="command-line-options.html#deconstruct"
  4002. >-deconstruct</a>, <a href="command-line-options.html#flatten" >-flatten</a>, and <a href="command-line-options.html#mosaic"
  4003. >-mosaic</a> are only aliases for the above methods and may be deprecated in
  4004. the future. Also see <a href="command-line-options.html#page" >-page</a>, <a href="command-line-options.html#repage"
  4005. >-repage</a> operators, the <a href="command-line-options.html#compose" >-compose</a> setting, and the
  4006. GIF <a href="command-line-options.html#dispose" >-dispose</a> and <a href="command-line-options.html#delay" >-delay</a>
  4007. settings. </p>
  4008. <div style="margin: auto;">
  4009. <h2><a class="anchor" id="level"></a>-level <var>black_point</var>{,<var>white_point</var>}{<var>%</var>}{,<var>gamma</var>}</h2>
  4010. </div>
  4011. <p class="magick-description">Adjust the level of image channels.</p>
  4012. <p>Given one, two or three values delimited with commas: black-point,
  4013. white-point, gamma (for example: 10,250,1.0 or 2%,98%,0.5). The black and
  4014. white points range from 0 to <var>QuantumRange</var>, or from 0 to
  4015. 100%; if the white point is omitted it is set to (<var>QuantumRange</var> - black_point), so as to center contrast changes.
  4016. If a <samp>%</samp> sign is present anywhere in the string, both black and white
  4017. points are percentages of the full color range. Gamma will do a <a
  4018. href="command-line-options.html#gamma">-gamma</a> adjustment of the values. If it is omitted, the
  4019. default of 1.0 (no gamma correction) is assumed.</p>
  4020. <p>In normal usage (<samp>-level</samp>) the image values are stretched so that
  4021. the given '<samp>black_point</samp>' value in the original image is set to zero
  4022. (or black), while the given '<samp>white_point</samp>' value is set to <var>QuantumRange</var> (or white). This provides you with direct
  4023. contrast adjustments to the image. The '<samp>gamma</samp>' of the resulting
  4024. image will then be adjusted. </p>
  4025. <p>From ImageMagick v6.4.1-9 using the plus form of the operator
  4026. (<samp>+level</samp>) or adding the special '!' flag anywhere in the argument
  4027. list, will cause the operator to do the reverse of the level adjustment. That
  4028. is a zero, or <var>QuantumRange</var> value (black, and white, resp.)
  4029. in the original image, is adjusted to the given level values, allowing you to
  4030. de-contrast, or compress the channel values within the image. The
  4031. '<samp>gamma</samp>' is adjusted before the level adjustment to de-contrast the
  4032. image is made. </p>
  4033. <p>Only the channels defined by the current <a href="command-line-options.html#channel">-channel</a>
  4034. setting are adjusted (defaults to RGB color channels only), allowing you to
  4035. limit the effect of this operator. </p>
  4036. <p>Please note that the transparency channel is treated as 'matte'
  4037. values (0 is opaque) and not as 'alpha' values (0 is transparent).</p>
  4038. <div style="margin: auto;">
  4039. <h2><a class="anchor" id="level-colors"></a>-level-colors {<var>black_color</var>}{,}{<var>white_color</var>}</h2>
  4040. </div>
  4041. <p class="magick-description">Adjust the level of an image using the provided dash separated colors.</p>
  4042. <p>This function is exactly like <a href="command-line-options.html#level">-level</a>, except that the
  4043. value for each color channel is determined by the
  4044. '<samp>black_color</samp>' and '<samp>white_color</samp>' colors given (as
  4045. described under the <a href="command-line-options.html#fill">-fill</a> option). </p>
  4046. <p>This effectively means the colors provided to <samp>-level-colors</samp>
  4047. is mapped to become 'black' and 'white' respectively, with all the other
  4048. colors linearly adjusted (or clipped) to match that change. Each channel is
  4049. adjusted separately using the channel values of the colors specified. </p>
  4050. <p>On the other hand the plus form of the operator (<samp>+level-colors</samp>)
  4051. will map the image color 'black' and 'white' to the given colors
  4052. respectively, resulting in a gradient (de-contrasting) tint of the image to
  4053. those colors. This can also be used to convert a plain grayscale image into a
  4054. one using the gradient of colors specified. </p>
  4055. <p>By supplying a single color with a comma separator either before or after
  4056. that color, will just replace the respective 'black' or 'white' point
  4057. respectively. But if no comma separator is provided, the given color is
  4058. used for both the black and white color points, making the operator either
  4059. threshold the images around that color (- form) or set all colors to that
  4060. color (+ form). </p>
  4061. <div style="margin: auto;">
  4062. <h2><a class="anchor" id="limit"></a>-limit <var>type value</var></h2>
  4063. </div>
  4064. <p class="magick-description">Set the pixel cache resource limit.</p>
  4065. <p>Choose from: <samp>width</samp>, <samp>height</samp>, <samp>area</samp>, <samp>memory</samp>, <samp>map</samp>, <samp>disk</samp>, <samp>file</samp>, <samp>thread</samp>, <samp>throttle</samp>, or <samp>time</samp>.</p>
  4066. <p>The value for <samp>file</samp> is in number of files. The other limits are
  4067. in bytes. Define arguments for the memory, map, area, and disk resource limits
  4068. with SI prefixes (.e.g 100MB).</p>
  4069. <p>By default the limits are 768 files, 3GB of image area, 1.5GiB memory, 3GiB
  4070. memory map, and 18.45EB of disk. These limits are adjusted relative to the
  4071. available resources on your computer if this information is available. When
  4072. any limit is reached, ImageMagick fails in some fashion but attempts to take
  4073. compensating actions, if possible. For example, the following limits
  4074. memory:</p>
  4075. <pre class="bg-light text-dark mx-4"><samp>-limit memory 32MiB -limit map 64MiB
  4076. </samp></pre>
  4077. <p>Use <a href="command-line-options.html#list">-list resource</a> to list the current limits. For example, our system shows these limits:</p>
  4078. <pre class="bg-light text-dark mx-4"><samp>-> identify -list resource
  4079. Resource limits:
  4080. Width: 100MP
  4081. Height: 100MP
  4082. Area: 25.181GB
  4083. Memory: 11.726GiB
  4084. Map: 23.452GiB
  4085. Disk: unlimited
  4086. File: 768
  4087. Thread: 12
  4088. Throttle: 0
  4089. Time: unlimited
  4090. </samp></pre>
  4091. <p>Requests for pixel storage to keep intermediate images are satisfied by one
  4092. of three resource categories: in-memory pool, memory-mapped files pool, and
  4093. disk pool (in that order) depending on the <a class="text-nowrap" href="command-line-options.html#limit">-limit</a> settings
  4094. and whether the system honors a resource request. If the total size of
  4095. allocated pixel storage in the given pool reaches the corresponding limit, the
  4096. request is passed to the next pool. Additionally, requests that exceed the
  4097. <samp>area</samp> limit automagically are allocated on disk.</p>
  4098. <p>To illustrate how ImageMagick utilizes resource limits, consider a typical
  4099. image resource request. First, ImageMagick tries to allocate the pixels in
  4100. memory. The request might be denied if the resource request exceeds the
  4101. <samp>memory</samp> limit or if the system does not honor the request. If
  4102. a memory request is not honored, the pixels are allocated to disk and the file
  4103. is memory-mapped. However, if the allocation request exceeds the
  4104. <samp>map</samp> limit, the resource allocation goes to disk. In all cases, if
  4105. the resource request exceeds the <samp>area</samp> limit, the pixels are
  4106. automagically cached to disk. If the disk has a hard limit, the program
  4107. fails.</p>
  4108. <p>In most cases you simply do not need to concern yourself with resource
  4109. limits. ImageMagick chooses reasonable defaults and most images do not tax
  4110. your computer resources. Where limits do come in handy is when you process
  4111. images that are large or on shared systems where ImageMagick can consume all
  4112. or most of the available memory. In this case, the ImageMagick workflow slows
  4113. other processes or, in extreme cases, brings the system to a halt. Under
  4114. these circumstances, setting limits give some assurances that the ImageMagick
  4115. workflow will not interfere with other concurrent uses of the computer. For
  4116. example, assume you have a web interface that processes images uploaded from
  4117. the Internet. To assure ImageMagick does not exceed 10MiB of memory you can
  4118. simply set the area limit to 10MiB:</p>
  4119. <pre class="bg-light text-dark mx-4"><samp>-limit area 10MB
  4120. </samp></pre>
  4121. <p>Now whenever a large image is processed, the pixels are automagically
  4122. cached to disk instead of memory. This of course implies that large images
  4123. typically process very slowly, simply because pixel processing in memory can
  4124. be an order of magnitude faster than on disk. Because your web site users
  4125. might inadvertently upload a huge image to process, you should set a disk
  4126. limit as well:</p>
  4127. <pre class="bg-light text-dark mx-4"><samp>-limit area 10MB -limit disk 500MB
  4128. </samp></pre>
  4129. <p>Here ImageMagick stops processing if an image requires more than 500MB of disk storage.</p>
  4130. <p>In addition to command-line resource limit option, resources can be set
  4131. with <a href="../www/resources.html#environment" >environment variables</a>. Set the
  4132. environment variables <samp>MAGICK_AREA_LIMIT</samp>,
  4133. <samp>MAGICK_DISK_LIMIT</samp>, <samp>MAGICK_FILE_LIMIT</samp>,
  4134. <samp>MAGICK_MEMORY_LIMIT</samp>, <samp>MAGICK_MAP_LIMIT</samp>,
  4135. <samp>MAGICK_THREAD_LIMIT</samp>, <samp>MAGICK_TIME_LIMIT</samp> for limits of
  4136. image area, disk space, open files, heap memory, memory map, number of threads
  4137. of execution, and maximum elapsed time in seconds respectively.</p>
  4138. <p>Note, you can restrict limits relative to any <a href="../www/policy-open.xml">security policies</a>, but you cannot relax them.</p>
  4139. <p> Inquisitive users can try adding <a href="command-line-options.html#debug">-debug cache</a> to
  4140. their commands and then scouring the generated output for references to the
  4141. pixel cache, in order to determine how the pixel cache was allocated and how
  4142. resources were consumed. Advanced Linux/Linux users can pipe that output
  4143. through <samp>grep memory|open|destroy|disk</samp> for more readable sifting.
  4144. </p>
  4145. <p>For more about ImageMagick's use of resources, see the section <b>Cache
  4146. Storage and Resource Requirements</b> on the <a href="../www/architecture.html#cache
  4147. ">Architecture</a> page. </p>
  4148. <div style="margin: auto;">
  4149. <h2><a class="anchor" id="linear-stretch"></a>-linear-stretch <var>black-point</var><br />-linear-stretch <var>black-point</var>{x<var>white-point</var>}{<var>%</var>}</h2>
  4150. </div>
  4151. <p class="magick-description">Linear with saturation stretch.</p>
  4152. <p>This is very similar to <a href="command-line-options.html#contrast-stretch" >-contrast-stretch</a>,
  4153. and uses a 'histogram bin' to determine the range of color values that needs to
  4154. be stretched. However it then stretches those colors using the <a
  4155. href="command-line-options.html#level" >-level</a> operator.</p>
  4156. <p>As such while the initial determination may have 'binning' round off
  4157. effects, the image colors are stretched mathematically, rather than using the
  4158. histogram bins. This makes the operator more accurate. </p>
  4159. <p>note however that a <a href="command-line-options.html#linear-stretch" >-linear-stretch</a> of
  4160. '<samp>0</samp>' does nothing, while a value of '<samp>1</samp>' does a near
  4161. perfect stretch of the color range. </p>
  4162. <p>See also <a href="command-line-options.html#auto-level" >-auto-level</a> for a 'perfect'
  4163. normalization of mathematical images. </p>
  4164. <p>This operator is under review for re-development. </p>
  4165. <div style="margin: auto;">
  4166. <h2><a class="anchor" id="linewidth"></a>-linewidth</h2>
  4167. </div>
  4168. <p class="magick-description">The line width for subsequent draw operations.</p>
  4169. <div style="margin: auto;">
  4170. <h2><a class="anchor" id="liquid-rescale"></a>-liquid-rescale <var>geometry</var></h2>
  4171. </div>
  4172. <p class="magick-description">Rescale image with seam-carving.</p>
  4173. <p>See <a href="command-line-processing.html#geometry">Image Geometry</a> for complete details about the <em class="arg">geometry</em> argument.</p>
  4174. <div style="margin: auto;">
  4175. <h2><a class="anchor" id="list"></a>-list <var>type</var></h2>
  4176. </div>
  4177. <p class="magick-description">Print a list of supported arguments for various options or settings. Choose from these list types:</p>
  4178. <pre class="pre-scrollable bg-light text-dark mx-4"><samp>
  4179. Align
  4180. Alpha
  4181. Boolean
  4182. Cache
  4183. Channel
  4184. Class
  4185. ClipPath
  4186. Coder
  4187. Color
  4188. Colorspace
  4189. Command
  4190. Complex
  4191. Compose
  4192. Compress
  4193. Configure
  4194. DataType
  4195. Debug
  4196. Decoration
  4197. Delegate
  4198. Direction
  4199. Dispose
  4200. Distort
  4201. Dither
  4202. Endian
  4203. Evaluate
  4204. FillRule
  4205. Filter
  4206. Font
  4207. Format
  4208. Function
  4209. Gravity
  4210. Intensity
  4211. Intent
  4212. Interlace
  4213. Interpolate
  4214. Kernel
  4215. Layers
  4216. LineCap
  4217. LineJoin
  4218. List
  4219. Locale
  4220. LogEvent
  4221. Log
  4222. Magic
  4223. Method
  4224. Metric
  4225. Mime
  4226. Mode
  4227. Morphology
  4228. Module
  4229. Noise
  4230. Orientation
  4231. PixelIntensity
  4232. Policy
  4233. PolicyDomain
  4234. PolicyRights
  4235. Preview
  4236. Primitive
  4237. QuantumFormat
  4238. Resource
  4239. SparseColor
  4240. Statistic
  4241. Storage
  4242. Stretch
  4243. Style
  4244. Threshold
  4245. Type
  4246. Units
  4247. Validate
  4248. VirtualPixel
  4249. </samp></pre>
  4250. <p>These lists vary depending on your version of ImageMagick. Use "<samp>-list
  4251. list</samp>" to get a complete listing of all the "<samp>-list</samp>" arguments
  4252. available:</p>
  4253. <pre class="bg-light text-dark mx-4 cli"><samp>magick identify -list list
  4254. </samp></pre>
  4255. <div style="margin: auto;">
  4256. <h2><a class="anchor" id="log"></a>-log <var>string</var></h2>
  4257. </div>
  4258. <p class="magick-description">Specify format for debug log.</p>
  4259. <p>This option specifies the format for the log printed when the <a
  4260. href="command-line-options.html#debug">-debug</a> option is active.</p>
  4261. <p>You can display the following components by embedding special format
  4262. characters:</p>
  4263. <div class="pre-scrollable bg-light text-dark mx-4">
  4264. <dl class="row">
  4265. <dt class="col-md-4">%d</dt><dd class="col-md-8">domain</dd>
  4266. <dt class="col-md-4">%e</dt><dd class="col-md-8">event</dd>
  4267. <dt class="col-md-4">%f</dt><dd class="col-md-8">function</dd>
  4268. <dt class="col-md-4">%l</dt><dd class="col-md-8">line</dd>
  4269. <dt class="col-md-4">%m</dt><dd class="col-md-8">module</dd>
  4270. <dt class="col-md-4">%p</dt><dd class="col-md-8">process ID</dd>
  4271. <dt class="col-md-4">%r</dt><dd class="col-md-8">real CPU time</dd>
  4272. <dt class="col-md-4">%t</dt><dd class="col-md-8">wall clock time</dd>
  4273. <dt class="col-md-4">%u</dt><dd class="col-md-8">user CPU time</dd>
  4274. <dt class="col-md-4">%%</dt><dd class="col-md-8">percent sign</dd>
  4275. <dt class="col-md-4">\n</dt><dd class="col-md-8">newline</dd>
  4276. <dt class="col-md-4">\r</dt><dd class="col-md-8">carriage return</dd>
  4277. </dl>
  4278. </div>
  4279. <p>For example:</p>
  4280. <pre class="bg-light text-dark mx-4 cli"><samp>magick -debug coder -log "%u %m:%l %e" in.gif out.png
  4281. </samp></pre>
  4282. <p>The default behavior is to print all of the components.</p>
  4283. <div style="margin: auto;">
  4284. <h2><a class="anchor" id="loop"></a>-loop <var>iterations</var></h2>
  4285. </div>
  4286. <p class="magick-description">Add Netscape loop extension to your GIF animation.</p>
  4287. <p>Set iterations to zero to repeat the animation an infinite number of times,
  4288. otherwise the animation repeats itself up to <var>iterations</var>
  4289. times.</p>
  4290. <div style="margin: auto;">
  4291. <h2><a class="anchor" id="lowlight-color"></a>-lowlight-color <var>color</var></h2>
  4292. </div>
  4293. <p class="magick-description">When comparing images, de-emphasize pixel differences with this color.</p>
  4294. <div style="margin: auto;">
  4295. <h2><a class="anchor" id="magnify"></a>-magnify</h2>
  4296. </div>
  4297. <p class="magick-description">Double or triple the size of the image with pixel art scaling. Specify an alternative scaling method with <samp>-define magnify:method=<var>method</var></samp> Choose from these methods: <samp>eagle2X, eagle3X, eagle3XB, epb2X, fish2X, hq2X, scale2X, scale3X, xbr2X</samp>. The default is scale2X.</p>
  4298. <div style="margin: auto;">
  4299. <h2><a class="anchor" id="map"></a>-map <var>type</var></h2>
  4300. </div>
  4301. <p class="magick-description">Display image using this <var>type</var>.</p>
  4302. <p>Choose from these <var>Standard Colormap</var> types:</p>
  4303. <pre class="bg-light text-dark mx-4"><samp>best
  4304. default
  4305. gray
  4306. red
  4307. green
  4308. blue
  4309. </samp></pre>
  4310. <p>The <var>X server</var> must support the <var>Standard
  4311. Colormap</var> you choose, otherwise an error occurs. Use <samp>list</samp> as
  4312. the type and <samp>display</samp> searches the list of colormap types in
  4313. <samp>top-to-bottom</samp> order until one is located. See <var>xstdcmap(1)</var> for one way of creating Standard Colormaps.</p>
  4314. <div style="margin: auto;">
  4315. <h2><a class="anchor" id="map_stream_"></a>-map <var>components</var></h2>
  4316. </div>
  4317. <p class="magick-description">Pixel map.</p>
  4318. <p>Here are the valid components of a map:</p>
  4319. <div class="pre-scrollable bg-light text-dark mx-4">
  4320. <dl class="row">
  4321. <dt class="col-md-4">r</dt><dd class="col-md-8"> red pixel component</dd>
  4322. <dt class="col-md-4">g</dt><dd class="col-md-8"> green pixel component</dd>
  4323. <dt class="col-md-4">b</dt><dd class="col-md-8"> blue pixel component</dd>
  4324. <dt class="col-md-4">a</dt><dd class="col-md-8"> alpha pixel component (0 is transparent)</dd>
  4325. <dt class="col-md-4">o</dt><dd class="col-md-8"> opacity pixel component (0 is opaque)</dd>
  4326. <dt class="col-md-4">i</dt><dd class="col-md-8"> grayscale intensity pixel component</dd>
  4327. <dt class="col-md-4">c</dt><dd class="col-md-8"> cyan pixel component</dd>
  4328. <dt class="col-md-4">m</dt><dd class="col-md-8"> magenta pixel component</dd>
  4329. <dt class="col-md-4">y</dt><dd class="col-md-8"> yellow pixel component</dd>
  4330. <dt class="col-md-4">k</dt><dd class="col-md-8"> black pixel component</dd>
  4331. <dt class="col-md-4">p</dt><dd class="col-md-8"> pad component (always 0)</dd>
  4332. </dl>
  4333. </div>
  4334. <p>You can specify as many of these components as needed in any order (e.g.
  4335. bgr). The components can repeat as well (e.g. rgbr).</p>
  4336. <div style="margin: auto;">
  4337. <h2><a class="anchor" id="mattecolor"></a>-mattecolor <var>color</var></h2>
  4338. </div>
  4339. <p class="magick-description">Specify the color to be used with the <a href="command-line-options.html#frame">-frame</a> option.</p>
  4340. <p>The color is specified using the format described under the <a href="command-line-options.html#fill">-fill</a> option.</p>
  4341. <p>The default matte color is <samp>#BDBDBD</samp>, <span
  4342. style="background-color: #bdbdbd;">this shade of gray</span>.</p>
  4343. <div style="margin: auto;">
  4344. <h2><a class="anchor" id="maximum"></a>-maximum</h2>
  4345. </div>
  4346. <p class="magick-description">Return the maximum intensity of an image sequence.</p>
  4347. <p>Select the 'maximum' value from all the surrounding pixels. </p>
  4348. <p>This is legacy option from the <a href="command-line-options.html#statistic" >method</a> of the same
  4349. name. </p>
  4350. <div style="margin: auto;">
  4351. <h2><a class="anchor" id="median"></a>-median <var>geometry</var></h2>
  4352. </div>
  4353. <p class="magick-description">Apply a median filter to the image.</p>
  4354. <p>Select the 'middle' value from all the surrounding pixels. </p>
  4355. <p>This is legacy option from the <a href="command-line-options.html#statistic" >method</a> of the same
  4356. name. </p>
  4357. <div style="margin: auto;">
  4358. <h2><a class="anchor" id="mean-shift"></a>-mean-shift <var>width</var>x<var>height</var>{<var>+distance</var>{%}</h2>
  4359. </div>
  4360. <p class="magick-description">Image noise removal and color reduction/segmentation (e.g. -mean-shift 7x7+10%).</p>
  4361. <p><var>width</var>x<var>height</var> is the window size and <var>distance</var> is the color distance measured in the range 0 to 1 or 0 to 100%</p>
  4362. <p>The mean shift algorithm is iterative and thus slower the larger the window size. For each pixel, it gets all the pixels in the window centered at the pixel and excludes those that are outside the <var>radius=sqrt((width-1)(height-1)/4)</var> surrounding the pixel. From those pixels, it finds which of them are within the specified squared color distance from the current mean. It then computes a new x,y centroid from those coordinates and a new mean. This new x,y centroid is used as the center for a new window. This process is iterated until it converges and the final mean is then used to replace the original pixel value. It repeats this process for the next pixel, etc, until it processes all pixels in the image. Results are better when using other colorspaces rather than RGB. Recommend YIQ, YUV or YCbCr, which seem to give equivalent results.</p>
  4363. <div style="margin: auto;">
  4364. <h2><a class="anchor" id="metric"></a>-metric <var>type</var></h2>
  4365. </div>
  4366. <p class="magick-description">Output to STDERR a measure of the differences between images according to the <var>type</var> given metric.</p>
  4367. <p>Choose from:</p>
  4368. <div class="pre-scrollable bg-light text-dark mx-4">
  4369. <dl class="row">
  4370. <dt class="col-md-4">AE</dt><dd class="col-md-8"> absolute error count, number of different pixels (-fuzz affected)</dd>
  4371. <dt class="col-md-4">DSSIM</dt><dd class="col-md-8"> structural dissimilarity index</dd>
  4372. <dt class="col-md-4">FUZZ</dt><dd class="col-md-8"> mean color distance</dd>
  4373. <dt class="col-md-4">MAE</dt><dd class="col-md-8"> mean absolute error (normalized), average channel error distance</dd>
  4374. <dt class="col-md-4">MEPP</dt><dd class="col-md-8"> mean error per pixel (normalized mean error, normalized peak error)</dd>
  4375. <dt class="col-md-4">MSE</dt><dd class="col-md-8"> mean error squared, average of the channel error squared</dd>
  4376. <dt class="col-md-4">NCC</dt><dd class="col-md-8"> normalized cross correlation</dd>
  4377. <dt class="col-md-4">PAE</dt><dd class="col-md-8"> peak absolute (normalized peak absolute)</dd>
  4378. <dt class="col-md-4">PHASH</dt><dd class="col-md-8"> perceptual hash for the sRGB and HCLp colorspaces. Specify an alternative colorspace with <samp>-define phash:colorspaces=<var>colorspace,colorspace,...</var></samp></dd>
  4379. <dt class="col-md-4">PSNR</dt><dd class="col-md-8"> peak signal to noise ratio</dd>
  4380. <dt class="col-md-4">RMSE</dt><dd class="col-md-8"> root mean squared (normalized root mean squared)</dd>
  4381. <dt class="col-md-4">SSIM</dt><dd class="col-md-8"> structural similarity index</dd>
  4382. </dl>
  4383. </div>
  4384. <p>Control the '<samp>AE</samp>', or absolute count of pixels that are different,
  4385. with the <a href="command-line-options.html#fuzz" >-fuzz</a> factor (ignore pixels which
  4386. only changed by a small amount). Use '<samp>PAE</samp>' to find the
  4387. size of the <a href="command-line-options.html#fuzz" >-fuzz</a> factor needed to make all pixels
  4388. 'similar', while '<samp>MAE</samp>' determines the factor needed
  4389. for about half the pixels to be similar. </p>
  4390. <p>The <samp>MEPP</samp> metric returns three different metrics
  4391. ('<samp>MAE</samp>', '<samp>MAE</samp>' normalized, and '<samp>PAE</samp>'
  4392. normalized) from a single comparison run. </p>
  4393. <p>The <samp>SSIM</samp> and <samp>DSSIM</samp> metrics respect these defines:
  4394. <samp>-define compare:ssim-radius</samp>, <samp>-define compare:ssim-sigma</samp>,
  4395. <samp>-define compare:ssim-k1</samp>, and <samp>-define compare:ssim-k2</samp>.</p>
  4396. <p>To print a complete list of metrics, use the <a href="command-line-options.html#list">-list
  4397. metric</a> option.</p>
  4398. <div style="margin: auto;">
  4399. <h2><a class="anchor" id="minimum"></a>-minimum</h2>
  4400. </div>
  4401. <p class="magick-description">Return the minimum intensity of an image sequence.</p>
  4402. <p>Select the 'minimal' value from all the surrounding pixels. </p>
  4403. <p>This is legacy option from the <a href="command-line-options.html#statistic" >method</a> of the same
  4404. name. </p>
  4405. <div style="margin: auto;">
  4406. <h2><a class="anchor" id="mode"></a>-mode <var>geometry</var></h2>
  4407. </div>
  4408. <p class="magick-description">Make each pixel the \'predominant color\' of the neighborhood.'</p>
  4409. <div style="margin: auto;">
  4410. <h2>-mode <var>value</var></h2>
  4411. </div>
  4412. <p class="magick-description">Mode of operation.</p>
  4413. <p>Choose the <var>value</var> from these styles: <samp>Frame,
  4414. Unframe, or Concatenate</samp></p>
  4415. <p>Use the <a href="command-line-options.html#list" >-list</a> option with a '<samp>Mode</samp>' argument
  4416. for a list of <a href="command-line-options.html#mode" >-mode</a> arguments available in your
  4417. ImageMagick installation.</p>
  4418. <div style="margin: auto;">
  4419. <h2><a class="anchor" id="modulate"></a>-modulate <var>brightness</var>[,<var>saturation</var>,<var>hue</var>]</h2>
  4420. </div>
  4421. <p class="magick-description">Vary the <var>brightness</var>, <var>saturation</var>, and <var>hue</var> of an image.</p>
  4422. <p>The arguments are given as a percentages of variation. A value of 100 means
  4423. no change, and any missing values are taken to mean 100.</p>
  4424. <p>The <var>brightness</var> is a multiplier of the overall
  4425. brightness of the image, so 0 means pure black, 50 is half as bright, 200 is
  4426. twice as bright. To invert its meaning <a href="command-line-options.html#negate">-negate</a> the image
  4427. before and after. </p>
  4428. <p>The <var>saturation</var> controls the amount of color in an
  4429. image. For example, 0 produce a grayscale image, while a large value such as
  4430. 200 produce a very colorful, 'cartoonish' color.</p>
  4431. <p>The <var>hue</var> argument causes a "rotation" of the colors
  4432. within the image by the amount specified. For example, 50 results in
  4433. a counter-clockwise rotation of 90, mapping red shades to purple, and so on.
  4434. A value of either 0 or 200 results in a complete 180 degree rotation of the
  4435. image. Using a value of 300 is a 360 degree rotation resulting in no change to
  4436. the original image. </p>
  4437. <p>For example, to increase the color brightness by 20% and decrease the color
  4438. saturation by 10% and leave the hue unchanged, use <a
  4439. href="command-line-options.html#modulate">-modulate 120,90</a>.</p>
  4440. <p>Use <a href="command-line-options.html#set">-set</a> attribute of '<samp>option:modulate:colorspace</samp>' to specify which colorspace to
  4441. modulate. Choose from <samp>HCL</samp>, <samp>HCLp</samp>, <samp>HSB</samp>, <samp>HSI</samp>, <samp>HSL</samp> (the default), <samp>HSV</samp>, <samp>HWB</samp>, or <samp>LCH</samp> (LCHab). For example,</p>
  4442. <pre class="bg-light text-dark mx-4 cli"><samp>magick image.png -set option:modulate:colorspace hsb -modulate 120,90 modulate.png
  4443. </samp></pre>
  4444. <div style="margin: auto;">
  4445. <h2><a class="anchor" id="moments"></a>-moments</h2>
  4446. </div>
  4447. <p class="magick-description">Report image moments and perceptual hash.</p>
  4448. <div style="margin: auto;">
  4449. <h2><a class="anchor" id="monitor"></a>-monitor</h2>
  4450. </div>
  4451. <p class="magick-description">Monitor progress.</p>
  4452. <div style="margin: auto;">
  4453. <h2><a class="anchor" id="monochrome"></a>-monochrome</h2>
  4454. </div>
  4455. <p class="magick-description">Transform the image to black and white.</p>
  4456. <div style="margin: auto;">
  4457. <h2><a class="anchor" id="morph"></a>-morph <var>frames</var></h2>
  4458. </div>
  4459. <p class="magick-description">Morphs an image sequence.</p>
  4460. <p>Both the image pixels and size are linearly interpolated to give the
  4461. appearance of a metamorphosis from one image to the next, over all the images
  4462. in the current image list. The added images are the equivalent of a <a
  4463. href="command-line-options.html#blend">-blend</a> composition. The <var>frames</var>
  4464. argument determine how many images to interpolate between each image. </p>
  4465. <div style="margin: auto;">
  4466. <h2><a class="anchor" id="morphology"></a>-morphology</h2>
  4467. <h2>-morphology <var>method</var> <var>kernel</var></h2>
  4468. </div>
  4469. <p class="magick-description">Apply a morphology method to the image.</p>
  4470. <p>See <a href="../Usage/morphology/" >IM Usage Examples, Morphology</a>. </p>
  4471. <div style="margin: auto;">
  4472. <h2><a class="anchor" id="mosaic"></a>-mosaic</h2>
  4473. </div>
  4474. <p class="magick-description">An simple alias for the <a href="command-line-options.html#layers" >-layers</a> method "mosaic"</p>
  4475. <div style="margin: auto;">
  4476. <h2><a class="anchor" id="motion-blur"></a>-motion-blur <var>radius</var><br />-motion-blur <var>radius</var>{x<var>sigma</var>}+<var>angle</var></h2>
  4477. </div>
  4478. <p class="magick-description">Simulate motion blur.</p>
  4479. <p>Blur with the given radius, standard deviation (sigma), and angle. The
  4480. angle given is the angle toward which the image is blurred. That is the
  4481. direction people would consider the object is coming from. </p>
  4482. <p>Note that the blur is not uniform distribution, giving the motion a
  4483. definite sense of direction of movement. </p>
  4484. <p>The <a href="command-line-options.html#virtual-pixel">-virtual-pixel</a> setting will determine how
  4485. pixels which are outside the image proper are blurred into the final result.
  4486. </p>
  4487. <div style="margin: auto;">
  4488. <h2><a class="anchor" id="name"></a>-name</h2>
  4489. </div>
  4490. <p class="magick-description">Name an image.</p>
  4491. <div style="margin: auto;">
  4492. <h2><a class="anchor" id="negate"></a>-negate</h2>
  4493. </div>
  4494. <p class="magick-description">Replace each pixel with its complementary color.</p>
  4495. <p>The red, green, and blue intensities of an image are negated. White becomes
  4496. black, yellow becomes blue, etc. Use <a href="command-line-options.html#negate">+negate</a> to only
  4497. negate the grayscale pixels of the image.</p>
  4498. <div style="margin: auto;">
  4499. <h2><a class="anchor" id="noise"></a>-noise <var>geometry</var><br/>
  4500. +noise <var>type</var></h2>
  4501. </div>
  4502. <p class="magick-description">Add or reduce noise in an image.</p>
  4503. <p>The principal function of noise peak elimination filter is to smooth the
  4504. objects within an image without losing edge information and without creating
  4505. undesired structures. The central idea of the algorithm is to replace a pixel
  4506. with its next neighbor in value within a pixel window, if this pixel has been
  4507. found to be noise. A pixel is defined as noise if and only if this pixel is
  4508. a maximum or minimum within the pixel window.</p>
  4509. <p>Use <samp><a href="command-line-options.html#noise">-noise</a> <var>radius</var></samp> to
  4510. specify the width of the neighborhood when reducing noise. This is equivalent
  4511. to using a <samp><a href="command-line-options.html#statistic" >-statistic</a> NonPeak</samp> operation,
  4512. which should be used in preference.</p>
  4513. <p>Use <a href="command-line-options.html#noise">+noise</a> followed by a noise <var>type</var> to add noise to an image. Choose from these noise
  4514. types:</p>
  4515. <pre class="bg-light text-dark mx-4"><samp>Gaussian
  4516. Impulse
  4517. Laplacian
  4518. Multiplicative
  4519. Poisson
  4520. Random
  4521. Uniform
  4522. </samp></pre>
  4523. <p>The amount of noise added can be controlled by the <samp><a
  4524. href="command-line-options.html#attenuate" >-attenuate</a></samp> setting. If unset the value is
  4525. equivalent to 1.0, or a maximum noise addition.</p>
  4526. <p>Note that Random will replace the image with noise rather than add noise to the image. Use Uniform, if you wish to add random noise to the image.</p>
  4527. <p>To print a complete list of noises, use the <a href="command-line-options.html#list">-list noise</a> option.</p>
  4528. <p>Also see the <a href="command-line-options.html#evaluate">-evaluate</a> noise functions that allows
  4529. the use of a controlling value to specify the amount of noise that should be
  4530. added to an image. </p>
  4531. <div style="margin: auto;">
  4532. <h2><a class="anchor" id="normalize"></a>-normalize</h2>
  4533. </div>
  4534. <p class="magick-description">Increase the contrast in an image by <var>stretching</var> the range of intensity values.</p>
  4535. <p>The intensity values are stretched to cover the entire range of possible
  4536. values. While doing so, black-out at most <var>2%</var> of the pixels and
  4537. white-out at most <var>1%</var> of the pixels.</p>
  4538. <p>Note that as of ImageMagick 6.4.7-0, <a href="command-line-options.html#normalize" >-normalize</a>
  4539. is equivalent to <a href="command-line-options.html#contrast-stretch" >-contrast-stretch 2%x1%</a>.
  4540. (Before this version, it was equivalent to <a href="command-line-options.html#contrast-stretch"
  4541. >-contrast-stretch 2%x99%</a>).</p>
  4542. <p>All the channels are normalized in concert by the same amount so as to
  4543. preserve color integrity, when the default <a href="command-line-options.html#channel" >+channel</a>
  4544. setting is in use. Specifying any other <a href="command-line-options.html#channel" >-channel</a>
  4545. setting will normalize the RGB channels independently.</p>
  4546. <p>See <a href="command-line-options.html#contrast-stretch" >-contrast-stretch</a> for more details.
  4547. Also see <a href="command-line-options.html#auto-level" >-auto-level</a> for a 'perfect' normalization
  4548. that is better suited to mathematically generated images. </p>
  4549. <p>This operator is under review for re-development. </p>
  4550. <div style="margin: auto;">
  4551. <h2><a class="anchor" id="opaque"></a>-opaque <var>color</var></h2>
  4552. </div>
  4553. <p class="magick-description">Change this color to the fill color within the image.</p>
  4554. <p>The <var>color</var> argument is defined using the format
  4555. described under the <a href="command-line-options.html#fill" >-fill</a> option. The <a href="command-line-options.html#fuzz"
  4556. >-fuzz</a> setting can be used to match and replace colors similar to the one
  4557. given.</p>
  4558. <p>Use <a href="command-line-options.html#opaque">+opaque</a> to paint any pixel that does not match
  4559. the target color. </p>
  4560. <p>The <a href="command-line-options.html#transparent">-transparent</a> operator is exactly the same
  4561. as <a href="command-line-options.html#opaque" >-opaque</a> but replaces the matching color with
  4562. transparency rather than the current <a href="command-line-options.html#fill">-fill</a> color setting.
  4563. To ensure that it can do this it also ensures that the image has an alpha
  4564. channel enabled, as per "<samp><a href="command-line-options.html#alpha" >-alpha</a> set</samp>", for
  4565. the new transparent colors, and does not require you to modify the <a
  4566. href="command-line-options.html#channel">-channel</a> to enable alpha channel handling. </p>
  4567. <div style="margin: auto;">
  4568. <h2><a class="anchor" id="ordered-dither"></a>-ordered-dither <var>threshold_map</var>{,<var>level</var>...}</h2>
  4569. </div>
  4570. <p class="magick-description">Dither the image using a pre-defined ordered dither <var>threshold map</var> specified, and a uniform color map with the
  4571. given number of <var>levels</var> per color channel.</p>
  4572. <p>You can choose from these standard threshold maps:</p>
  4573. <pre class="pre-scrollable bg-light text-dark mx-4"><samp>
  4574. threshold 1x1 Threshold 1x1 (non-dither)
  4575. checks 2x1 Checkerboard 2x1 (dither)
  4576. o2x2 2x2 Ordered 2x2 (dispersed)
  4577. o3x3 3x3 Ordered 3x3 (dispersed)
  4578. o4x4 4x4 Ordered 4x4 (dispersed)
  4579. o8x8 8x8 Ordered 8x8 (dispersed)
  4580. h4x4a 4x1 Halftone 4x4 (angled)
  4581. h6x6a 6x1 Halftone 6x6 (angled)
  4582. h8x8a 8x1 Halftone 8x8 (angled)
  4583. h4x4o Halftone 4x4 (orthogonal)
  4584. h6x6o Halftone 6x6 (orthogonal)
  4585. h8x8o Halftone 8x8 (orthogonal)
  4586. h16x16o Halftone 16x16 (orthogonal)
  4587. c5x5b c5x5 Circles 5x5 (black)
  4588. c5x5w Circles 5x5 (white)
  4589. c6x6b c6x6 Circles 6x6 (black)
  4590. c6x6w Circles 6x6 (white)
  4591. c7x7b c7x7 Circles 7x7 (black)
  4592. c7x7w Circles 7x7 (white)
  4593. </samp></pre>
  4594. <p> The <samp>threshold</samp> generated a simple 50% threshold of the image.
  4595. This could be used with <var >level</var> to do the equivalent of <a
  4596. href="command-line-options.html#posterize" >-posterize</a> to reduce an image to basic primary colors.
  4597. </p>
  4598. <p>The <samp>checks</samp> pattern produces a 3 level checkerboard dither
  4599. pattern. That is a grayscale will become a pattern of solid black, solid
  4600. white, and mid-tone colors into a checkerboard pattern of black and white.
  4601. </p>
  4602. <p>You can define your own <var >threshold map</var> for ordered
  4603. dithering and halftoning your images, in either personal or system
  4604. <samp>thresholds.xml</samp> XML file. See <a href="../www/resources.html" >Resources</a>
  4605. for more details of configuration files. </p>
  4606. <p>To print a complete list of the thresholds that have been defined, use the
  4607. <a href="command-line-options.html#list" >-list threshold</a> option.</p>
  4608. <p>Note that at this time the same threshold dithering map is used for all
  4609. color channels, no attempt is made to offset or rotate the map for different
  4610. channels is made, to create an offset printing effect. Also as the maps are
  4611. simple threshold levels, the halftone and circle maps will create incomplete
  4612. circles along the edges of a colored area. Also all the effects are purely
  4613. on/off boolean effects, without anti-aliasing to make the circles smooth
  4614. looking. Large dots can be made to look better with a small amount of blurring
  4615. after being created. </p>
  4616. <div style="margin: auto;">
  4617. <h2><a class="anchor" id="orient"></a>-orient <var>image orientation</var></h2>
  4618. </div>
  4619. <p class="magick-description">Specify orientation of a digital camera image.</p>
  4620. <p>Note, this is a setting. This merely sets the orientation metadata, and does not change the image.</p>
  4621. <p>Choose from these orientations:</p>
  4622. <pre class="bg-light text-dark mx-4"><samp>bottom-left right-top
  4623. bottom-right top-left
  4624. left-bottom top-right
  4625. left-top undefined
  4626. right-bottom
  4627. </samp></pre>
  4628. <p>To print a complete list of orientations, use the <a href="command-line-options.html#list" >-list
  4629. orientation</a> option.</p>
  4630. <div style="margin: auto;">
  4631. <h2><a class="anchor" id="page"></a>-page <var>geometry</var><br/>
  4632. -page <var>media</var>[<var>offset</var>][{<var>^!&lt;&gt;</var>}]<br/>
  4633. +page
  4634. </h2>
  4635. </div>
  4636. <p class="magick-description">Set the size and location of an image on the larger virtual canvas.</p>
  4637. <p>See <a href="command-line-processing.html#geometry">Image Geometry</a> for complete details about the <em class="arg">geometry</em> argument.</p>
  4638. <p>For convenience you can specify the page size using <var>media</var> (see below). Offsets can then be added as with other
  4639. <var>geometry</var> arguments (e.g. <a
  4640. href="command-line-options.html#page">-page</a> <samp>Letter+43+43</samp>).</p>
  4641. <p>Use <var>media</var> as shorthand to specify the dimensions (<var>width</var>x<var>height</var>) of the <var>PostScript</var> page in dots per inch or a TEXT page in pixels.
  4642. The choices for paper sizes are: <samp>4x6</samp>, <samp>5x7</samp>, <samp>7x9</samp>, <samp>8x10</samp>, <samp>9x11</samp>, <samp>9x12</samp>, <samp>10x13</samp>, <samp>10x14</samp>, <samp>11x17</samp>, <samp>4A0</samp>, <samp>2A0</samp>, <samp>a0</samp>, <samp>a1</samp>, <samp>a2</samp>, <samp>a3</samp>, <samp>a4</samp>, <samp>a4small</samp>, <samp>a5</samp>, <samp>a6</samp>, <samp>a7</samp>, <samp>a8</samp>, <samp>a9</samp>, <samp>a10</samp>, <samp>archa</samp>, <samp>archb</samp>, <samp>archC</samp>, <samp>archd</samp>, <samp>arche</samp>, <samp>b0</samp>, <samp>b1</samp>, <samp>b10</samp>, <samp>b2</samp>, <samp>b3</samp>, <samp>b4</samp>, <samp>b5</samp>, <samp>b6</samp>, <samp>b7</samp>, <samp>b8</samp>, <samp>b9</samp>, <samp>c0</samp>, <samp>c1</samp>, <samp>c2</samp>, <samp>c3</samp>, <samp>c4</samp>, <samp>c5</samp>, <samp>c6</samp>, <samp>c7</samp>, <samp>csheet</samp>, <samp>dsheet</samp>, <samp>esheet</samp>, <samp>executive</samp>, <samp>flsa</samp>, <samp>flse</samp>, <samp>folio</samp>, <samp>halfletter</samp>, <samp>isob0</samp>, <samp>isob1</samp>, <samp>isob10</samp>, <samp>isob2</samp>, <samp>isob3</samp>, <samp>isob4</samp>, <samp>isob5</samp>, <samp>isob6</samp>, <samp>isob7</samp>, <samp>isob8</samp>, <samp>isob9</samp>, <samp>jisb0</samp>, <samp>jisb1</samp>, <samp>jisb2</samp>, <samp>jisb3</samp>, <samp>jisb4</samp>, <samp>jisb5</samp>, <samp>jisb6</samp>, <samp>ledger</samp>, <samp>legal</samp>, <samp>letter</samp>, <samp>lettersmall</samp>, <samp>monarch</samp>, <samp>quarto</samp>, <samp>statement</samp>, <samp>tabloid</samp>. To determine the cooresponding size in pixels at 72DPI, use this command for example:</p>
  4643. <pre class="bg-light text-dark mx-4 cli"><samp>magick xc: -format "%[papersize:a4]" info:</samp></pre>
  4644. <p>This option is also used to place subimages when writing to a multi-image
  4645. format that supports offsets, such as GIF89 and MNG. When used for this
  4646. purpose the offsets are always measured from the top left corner of the canvas
  4647. and are not affected by the <a href="command-line-options.html#gravity">-gravity</a> option. To
  4648. position a GIF or MNG image, use <a href="command-line-options.html#page">-page</a><var>{+-}x{+-}y</var> (e.g. -page +100+200). When writing to a MNG
  4649. file, a <a href="command-line-options.html#page">-page</a> option appearing ahead of the first image in
  4650. the sequence with nonzero width and height defines the width and height values
  4651. that are written in the <samp>MHDR</samp> chunk. Otherwise, the MNG width and
  4652. height are computed from the bounding box that contains all images in the
  4653. sequence. When writing a GIF89 file, only the bounding box method is used to
  4654. determine its dimensions.</p>
  4655. <p>For a PostScript page, the image is sized as in <a
  4656. href="command-line-options.html#geometry">-geometry</a> but positioned relative to the <var>lower
  4657. left-hand corner</var> of the page by {+-}<samp>x</samp><var>offset</var>{+-}<samp>y</samp> <var>offset</var>. Use <a
  4658. href="command-line-options.html#page">-page 612x792</a>, for example, to center the image within the
  4659. page. If the image size exceeds the PostScript page, it is reduced to fit the
  4660. page. The default gravity for the <a href="command-line-options.html#page">-page</a> option is <var>NorthWest</var>, i.e., positive <samp>x</samp> and <samp>y</samp> <var>offset</var> are measured rightward and downward from the top left
  4661. corner of the page, unless the <a href="command-line-options.html#gravity">-gravity</a> option is
  4662. present with a value other than <var>NorthWest</var>.</p>
  4663. <p>The default page dimensions for a TEXT image is 612x792.</p>
  4664. <p>This option is used in concert with <a href="command-line-options.html#density">-density</a>.</p>
  4665. <p>Use <a href="command-line-options.html#page">+page</a> to remove the page settings for an image.</p>
  4666. <p>To print a complete list of pagesizes, use <a href="command-line-options.html#list">-list pagesize</a> option.</p>
  4667. <div style="margin: auto;">
  4668. <h2><a class="anchor" id="paint"></a>-paint <var>radius</var></h2>
  4669. </div>
  4670. <p class="magick-description">Simulate an oil painting.</p>
  4671. <p>Each pixel is replaced by the most frequent color in a circular
  4672. neighborhood whose width is specified with <var>radius</var>.</p>
  4673. <div style="margin: auto;">
  4674. <h2><a class="anchor" id="path"></a>-path <var>path</var></h2></div>
  4675. <p class="magick-description">Write images to this path on disk.</p>
  4676. <div style="margin: auto;">
  4677. <h2><a class="anchor" id="pause_animate_"></a>-pause <var>seconds</var></h2>
  4678. </div>
  4679. <p class="magick-description">Pause between animation loops</p>
  4680. <p>Pause for the specified number of seconds before repeating the animation.</p>
  4681. <div style="margin: auto;">
  4682. <h2><a class="anchor" id="pause_import_"></a>-pause <var>seconds</var></h2>
  4683. </div>
  4684. <p class="magick-description">Pause between snapshots.</p>
  4685. <p>Pause for the specified number of seconds before taking the next snapshot.</p>
  4686. <div style="margin: auto;">
  4687. <h2><a class="anchor" id="perceptible"></a>-perceptible <var>epsilon</var></h2>
  4688. </div>
  4689. <p class="magick-description">Set each pixel whose value is less than |<var>epsilon</var>| to <var>-epsilon</var> or <var>epsilon</var> (whichever is closer) otherwise the pixel value remains unchanged.</p>
  4690. <div style="margin: auto;">
  4691. <h2><a class="anchor" id="ping"></a>-ping</h2>
  4692. </div>
  4693. <p class="magick-description">Efficiently determine these image characteristics: image number, the file name, the width and height of the image, whether the image is colormapped or not, the number of colors in the image, the number of bytes in the image, the format of the image (JPEG, PNM, etc.). Use <samp>+ping</samp> to ensure accurate image properties.</p>
  4694. <div style="margin: auto;">
  4695. <h2><a class="anchor" id="pointsize"></a>-pointsize <var>value</var></h2>
  4696. </div>
  4697. <p class="magick-description">Pointsize of the PostScript, OPTION1, or TrueType font.</p>
  4698. <div style="margin: auto;">
  4699. <h2><a class="anchor" id="polaroid"></a>-polaroid <var>angle</var></h2>
  4700. </div>
  4701. <p class="magick-description">Simulate a Polaroid picture.</p>
  4702. <p>Use <samp>+polaroid</samp> to rotate the image at a random angle between -15 and +15 degrees.</p>
  4703. <div style="margin: auto;">
  4704. <h2><a class="anchor" id="poly"></a>-poly <var>"wt,exp ..."</var></h2>
  4705. </div>
  4706. <p class="magick-description">Combines multiple images according to a weighted sum of polynomials; one floating point weight (coefficient) and one floating point polynomial exponent (power) for each image expressed as comma separated pairs.</p>
  4707. <p> The weights should typically be fractions between -1 and 1. But the sum of weights should be 1 or at least between 0 and 1 to avoid clamping in non-hdri mode at black and white.</p>
  4708. <p>The exponents may be positive, negative or zero. A negative exponent is equivalent to 1 divided by the image raised to the corresponding positive exponent. A zero exponent always produces 1 scaled by quantumrange to white, i.e. wt*white, no matter what the image.</p>
  4709. <p>The format is: <var>output = wt1*image1^exp1 + wt2*image2^exp2 </var>...</p>
  4710. <p>Some simple uses are:</p>
  4711. <ul>
  4712. <li>A weighted sum of each image provided all weights add to unity and all exponents=1. If the weights are all equal to 1/(number of images), then this is equivalent to <a href="command-line-options.html#profile">-evaluate-sequence</a> <var>mean</var>.</li>
  4713. <li>The sum of squares of two or more images, provided the weights are equal (and sum to 1 to avoid clamping) and the exponents equal 2.</li>
  4714. </ul>
  4715. <p>Note that one may add a constant color to the expression simply by using xc:somecolor for one of the images and specifying the desired weight and exponent equal to 0.</p>
  4716. <p>Similarly one may add white to the expression by simply using null: (or xc:white) for one of the images with the appropriate weight and exponent equal to 0.</p>
  4717. <div style="margin: auto;">
  4718. <h2><a class="anchor" id="posterize"></a>-posterize <var>levels</var></h2>
  4719. </div>
  4720. <p class="magick-description">Reduce the image to a limited number of color levels per channel.</p>
  4721. <p>Very low values of <var>levels</var>, e.g., 2, 3, 4, have the most
  4722. visible effect.</p>
  4723. <div style="margin: auto;">
  4724. <h2><a class="anchor" id="precision"></a>-precision <var>value</var></h2>
  4725. </div>
  4726. <p class="magick-description">Set the maximum number of significant digits to be printed.</p>
  4727. <div style="margin: auto;">
  4728. <h2><a class="anchor" id="preview"></a>-preview <var>type</var></h2>
  4729. </div>
  4730. <p class="magick-description">Image preview type.</p>
  4731. <p>Use this option to affect the preview operation of an image (e.g.
  4732. <samp>magick file.png -preview Gamma Preview:gamma.png</samp>). Choose from
  4733. these previews:</p>
  4734. <pre class="pre-scrollable bg-light text-dark mx-4"><samp>
  4735. AddNoise
  4736. Blur
  4737. Brightness
  4738. Charcoal
  4739. Despeckle
  4740. Dull
  4741. EdgeDetect
  4742. Gamma
  4743. Grayscale
  4744. Hue
  4745. Implode
  4746. JPEG
  4747. OilPaint
  4748. Quantize
  4749. Raise
  4750. ReduceNoise
  4751. Roll
  4752. Rotate
  4753. Saturation
  4754. Segment
  4755. Shade
  4756. Sharpen
  4757. Shear
  4758. Solarize
  4759. Spiff
  4760. Spread
  4761. Swirl
  4762. Threshold
  4763. Wave
  4764. </samp></pre>
  4765. <p>To print a complete list of previews, use the <a href="command-line-options.html#list">-list preview</a> option.</p>
  4766. <p>The default preview is <samp>JPEG</samp>.</p>
  4767. <div style="margin: auto;">
  4768. <h2><a class="anchor" id="print"></a>-print <var>string</var></h2>
  4769. </div>
  4770. <p class="magick-description">Interpret string and print to console.</p>
  4771. <div style="margin: auto;">
  4772. <h2><a class="anchor" id="process"></a>-process <var>command</var></h2>
  4773. </div>
  4774. <p class="magick-description">Process the image with a custom image filter.</p>
  4775. <p>The command arguments has the form <samp>"module arg1 arg2 arg3 ...
  4776. argN"</samp> where <samp>module</samp> is the name of the module to invoke (e.g.
  4777. "Analyze") and arg1 arg2 arg3 ... argN are an arbitrary number of arguments to
  4778. pass to the process module.</p>
  4779. <div style="margin: auto;">
  4780. <h2><a class="anchor" id="profile"></a>-profile <var>filename</var><br/>
  4781. +profile <var>profile_name</var></h2>
  4782. </div>
  4783. <p class="magick-description">Manage ICM, IPTC, or generic profiles in an image.</p>
  4784. <p>Using <a href="command-line-options.html#profile">-profile</a> <var>filename</var> adds an
  4785. ICM (ICC color management), IPTC (newswire information), or a generic profile
  4786. to the image.</p>
  4787. <p>Use <a href="command-line-options.html#profile">+profile <var>profile_name</var></a> to
  4788. remove the indicated profile. ImageMagick uses standard filename globbing, so
  4789. wildcard expressions may be used to remove more than one profile. Here we
  4790. remove all profiles from the image except for the XMP profile: <samp>+profile
  4791. "!xmp,*"</samp>. </p>
  4792. <p>Use <samp>magick identify -verbose</samp> to find out which profiles are in the
  4793. image file. Use <a href="command-line-options.html#strip">-strip</a> to remove all profiles (and
  4794. comments).</p>
  4795. <p>To extract a profile, the <a href="command-line-options.html#profile">-profile</a> option is not
  4796. used. Instead, simply write the file to an image format such as <var>APP1, 8BIM, ICM,</var> or <var>IPTC</var>.</p>
  4797. <p>For example, to extract the Exif data (which is stored in JPEG files in the
  4798. <var>APP1</var> profile), use.</p>
  4799. <p>Set <samp>-define precision:highres-transform=true</samp> to increase the transform precision. Note, there is a slight performance penalty as the high-precision transform is floating point rather than unsigned.</p>
  4800. <pre class="bg-light text-dark mx-4 cli"><samp>magick cockatoo.jpg profile.exif
  4801. </samp></pre>
  4802. <p>It is important to note that results may depend on whether or not the
  4803. original image already has an included profile. Also, keep in mind that <a
  4804. href="command-line-options.html#profile">-profile</a> is an "operator" (as opposed to a "setting") and
  4805. therefore a conversion is made each time it is encountered, in order, in the
  4806. command-line. For instance, in the following example, if the original image is
  4807. CMYK with profile, a CMYK-CMYK-RGB conversion results.</p>
  4808. <pre class="bg-light text-dark mx-4 cli"><samp>magick CMYK.tif -profile "CMYK.icc" -profile "RGB.icc" RGB.tiff
  4809. </samp></pre>
  4810. <p>Furthermore, since ICC profiles are not necessarily symmetric, extra
  4811. conversion steps can yield unwanted results. CMYK profiles are often very
  4812. asymmetric since they involve 3−&gt;4 and 4−&gt;3 channel mapping.
  4813. </p>
  4814. <div style="margin: auto;">
  4815. <h2><a class="anchor" id="quality"></a>-quality <var>value</var></h2>
  4816. </div>
  4817. <p class="magick-description">JPEG/MIFF/PNG compression level.</p>
  4818. <p>For the JPEG and MPEG image formats, quality is 1 (lowest image quality and
  4819. highest compression) to 100 (best quality but least effective compression).
  4820. The default is to use the estimated quality of your input image if it can
  4821. be determined, otherwise 92. When the quality is 90 or greater, then the
  4822. chroma channels are not downsampled.
  4823. Use the <a href="command-line-options.html#sampling-factor">-sampling-factor</a> option to specify the
  4824. factors for chroma downsampling.</p>
  4825. <p>For the JPEG-2000 image format, quality is mapped using a non-linear
  4826. equation to the compression ratio required by the Jasper library. This
  4827. non-linear equation is intended to loosely approximate the quality provided by
  4828. the JPEG v1 format. The default quality value 100, a request for non-lossy
  4829. compression. A quality of 75 results in a request for 16:1 compression.</p>
  4830. <p>For the MNG and PNG image formats, the quality value sets the zlib
  4831. compression level (quality / 10) and filter-type (quality % 10). The default
  4832. PNG "quality" is 75, which means compression level 7 with adaptive PNG
  4833. filtering, unless the image has a color map, in which case it means
  4834. compression level 7 with no PNG filtering.</p>
  4835. <p>For compression level 0 (quality value less than 10), the Huffman-only
  4836. strategy is used, which is fastest but not necessarily the worst
  4837. compression.</p>
  4838. <p>If filter-type is 4 or less, the specified PNG filter-type is used for
  4839. all scanlines:</p>
  4840. <div class="pre-scrollable bg-light text-dark mx-4">
  4841. <dl class="row">
  4842. <dt class="col-md-4">0</dt><dd class="col-md-8">none</dd>
  4843. <dt class="col-md-4">1</dt><dd class="col-md-8">sub</dd>
  4844. <dt class="col-md-4">2</dt><dd class="col-md-8">up</dd>
  4845. <dt class="col-md-4">3</dt><dd class="col-md-8">average</dd>
  4846. <dt class="col-md-4">4</dt><dd class="col-md-8">Paeth</dd>
  4847. </dl>
  4848. </div>
  4849. <p>If filter-type is 5, adaptive filtering is used when quality is greater
  4850. than 50 and the image does not have a color map, otherwise no filtering is
  4851. used.</p>
  4852. <p>If filter-type is 6, adaptive filtering
  4853. with <var>minimum-sum-of-absolute-values</var> is used.</p>
  4854. <p>Only if the output is MNG, if filter-type is 7, the LOCO color
  4855. transformation (intrapixel differencing) and adaptive filtering
  4856. with <var>minimum-sum-of-absolute-values</var> are used.</p>
  4857. <p>If the filter-type is 8 the zlib Z_RLE compression strategy (or the
  4858. Z_HUFFMAN_ONLY strategy, when compression level is 0) is used with
  4859. adaptive PNG filtering.</p>
  4860. <p>If the filter-type is 9 the zlib Z_RLE compression strategy (or the
  4861. Z_HUFFMAN_ONLY strategy, when compression level is 0) is used with
  4862. no PNG filtering.</p>
  4863. <p>The quality setting has no effect on the appearance or signature of PNG
  4864. and MNG images, since the compression is always lossless.</p>
  4865. <p>Not all combinations of compression level, strategy, and PNG filter type
  4866. can be obtained using the -quality option. For more precise control,
  4867. you can use the PNG:compression-level=N, PNG:compression-strategy=N, and
  4868. PNG:compression-filter=N defines, respectively, instead.
  4869. See <a href="command-line-options.html#define">-define</a>. Values from the defines take precedence
  4870. over values from the -quality option.</p>
  4871. <p>For further information, see
  4872. the <a href="http://www.w3.org/pub/WWW/TR">PNG</a> specification.</p>
  4873. <p>For the MIFF and TIFF image formats, quality/10 is the <a href="command-line-options.html#compress">Zip/BZip</a> compression level, which is 0 (worst but fastest compression) to 9 (best but slowest). It has no effect on the image appearance, since the compression is always lossless.</p>
  4874. <p>For the BPG image format, quality/2 is the actual BPG compression level (range from 0 to 51).</p>
  4875. <div style="margin: auto;">
  4876. <h2><a class="anchor" id="quantize"></a>-quantize <var>colorspace</var></h2>
  4877. </div>
  4878. <p class="magick-description">Reduce colors using this colorspace.</p>
  4879. <p>This setting defines the colorspace used to sort out and reduce the number
  4880. of colors needed by an image (for later dithering) by operators such as <a
  4881. href="command-line-options.html#colors" >-colors</a>, Note that color reduction also happens
  4882. automatically when saving images to color-limited image file formats, such as
  4883. GIF, and PNG8.</p>
  4884. <div style="margin: auto;">
  4885. <h2><a class="anchor" id="quiet"></a>-quiet</h2>
  4886. </div>
  4887. <p class="magick-description">Suppress all warning messages. Error messages are still reported.</p>
  4888. <p>The <a href="command-line-options.html#virtual-pixel">-virtual-pixel</a> setting will determine how
  4889. pixels which are outside the image proper are blurred into the final result.
  4890. </p>
  4891. <div style="margin: auto;">
  4892. <h2><a class="anchor" id="raise"></a>-raise <var>thickness</var></h2>
  4893. </div>
  4894. <p class="magick-description">Lighten or darken image edges.</p>
  4895. <p>This will create a 3-D effect. Use <a href="command-line-options.html#raise">-raise</a> to create
  4896. a raised effect, otherwise use <a href="command-line-options.html#raise">+raise</a>. </p>
  4897. <p>Unlike the similar <a href="command-line-options.html#frame">-frame</a> option, <a
  4898. href="command-line-options.html#raise">-raise</a> does not alter the dimensions of the image.</p>
  4899. <div style="margin: auto;">
  4900. <h2><a class="anchor" id="random-threshold"></a>-random-threshold <var>low</var>x<var>high</var></h2>
  4901. </div>
  4902. <p class="magick-description">Apply a random threshold to the image.</p>
  4903. <div style="margin: auto;">
  4904. <h2><a class="anchor" id="range-threshold"></a>-range-threshold <var>low-black</var>,<var>low-white</var>,<var>high-white</var>,<var>high-black</var></h2>
  4905. </div>
  4906. <p class="magick-description">Perform either hard or soft thresholding within some range of values in an image.</p>
  4907. <div style="margin: auto;">
  4908. <h2><a class="anchor" id="read"></a>-read <var>filename</var></h2>
  4909. </div>
  4910. <p class="magick-description">Explicit read of an image rather than an implicit read.</p>
  4911. <p>This option allows you to read from filenames that start with an 'option' character, and which otherwise could be mistaken as an option (unknown or otherwise).</p>
  4912. <div style="margin: auto;">
  4913. <h2><a class="anchor" id="read-mask"></a>-read-mask <var>filename</var></h2>
  4914. </div>
  4915. <p class="magick-description">Prevent updates to image pixels specified by the mask.</p>
  4916. <p>This the same as using a mask used for composite masking operations, with
  4917. grayscale values causing blended updates of the image the mask is attached to.
  4918. </p>
  4919. <p>Use <a href="command-line-options.html#read-mask">+read-mask</a> to remove the mask from images.</p>
  4920. <p>Also see <a href="command-line-options.html#clip-mask">-clip-mask</a> which work in the same way,
  4921. but with strict boolean masking. </p>
  4922. <div style="margin: auto;">
  4923. <h2><a class="anchor" id="red-primary"></a>-red-primary <var>x,y</var></h2>
  4924. </div>
  4925. <p class="magick-description">Set the red chromaticity primary point.</p>
  4926. <div style="margin: auto;">
  4927. <h2><a class="anchor" id="regard-warnings"></a>-regard-warnings</h2>
  4928. </div>
  4929. <p class="magick-description">Pay attention to warning messages.</p>
  4930. <p>This option causes some warnings in some image formats to be treated
  4931. as errors. </p>
  4932. <div style="margin: auto;">
  4933. <h2><a class="anchor" id="remap"></a>-remap <var>filename</var></h2>
  4934. </div>
  4935. <p class="magick-description">Reduce the number of colors in an image to the colors used by this image.</p>
  4936. <p>If the <a href="command-line-options.html#dither">-dither</a> setting is enabled (the default) then
  4937. the given colors are dithered over the image as necessary, otherwise the closest
  4938. color (in RGB colorspace) is selected to replace that pixel in the image. </p>
  4939. <p>As a side effect of applying a <a href="command-line-options.html#remap">-remap</a> of colors across all
  4940. images in the current image sequence, all the images will have the same color
  4941. table. That means that when saved to a file format such as GIF, it will use
  4942. that color table as a single common or global color table, for all the images,
  4943. without requiring extra local color tables. </p>
  4944. <p>Use <a href="command-line-options.html#remap">+remap</a> to reduce all images in the current image
  4945. sequence to use a common color map over all the images. This equivalent to
  4946. appending all the images together (without extra background colors) and color
  4947. reducing those images using <a href="command-line-options.html#colors">-colors</a> with a 256 color
  4948. limit, then <a href="command-line-options.html#remap">-remap</a> those colors over the original list of
  4949. images. This ensures all the images follow a single color map. </p>
  4950. <p>If the number of colors over all the images is less than 256, then <a
  4951. href="command-line-options.html#remap">+remap</a> should not perform any color reduction or dithering, as
  4952. no color changes are needed. In that case, its only effect is to force the use
  4953. of a global color table. This recommended after using either <a
  4954. href="command-line-options.html#colors">-colors</a> or <a href="command-line-options.html#ordered-dither">-ordered-dither</a> to
  4955. reduce the number of colors in an animated image sequence. </p>
  4956. <p>Note, the remap image colormap has at most 8-bits of precision. Deeper color maps are automagically coalesced with other colors to meet this requirement.</p>
  4957. <div style="margin: auto;">
  4958. <h2><a class="anchor" id="region"></a>-region <var>geometry</var></h2>
  4959. </div>
  4960. <p class="magick-description">Set a region in which subsequent operations apply.</p>
  4961. <p>The <var>x</var> and <var>y</var> offsets are treated
  4962. in the same manner as in <a href="command-line-options.html#crop">-crop</a>.</p>
  4963. <p>See <a href="command-line-processing.html#geometry">Image Geometry</a> for complete details about the <em class="arg">geometry</em> argument.</p>
  4964. <p>Use <samp>+region</samp> to remove any previously set regions.</p>
  4965. <div style="margin: auto;">
  4966. <h2><a class="anchor" id="remote"></a>-remote</h2>
  4967. </div>
  4968. <p class="magick-description">Perform a remote operation.</p>
  4969. <p>The only command recognized is the name of an image file to load.</p>
  4970. <p>If you have more than one <a href="display.html">display</a> application
  4971. running simultaneously, use the <a href="command-line-options.html#window"> window</a> option to
  4972. specify which application to control.</p>
  4973. <div style="margin: auto;">
  4974. <h2><a class="anchor" id="render"></a>-render</h2>
  4975. </div>
  4976. <p class="magick-description">Render vector operations.</p>
  4977. <p>Use <a href="command-line-options.html#render">+render</a> to turn off rendering vector operations.
  4978. This useful when saving the result to vector formats such as MVG or SVG.</p>
  4979. <div style="margin: auto;">
  4980. <h2><a class="anchor" id="repage"></a>-repage <var>geometry</var></h2>
  4981. </div>
  4982. <p class="magick-description">Adjust the canvas and offset information of the image.</p>
  4983. <p>This option is like <a href="command-line-options.html#page">-page</a> but acts as an image operator
  4984. rather than a setting. You can separately set the canvas size or the offset
  4985. of the image on that canvas by only providing those components. </p>
  4986. <p>See <a href="command-line-processing.html#geometry">Image Geometry</a> for complete details about the <em class="arg">geometry</em> argument.</p>
  4987. <p>If a <samp>!</samp> flag is given the offset given is added to the existing
  4988. offset to move the image relative to its previous position. This useful for
  4989. animation sequences. </p>
  4990. <p>A given a canvas size of zero such as '<samp>0x0</samp>' forces it to
  4991. recalculate the canvas size so the image (at its current offset) will appear
  4992. completely on that canvas (unless it has a negative offset).</p>
  4993. <p>Use <a href="command-line-options.html#repage">+repage</a> to completely remove/reset the virtual
  4994. canvas meta-data from the images. </p>
  4995. <p>The <a href="command-line-options.html#set">-set</a> '<samp>page</samp>' option can be used to
  4996. directly assign virtual canvas meta-data. </p>
  4997. <div style="margin: auto;">
  4998. <h2><a class="anchor" id="resample"></a>-resample <var>horizontal</var>x<var>vertical</var></h2>
  4999. </div>
  5000. <p class="magick-description">Resample image to specified horizontal and vertical resolution.</p>
  5001. <p>Resize the image so that its rendered size remains the same as the original
  5002. at the specified target resolution. For example, if a 300 DPI image renders at
  5003. 3 inches by 2 inches on a 300 DPI device, when the image has been resampled to
  5004. 72 DPI, it will render at 3 inches by 2 inches on a 72 DPI device. Note that
  5005. only a small number of image formats (e.g. JPEG, PNG, and TIFF) are capable of
  5006. storing the image resolution. For formats which do not support an image
  5007. resolution, the original resolution of the image must be specified via <a
  5008. href="command-line-options.html#density">-density</a> on the command line prior to specifying the
  5009. resample resolution.</p>
  5010. <p>Note that Photoshop stores and obtains image resolution from a proprietary
  5011. embedded profile. If this profile exists in the image, then Photoshop will
  5012. continue to treat the image using its former resolution, ignoring the image
  5013. resolution specified in the standard file header.</p>
  5014. <div style="margin: auto;">
  5015. <h2><a class="anchor" id="reshape"></a>-reshape <var>geometry</var></h2>
  5016. </div>
  5017. <p class="magick-description">Reshape an image.</p>
  5018. <div style="margin: auto;">
  5019. <h2><a class="anchor" id="resize"></a>-resize <var>geometry</var></h2>
  5020. </div>
  5021. <p class="magick-description">Resize an image.</p>
  5022. <p>See <a href="command-line-processing.html#geometry">Image Geometry</a> for complete details about the <em class="arg">geometry</em> argument. Offsets, if present in the geometry string, are
  5023. ignored, and the <a href="command-line-options.html#gravity">-gravity</a> option has no effect.</p>
  5024. <p>If the <a href="command-line-options.html#filter">-filter</a> option
  5025. or <samp>-define filter:option=value</samp> precedes the <a
  5026. href="command-line-options.html#resize">-resize</a> option, the image is resized with the specified
  5027. orthogonal filter.</p>
  5028. <p>Many image processing algorithms assume your image is in a linear-light
  5029. coding. If your image is gamma-corrected, you can remove the nonlinear gamma
  5030. correction, apply the transform, then restore it like this:</p>
  5031. <pre class="bg-light text-dark mx-4 cli"><samp>magick portrait.jpg -gamma .45455 -resize 25% -gamma 2.2 \
  5032. -quality 92 passport.jpg
  5033. </samp></pre>
  5034. <p>Note, some resampling functions are damped oscillations in approximation of a Sinc function. As such, you may get negative lobes if your release of ImageMagick is HDRI-enabled. To eliminate them, add <a href="command-line-options.html#clamp">-clamp</a> to your command-line.</p>
  5035. <div style="margin: auto;">
  5036. <h2><a class="anchor" id="respect-parentheses"></a>-respect-parentheses</h2>
  5037. </div>
  5038. <p class="magick-description">Settings remain in effect until parenthesis boundary.</p>
  5039. <div style="margin: auto;">
  5040. <h2><a class="anchor" id="reverse"></a>-reverse</h2>
  5041. </div>
  5042. <p class="magick-description">Reverse the order of images in the current image list.</p>
  5043. <div style="margin: auto;">
  5044. <h2><a class="anchor" id="roll"></a>-roll {<var>+-</var>}<var>x</var>{<var>+-</var>}<var>y</var></h2>
  5045. </div>
  5046. <p class="magick-description">Roll an image vertically or horizontally by the amount given.</p>
  5047. <p>A negative <var>x</var> offset rolls the image right-to-left.
  5048. A negative <var>y</var> offset rolls the image bottom-to-top.</p>
  5049. <div style="margin: auto;">
  5050. <h2><a class="anchor" id="rotate"></a>-rotate <var>degrees</var>{<var>&lt;</var>}{<var>&gt;</var>}</h2>
  5051. </div>
  5052. <p class="magick-description">Apply Paeth image rotation (using shear operations) to the image.</p>
  5053. <p>Use <samp>&gt;</samp> to rotate the image only if its width exceeds the
  5054. height. <samp>&lt;</samp> rotates the image <var>only</var> if its width is less
  5055. than the height. For example, if you specify <samp>-rotate "-90&gt;"</samp> and
  5056. the image size is 480x640, the image is not rotated. However, if the image is
  5057. 640x480, it is rotated by -90 degrees. If you use <samp>&gt;</samp> or
  5058. <samp>&lt;</samp>, enclose it in quotation marks to prevent it from being
  5059. misinterpreted as a file redirection.</p>
  5060. <p>Empty triangles in the corners, left over from rotating the image, are
  5061. filled with the <samp>background</samp> color. </p>
  5062. <p>See also the <a href="command-line-options.html#distort">-distort</a> operator and specifically the
  5063. '<samp>ScaleRotateTranslate</samp>' distort method. </p>
  5064. <p>The page or virtual canvas information of the image is also rotated. Use a <a href="command-line-options.html#repage">+repage</a> to remove the virtual canvas page information if it is unwanted.</p>
  5065. <div style="margin: auto;">
  5066. <h2><a class="anchor" id="rotational-blur"></a>-rotational-blur <var>angle</var></h2>
  5067. </div>
  5068. <p class="magick-description">Blur around the center of the image.</p>
  5069. <p>This operation used to be called "-radial-blur".</p>
  5070. <div style="margin: auto;">
  5071. <h2><a class="anchor" id="sample"></a>-sample <var>geometry</var></h2>
  5072. </div>
  5073. <p class="magick-description">Minify / magnify the image with pixel subsampling and pixel replication, respectively.</p>
  5074. <p>Change the image size simply by directly sampling the pixels original
  5075. from the image. When magnifying, pixels are replicated in blocks. When
  5076. minifying, pixels are sub-sampled (i.e., some rows and columns are skipped
  5077. over). </p>
  5078. <p>The results are thus equivalent to using <a href="command-line-options.html#resize">-resize</a> with
  5079. a <a href="command-line-options.html#filter">-filter</a> setting of <samp>point</samp> (nearest
  5080. neighbor), though <a href="command-line-options.html#sample">-sample</a> is a lot faster, as it
  5081. avoids all the filter processing of the image. As such it completely ignores
  5082. the current <a href="command-line-options.html#filter">-filter</a> setting. </p>
  5083. <p>The key feature of the <a href="command-line-options.html#sample">-sample</a> is that no new colors
  5084. will be added to the resulting image, though some colors may disappear. </p>
  5085. <p>See <a href="command-line-processing.html#geometry">Image Geometry</a> for complete details about the <em class="arg">geometry</em> argument. Offsets, if present in the geometry string, are
  5086. ignored, unlike <a href="command-line-options.html#resize">-resize</a>. </p>
  5087. <p>The actual sampling point is the middle of the sub-region being sampled.
  5088. As such a single pixel sampling of an image will take the middle pixel, (or
  5089. top-left-middle if image has even dimensions). However the <a
  5090. href="command-line-options.html#define">-define</a> '<samp>sample:offset</samp>' can be set to modify
  5091. this position some other location within each sub-region being sampled, as
  5092. a percentage offset.</p>
  5093. <p>By default this value is '<samp>50</samp>' for the midpoint, but could be set
  5094. to '<samp>0</samp>' for top-left, '<samp>100</samp>' for bottom-right, or with
  5095. separate X and Y offsets such as '<samp>0x50</samp>' for left-middle edge of
  5096. sampling sub-region.</p>
  5097. <div style="margin: auto;">
  5098. <h2><a class="anchor" id="sampling-factor"></a>-sampling-factor <var>horizontal-factor</var>x<var>vertical-factor</var></h2>
  5099. </div>
  5100. <p class="magick-description">Sampling factors used by JPEG or MPEG-2 encoder and YUV decoder/encoder.</p>
  5101. <p>This option specifies the sampling factors to be used by the JPEG encoder
  5102. for chroma downsampling. If this option is omitted, the JPEG library will use
  5103. its own default values. When reading or writing the YUV format and when
  5104. writing the M2V (MPEG-2) format, use <a
  5105. href="command-line-options.html#sampling-factor">-sampling-factor 2x1</a> or <a
  5106. href="command-line-options.html#sampling-factor">-sampling-factor 4:2:2</a> to specify the 4:2:2
  5107. downsampling method.</p>
  5108. <div style="margin: auto;">
  5109. <h2><a class="anchor" id="scale"></a>-scale <var>geometry</var></h2>
  5110. </div>
  5111. <p class="magick-description">Minify / magnify the image with pixel block averaging and pixel replication, respectively.</p>
  5112. <p>Change the image size simply by replacing pixels by averaging pixels
  5113. together when minifying, or replacing pixels when magnifying. </p>
  5114. <p>The results are thus equivalent to using <a href="command-line-options.html#resize">-resize</a> with
  5115. a <a href="command-line-options.html#filter">-filter</a> setting of <samp>box</samp>. Though it is a lot
  5116. faster, as it avoids all the filter processing of the image. As such it
  5117. completely ignores the current <a href="command-line-options.html#filter">-filter</a> setting. </p>
  5118. <p>If when shrinking (minifying) images the original image is some integer
  5119. multiple of the new image size, the number of pixels averaged together to
  5120. produce the new pixel color is the same across the whole image. This is
  5121. a special case known as 'binning' and is often used as a method of reducing
  5122. noise in image such as those generated by digital cameras, especially in low
  5123. light conditions. </p>
  5124. <div style="margin: auto;">
  5125. <h2><a class="anchor" id="scene"></a>-scene <var>value</var></h2>
  5126. </div>
  5127. <p class="magick-description">Set scene number.</p>
  5128. <p>This option sets the scene number of an image or the first image in an image sequence.</p>
  5129. <p class="magick-description">Specify the screen to capture.</p>
  5130. <p>This option indicates that the GetImage request used to obtain the image
  5131. should be done on the root window, rather than directly on the specified
  5132. window. In this way, you can obtain pieces of other windows that overlap the
  5133. specified window, and more importantly, you can capture menus or other popups
  5134. that are independent windows but appear over the specified window.</p>
  5135. <div style="margin: auto;">
  5136. <h2><a class="anchor" id="script"></a>-script <var>filename</var></h2>
  5137. </div>
  5138. <p class="magick-description">Transfer control to the named file.</p>
  5139. <div style="margin: auto;">
  5140. <h2><a class="anchor" id="seed"></a>-seed</h2>
  5141. </div>
  5142. <p class="magick-description">Seed a new sequence of pseudo-random numbers</p>
  5143. <div style="margin: auto;">
  5144. <h2><a class="anchor" id="segment"></a>-segment <var>cluster-threshold</var>x<var>smoothing-threshold</var></h2>
  5145. </div>
  5146. <p class="magick-description">Segment the colors of an image.</p>
  5147. <p>Segment an image by analyzing the histograms of the color components and
  5148. identifying units that are homogeneous with the fuzzy c-means technique. This
  5149. is part of the ImageMagick color quantization routines. </p>
  5150. <p>Specify <var>cluster threshold</var> as the number of pixels in
  5151. each cluster that must exceed the cluster threshold to be considered valid.
  5152. <var>Smoothing threshold</var> eliminates noise in the second
  5153. derivative of the histogram. As the value is increased, you can expect
  5154. a smoother second derivative. The default is 1.5.</p>
  5155. <p>If the <a href="command-line-options.html#verbose">-verbose</a> setting is defined, a detailed report
  5156. of the color clusters is returned.</p>
  5157. <div style="margin: auto;">
  5158. <h2><a class="anchor" id="selective-blur"></a>-selective-blur <var>radius</var><br />-selective-blur <var>radius</var>{x<var>sigma</var>}{<var>+threshold</var>}</h2>
  5159. </div>
  5160. <p class="magick-description">Selectively blur pixels within a contrast threshold.</p>
  5161. <p>Blurs those pixels that are less than or equal to the threshold in
  5162. contrast. The threshold may be expressed as a fraction of <var>QuantumRange</var> or as a percentage.</p>
  5163. <p>The <var>sigma</var> value is the important argument, and
  5164. determines the actual amount of blurring that will take place. </p>
  5165. <p>The <var>radius</var> is only used to determine the size of the
  5166. array which holds the calculated Gaussian distribution. It should be an
  5167. integer. If not given, or set to zero, IM will calculate the largest possible
  5168. radius that will provide meaningful results for the Gaussian distribution.
  5169. </p>
  5170. <div style="margin: auto;">
  5171. <h2><a class="anchor" id="separate"></a>-separate</h2>
  5172. </div>
  5173. <p class="magick-description">Separate an image channel into a grayscale image. Specify the channel with <a href="command-line-options.html#channel">-channel</a>.</p>
  5174. <div style="margin: auto;">
  5175. <h2><a class="anchor" id="sepia-tone"></a>-sepia-tone <var>percent-threshold</var></h2>
  5176. </div>
  5177. <p class="magick-description">Simulate a sepia-toned photo.</p>
  5178. <p>Specify <var>threshold</var> as the percent threshold of the intensity (0 - 99.9%).</p>
  5179. <p>This option applies a special effect to the image, similar to the effect
  5180. achieved in a photo darkroom by sepia toning. Threshold ranges from 0 to <var>QuantumRange</var> and is a measure of the extent of the sepia
  5181. toning. A threshold of 80% is a good starting point for a reasonable
  5182. tone.</p>
  5183. <div style="margin: auto;">
  5184. <h2><a class="anchor" id="set"></a>-set <var>key value</var></h2>
  5185. <h2>+set <var>key</var></h2>
  5186. </div>
  5187. <p class="magick-description">Sets image attributes and properties for images in the current image sequence.</p>
  5188. <p>This will assign (or modify) specific settings attached to all the images
  5189. in the current image sequence. Using the <a href="command-line-options.html#set">+set</a> form of the
  5190. option will either remove, or reset that setting to a default state, as
  5191. appropriate. </p>
  5192. <p>For example, it will modify specific well known image meta-data
  5193. 'attributes' such as those normally overridden by: the options <a
  5194. href="command-line-options.html#delay" >-delay</a>, <a href="command-line-options.html#dispose" >-dispose</a>, and <a
  5195. href="command-line-options.html#page" >-page</a>, <a href="command-line-options.html#colorspace" >-colorspace</a>; generally
  5196. assigned before the image is read in, by using a <var>key</var> of
  5197. the same name. </p>
  5198. <p>If the given <var>key</var> does not match a specific known
  5199. 'attribute ', such as shown above, the setting is stored as a free form
  5200. 'property' string. Such settings are listed in <a href="command-line-options.html#verbose"
  5201. >-verbose</a> information ("<samp>info:</samp>" output format) as "Properties".
  5202. </p>
  5203. <p>This includes string 'properties' that are set by and assigned to images
  5204. using the options <a href="command-line-options.html#comment" >-comment</a>, <a href="command-line-options.html#label"
  5205. >-label</a>, <a href="command-line-options.html#caption" >-caption</a>. These options actually assign
  5206. a global 'artifact' which are automatically assigned (and any <a href="../www/escape.html" >Format Percent
  5207. Escapes</a> expanded) to images as they are read in. For example:</p>
  5208. <pre class="bg-light text-dark mx-4"><samp>$ magick rose: -set comment 'Rose is a rose is a rose is a rose' rose.jpg
  5209. identify -format %c rose.jpg
  5210. Rose is a rose is a rose is a rose
  5211. </samp></pre>
  5212. <p>The set value can also make use of <a href="../www/escape.html" >Format and Print Image
  5213. Properties</a> in the defined value. For example:</p>
  5214. <pre class="bg-light text-dark mx-4"><samp>$ magick rose: -set origsize '%wx%h' -resize 50% \
  5215. -format 'Old size = %[origsize] New size = %wx%h' info:
  5216. Old size = 70x46 New size = 35x23
  5217. </samp></pre>
  5218. <p>Other well known 'properties' that are available include:
  5219. <samp>date:timestamp</samp>, <samp>date:create</samp>,
  5220. <samp>date:modify</samp>, and <samp>signature</samp>. </p>
  5221. <p>The <a href="command-line-options.html#repage">-repage</a> operator will also allow you to modify
  5222. the '<samp>page</samp>' attribute of an image for images already in memory (also
  5223. see <a href="command-line-options.html#repage">-page</a>). However it is designed to provide a finer
  5224. control of the sub-parts of this 'attribute'. The <a href="command-line-options.html#set">-set page</a>
  5225. option will only provide a direct, unmodified assignment of '<samp>page</samp>'
  5226. attribute. </p>
  5227. <p>This option can also associate a colorspace or profile with your image.
  5228. For example,</p>
  5229. <pre class="bg-light text-dark mx-4 cli"><samp>magick image.psd -set profile ISOcoated_v2_eci.icc image-icc.psd
  5230. </samp></pre>
  5231. <p>Some 'properties' must be defined in a specific way to be used. For
  5232. example only 'properties' prefixed with "<samp>filename:</samp>" can be used to
  5233. modify the output filename of an image. For example</p>
  5234. <pre class="bg-light text-dark mx-4 cli"><samp>magick rose: -set filename:mysize '%wx%h' 'rose_%[filename:mysize].png'
  5235. </samp></pre>
  5236. <p>If the setting value is prefixed with "<samp>option:</samp>" the setting will
  5237. be saved as a global "Artifact" exactly as if it was set using the <a
  5238. href="command-line-options.html#define" >-define</a> option. As such settings are global in scope, they
  5239. can be used to pass 'attributes' and 'properties' of one specific image,
  5240. in a way that allows you to use them in a completely different image, even if
  5241. the original image has long since been modified or destroyed. For example: </p>
  5242. <pre class="bg-light text-dark mx-4 cli"><samp>magick rose: -set option:rosesize '%wx%h' -delete 0 \
  5243. label:'%[rosesize]' label_size_of_rose.gif"
  5244. </samp></pre>
  5245. <p>Note that <a href="../www/escape.html" >Format Percent Escapes</a> will only match
  5246. a 'artifact' if the given <var>key</var> does not match an existing
  5247. 'attribute' or 'property'. </p>
  5248. <p>You can set the attributes of the image registry by prefixing the value
  5249. with <samp>registry:</samp>.</p>
  5250. <p>The <a href="command-line-options.html#set">-set profile</a> option can also be used to inject
  5251. previously-formatted ancillary chunks into the output PNG file, using
  5252. the commandline option as shown below or by setting the profile via a
  5253. programming interface:</p>
  5254. <pre class="bg-light text-dark mx-4 cli"><samp>magick in.png -set profile PNG-chunk-x:&lt;filename&gt; out.png
  5255. </samp></pre>
  5256. <p>where <var>x</var> is a location flag and
  5257. <var>filename</var> is a file containing the chunk
  5258. name in the first 4 bytes, then a colon (":"), followed by the chunk data.
  5259. This encoder will compute the chunk length and CRC, so those must not
  5260. be included in the file.</p>
  5261. <p>"x" can be "b" (before PLTE), "m" (middle, i.e., between PLTE and IDAT),
  5262. or "e" (end, i.e., after IDAT). If you want to write multiple chunks
  5263. of the same type, then add a short unique string after the "x" to prevent
  5264. subsequent profiles from overwriting the preceding ones, e.g.,</p>
  5265. <pre class="bg-light text-dark mx-4 cli"><samp>magick in.png -set profile PNG-chunk-b01:file01 \
  5266. -profile PNG-chunk-b02:file02 out.png
  5267. </samp></pre>
  5268. <div style="margin: auto;">
  5269. <h2><a class="anchor" id="shade"></a>-shade <var>azimuth</var>x<var>elevation</var></h2>
  5270. </div>
  5271. <p class="magick-description">Shade the image using a distant light source.</p>
  5272. <p>Specify <var>azimuth</var> and <var>elevation</var> as
  5273. the position of the light source. Use <a href="command-line-options.html#shade">+shade</a> to return
  5274. the shading results as a grayscale image.</p>
  5275. <div style="margin: auto;">
  5276. <h2><a class="anchor" id="shadow"></a>-shadow <var>percent-opacity</var>{x<var>sigma</var>}{<var>+-</var>}<var>x</var>{<var>+-</var>}<var>y</var>{<var>%</var>}</h2>
  5277. </div>
  5278. <p class="magick-description">Simulate an image shadow.</p>
  5279. <div style="margin: auto;">
  5280. <h2><a
  5281. id="shared-memory"></a>-shared-memory</h2>
  5282. </div>
  5283. <p class="magick-description">Use shared memory.</p>
  5284. <p>This option specifies whether the utility should attempt to use shared
  5285. memory for pixmaps. ImageMagick must be compiled with shared memory support,
  5286. and the display must support the <var>MIT-SHM</var> extension.
  5287. Otherwise, this option is ignored. The default is <samp>True</samp>.</p>
  5288. <div style="margin: auto;">
  5289. <h2><a class="anchor" id="sharpen"></a>-sharpen <var>radius</var><br />-sharpen <var>radius</var>{x<var>sigma</var>}</h2>
  5290. </div>
  5291. <p class="magick-description">Sharpen the image.</p>
  5292. <p>Use a Gaussian operator of the given radius and standard deviation (sigma).</p>
  5293. <p>The <var>sigma</var> value is the important argument, and
  5294. determines the actual amount of sharpening that will take place. </p>
  5295. <p>The <var>radius</var> is only used to determine the size of the
  5296. array which holds the calculated Gaussian distribution. It should be an
  5297. integer. If not given, or set to zero, IM will calculate the largest possible
  5298. radius that will provide meaningful results for the Gaussian distribution.
  5299. </p>
  5300. <div style="margin: auto;">
  5301. <h2><a class="anchor" id="shave"></a>-shave <var>geometry</var></h2>
  5302. </div>
  5303. <p class="magick-description">Shave pixels from the image edges.</p>
  5304. <p>The <var>size</var> portion of the <var>geometry</var>
  5305. argument specifies the width of the region to be removed from both sides of
  5306. the image and the height of the regions to be removed from top and bottom.
  5307. Offsets are ignored.</p>
  5308. <p>See <a href="command-line-processing.html#geometry">Image Geometry</a> for complete details about the <em class="arg">geometry</em> argument.</p>
  5309. <div style="margin: auto;">
  5310. <h2><a class="anchor" id="shear"></a>-shear <var>Xdegrees</var>[x<var>Ydegrees</var>]</h2>
  5311. </div>
  5312. <p class="magick-description">Shear the image along the x-axis and/or y-axis.</p>
  5313. <p>The shear angles may be positive, negative, or zero. When <var>Ydegrees</var> is omitted it defaults to <var>Xdegrees</var>. When both angles are
  5314. given, the horizontal component of the shear is performed before the vertical
  5315. component.</p>
  5316. <p>Shearing slides one edge of an image along the x-axis or y-axis (i.e.,
  5317. horizontally or vertically, respectively),creating a parallelogram. The amount
  5318. of each is controlled by the respective shear angle. For horizontal shears,
  5319. <var>Xdegrees</var> is measured clockwise relative to "up" (the
  5320. negative y-axis), sliding the top edge to the right when 0°&lt;<var>Xdegrees</var>&lt;90° and to the left when 90°&lt;<var>Xdegrees</var>&lt;180°. For vertical shears <var>Ydegrees</var> is measured clockwise relative to "right" (the
  5321. positive x-axis), sliding the right edge down when 0°&lt;<var>Ydegrees</var>&lt;90° and up when 90°&lt;<var>Ydegrees</var>&lt;180°.</p>
  5322. <p>Empty triangles left over from shearing the image are filled with the color
  5323. defined by the <a href="command-line-options.html#fill">-background</a> option. The color is specified
  5324. using the format described under the <a href="command-line-options.html#fill">-fill</a> option.</p>
  5325. <p>The horizontal shear is performed before the vertical part. This is
  5326. important to note, since horizontal and vertical shears do not
  5327. <var>commute</var>, i.e., the order matters in a sequence of shears. For
  5328. example, the following two commands are not equivalent.</p>
  5329. <pre class="bg-light text-dark mx-4 cli"><samp>magick logo: -shear 20x0 -shear 0x60 logo-sheared.png
  5330. convert logo: -shear 0x60 -shear 20x0 logo-sheared.png
  5331. </samp></pre>
  5332. <p>The first of the two commands above is equivalent to the following, except
  5333. for the amount of empty space created; the command that follows generates
  5334. a smaller image, and so is a better choice in terms of time and space.</p>
  5335. <pre class="bg-light text-dark mx-4 cli"><samp>magick logo: -shear 20x60 logo-sheared.png
  5336. </samp></pre>
  5337. <div style="margin: auto;">
  5338. <h2><a class="anchor" id="sigmoidal-contrast"></a>-sigmoidal-contrast <var>contrast</var>x<var>mid-point</var></h2>
  5339. </div>
  5340. <p class="magick-description">Increase the contrast without saturating highlights or shadows.</p>
  5341. <p>Increase the contrast of the image using a sigmoidal transfer function
  5342. without saturating highlights or shadows. <var>Contrast</var>
  5343. indicates how much to increase the contrast. For example, 0 is none, 3 is
  5344. typical and 20 is a lot.
  5345. </p>
  5346. <p>The <var>mid-point</var> indicates where the maximum change
  5347. 'slope' in contrast should fall in the resultant image (0 is white; 50% is
  5348. middle-gray; 100% is black). </p>
  5349. <p>By default the image contrast is increased, use <var>+sigmoidal-contrast</var> to decrease the contrast.</p>
  5350. <p>To achieve the equivalent of a sigmoidal brightness change (similar to
  5351. a gamma adjustment), you would use <var>-sigmoidal-contrast
  5352. {brightness}x0%</var> to increase brightness and <var>+sigmoidal-contrast {brightness}x0%</var> to decrease brightness.
  5353. Note the use of '0' fo rthe mid-point of the sigmoidal curve. </p>
  5354. <p>Using a very high <var>contrast</var> will produce a sort of
  5355. 'smoothed thresholding' of the image. Not as sharp (with high aliasing
  5356. effects) of a true threshold, but with tapered gray-levels around the threshold
  5357. <var>mid-point</var>. </p>
  5358. <div style="margin: auto;">
  5359. <h2><a class="anchor" id="silent"></a>-silent</h2>
  5360. </div>
  5361. <p class="magick-description">Operate silently. This option is only used
  5362. by the <a href="import.html">import</a> tool.</p>
  5363. <div style="margin: auto;">
  5364. <h2><a class="anchor" id="similarity-threshold"></a>-similarity-threshold <var>value</var></h2>
  5365. </div>
  5366. <p class="magick-description">Minimum RMSE for subimage match.</p>
  5367. <p>If this setting is used, then the search will stop as soon as it finds a match whose metric is less than or equal to the value. A partially filled second output image will result. Using a value of zero, will cause the search to stop at the first perfect match it finds. If this setting is left off, then the search will proceed to completion or as limited by <var>-dissimilarity-threshold</var>.</p>
  5368. <div style="margin: auto;">
  5369. <h2><a class="anchor" id="size"></a>-size <var>width</var>[x<var>height</var>][<var>+offset</var>]</h2>
  5370. </div>
  5371. <p class="magick-description">Set the width and height of the image.</p>
  5372. <p>Use this option to specify the width and height of raw images whose
  5373. dimensions are unknown such as <samp>GRAY</samp>, <samp>RGB</samp>, or
  5374. <samp>CMYK</samp>. In addition to width and height, use <a
  5375. href="command-line-options.html#size">-size</a> with an offset to skip any header information in the
  5376. image or tell the number of colors in a <samp>MAP</samp> image file, (e.g. -size
  5377. 640x512+256).</p>
  5378. <p>For Photo CD images, choose from these sizes:</p>
  5379. <pre class="bg-light text-dark mx-4"><samp>192x128
  5380. 384x256
  5381. 768x512
  5382. 1536x1024
  5383. 3072x2048
  5384. </samp></pre>
  5385. <div style="margin: auto;">
  5386. <h2><a class="anchor" id="sketch"></a>-sketch <var>radius</var><br />-sketch <var>radius</var>{x<var>sigma</var>}+<var>angle</var></h2>
  5387. </div>
  5388. <p class="magick-description">Simulate a pencil sketch.</p>
  5389. <p>Sketch with the given radius, standard deviation (sigma), and angle. The
  5390. angle given is the angle toward which the image is sketched. That is the
  5391. direction people would consider the object is coming from. </p>
  5392. <div style="margin: auto;">
  5393. <h2><a class="anchor" id="smush"></a>-smush <var>offset</var></h2>
  5394. </div>
  5395. <p class="magick-description">Appends an image sequence together ignoring transparency.</p>
  5396. <p>Smush is a more flexible version of <a href="command-line-options.html#append">-append</a>, joining the images in the sequence top-to-bottom (<a href="command-line-options.html#smush">-smush</a>) or left-to-right (<a href="command-line-options.html#smush">+smush</a>), with a gap between images according to the specified offset.</p>
  5397. <p>If the offset is negative, images will overlap by that amount.</p>
  5398. <p><a href="command-line-options.html#smush">-smush</a> respects <a href="command-line-options.html#gravity">-gravity</a>. Any empty space will be filled with the <a href="command-line-options.html#background">-background</a> color.</p>
  5399. <p>For zero offset and transparent images, the non-transparent parts of the two images will be aligned as close as possible without overlapping.</p>
  5400. <div style="margin: auto;">
  5401. <h2><a class="anchor" id="snaps"></a>-snaps <var>value</var></h2>
  5402. </div>
  5403. <p class="magick-description">Set the number of screen snapshots.</p>
  5404. <p>Use this option to grab more than one image from the X server screen, to create an animation sequence.</p>
  5405. <div style="margin: auto;">
  5406. <h2><a class="anchor" id="solarize"></a>-solarize <var>percent-threshold</var></h2>
  5407. </div>
  5408. <p class="magick-description">Negate all pixels above the threshold level.</p>
  5409. <p>Specify <var>factor</var> as the percent threshold of the intensity (0 - 99.9%).</p>
  5410. <p>This option produces a <var>solarization</var> effect seen when
  5411. exposing a photographic film to light during the development process.</p>
  5412. <div style="margin: auto;">
  5413. <h2><a class="anchor" id="sort-pixels"></a>-sort-pixels</h2>
  5414. </div>
  5415. <p class="magick-description">sorts pixels within each scanline in ascending order of intensity.</p>
  5416. <div style="margin: auto;">
  5417. <h2><a class="anchor" id="sparse-color"></a>-sparse-color <var>method</var> '<var>x</var>,<var>y</var> <var>color</var> ...'</h2>
  5418. </div>
  5419. <p class="magick-description"> color the given image using the specified points of color, and filling the other intervening colors using the given methods. </p>
  5420. <div class="pre-scrollable bg-light text-dark mx-4">
  5421. <dl class="row">
  5422. <dt class="col-md-4">barycentric</dt>
  5423. <dd class="col-md-8">three point triangle of color given 3 points.
  5424. Giving only 2 points will form a linear gradient between those points.
  5425. The gradient generated extends beyond the triangle created by those
  5426. 3 points. </dd>
  5427. <dt class="col-md-4">bilinear</dt>
  5428. <dd class="col-md-8">Like barycentric but for 4 points. Less than 4 points
  5429. fall back to barycentric. </dd>
  5430. <dt class="col-md-4">voronoi</dt>
  5431. <dd class="col-md-8">Simply map each pixel to the to nearest color point
  5432. given. The result are polygonal 'cells' of solid color. </dd>
  5433. <dt class="col-md-4">manhattan</dt>
  5434. <dd class="col-md-8">Like voronoi, but resulting polygonal 'cells' are mapped to a fixed coordinate system.</dd>
  5435. <dt class="col-md-4">shepards</dt>
  5436. <dd class="col-md-8">Colors points biased on the ratio of inverse distance
  5437. squared. Generating spots of color in a sea of the average of
  5438. colors. </dd>
  5439. <dt class="col-md-4">inverse</dt>
  5440. <dd class="col-md-8">Colors points biased on the ratio of inverse distance.
  5441. This generates sharper points of color rather than rounded spots of
  5442. '<samp>shepards</samp>' Generating spots of color in a sea of the
  5443. average of colors. </dd>
  5444. </dl>
  5445. </div>
  5446. <p>The points are placed according to the images location on the virtual
  5447. canvas (<a href="command-line-options.html#page" >-page</a> or <a href="command-line-options.html#repage" >-repage</a>
  5448. offset), and do not actually have to exist on the given image, but may be
  5449. some point beyond the edge of the image. All points are floating point values.
  5450. </p>
  5451. <p>Only the color channels defined by the <a href="command-line-options.html#channel" >-channel</a> are
  5452. modified, which means that by default matte/alpha transparency channel is not
  5453. affected. Typically transparency channel is turned off either before or after
  5454. the operation. </p>
  5455. <p>Of course if some color points are transparent to generate a transparent
  5456. gradient, then the image also requires transparency enabled to store the
  5457. values. </p>
  5458. <p>All the above methods when given a single point of color will replace all
  5459. the colors in the image with the color given, regardless of the point. This is
  5460. logical, and provides an alternative technique to recolor an image to some
  5461. default value. </p>
  5462. <div style="margin: auto;">
  5463. <h2><a class="anchor" id="splice"></a>-splice <var>geometry</var></h2>
  5464. </div>
  5465. <p class="magick-description">Splice the current background color into the image.</p>
  5466. <p>This will add rows and columns of the current <a
  5467. href="command-line-options.html#background">-background</a> color into the given image according to the
  5468. given <a href="command-line-options.html#gravity">-gravity</a> geometry setting. See <a href="command-line-processing.html#geometry">Image Geometry</a> for complete details about the <em class="arg">geometry</em> argument. Essentially <a href="command-line-options.html#splice">-splice</a> will divide the
  5469. image into four quadrants, separating them by the inserted rows and columns.
  5470. </p>
  5471. <p>If a dimension of geometry is zero no rows or columns will be added for that
  5472. dimension. Similarly using a zero offset with the appropriate <a
  5473. href="command-line-options.html#gravity">-gravity</a> setting will add rows and columns to the edges of
  5474. the image, padding the image only along that one edge. Edge padding is what <a
  5475. href="command-line-options.html#splice">-splice</a> is most commonly used for. </p>
  5476. <p>If the exact same <var>geometry</var> and <a
  5477. href="command-line-options.html#gravity">-gravity</a> is later used with <a href="command-line-options.html#chop">-chop</a> the
  5478. added all splices removed. </p>
  5479. <div style="margin: auto;">
  5480. <h2><a class="anchor" id="spread"></a>-spread <var>amount</var></h2>
  5481. </div>
  5482. <p class="magick-description">Displace image pixels by a random amount.</p>
  5483. <p>The argument <var>amount</var> defines the size of the
  5484. neighborhood around each pixel from which to choose a candidate pixel to
  5485. blend.</p>
  5486. <p>The lookup is controlled by the <a href="command-line-options.html#interpolate">-interpolate</a> setting.</p>
  5487. <div style="margin: auto;">
  5488. <h2><a class="anchor" id="statistic"></a>-statistic <var>type</var> <var>geometry</var></h2>
  5489. </div>
  5490. <p class="magick-description">Replace each pixel with corresponding statistic from the neighborhood.</p>
  5491. <p>Choose from these statistic types:</p>
  5492. <div class="pre-scrollable bg-light text-dark mx-4">
  5493. <dl class="row">
  5494. <dt class="col-md-4">Contrast</dt><dd class="col-md-8">maximum difference (max - min) divided by (max + min) value in neighborhood</dd>
  5495. <dt class="col-md-4">Maximum</dt><dd class="col-md-8">maximum value per channel in neighborhood</dd>
  5496. <dt class="col-md-4">Gradient</dt><dd class="col-md-8">maximum difference (max - min) value in neighborhood</dd>
  5497. <dt class="col-md-4">Maximum</dt><dd class="col-md-8">maximum value per channel in neighborhood</dd>
  5498. <dt class="col-md-4">Minimum</dt><dd class="col-md-8">minimum value per channel in neighborhood</dd>
  5499. <dt class="col-md-4">Mean</dt><dd class="col-md-8">average value per channel in neighborhood</dd>
  5500. <dt class="col-md-4">Median</dt><dd class="col-md-8">median value per channel in neighborhood</dd>
  5501. <dt class="col-md-4">Mode</dt><dd class="col-md-8">mode (most frequent) value per channel in neighborhood</dd>
  5502. <dt class="col-md-4">Nonpeak</dt><dd class="col-md-8">value just before or after the median value per channel in neighborhood</dd>
  5503. <dt class="col-md-4">RMS</dt><dd class="col-md-8">root mean square value per channel in neighborhood</dd>
  5504. <dt class="col-md-4">StandardDeviation</dt><dd class="col-md-8"> standard deviation value per channel in neighborhood</dd>
  5505. </dl>
  5506. </div>
  5507. <div style="margin: auto;">
  5508. <h2><a class="anchor" id="stegano"></a>-stegano <var>offset</var></h2>
  5509. </div>
  5510. <p class="magick-description">Hide watermark within an image.</p>
  5511. <p>Use an offset to start the image hiding some number of pixels from the
  5512. beginning of the image. Note this offset and the image size. You will need
  5513. this information to recover the steganographic image (e.g. display -size
  5514. 320x256+35 stegano:image.png).</p>
  5515. <div style="margin: auto;">
  5516. <h2><a class="anchor" id="stereo"></a>-stereo <var>+x</var>{<var>+y</var>}</h2>
  5517. </div>
  5518. <p class="magick-description">Composite two images to create a red / cyan stereo anaglyph.</p>
  5519. <p>The left side of the stereo pair (second image) is saved as the red channel of the output image. The right side (first image) is saved as the green and blue channels. Red-green stereo glasses are required to properly view the stereo image.</p>
  5520. <div style="margin: auto;">
  5521. <h2><a class="anchor" id="storage-type"></a>-storage-type <var>type</var></h2>
  5522. </div>
  5523. <p class="magick-description">Pixel storage type. Here are the valid types:</p>
  5524. <div class="pre-scrollable bg-light text-dark mx-4">
  5525. <dl class="row">
  5526. <dt class="col-md-4">char</dt><dd class="col-md-8">unsigned characters</dd>
  5527. <dt class="col-md-4">double</dt><dd class="col-md-8">doubles</dd>
  5528. <dt class="col-md-4">float</dt><dd class="col-md-8">floats</dd>
  5529. <dt class="col-md-4">integer</dt><dd class="col-md-8">integers</dd>
  5530. <dt class="col-md-4">long</dt><dd class="col-md-8">longs</dd>
  5531. <dt class="col-md-4">quantum</dt><dd class="col-md-8">pixels in the native depth of your ImageMagick distribution</dd>
  5532. <dt class="col-md-4">short</dt><dd class="col-md-8">unsigned shorts</dd>
  5533. </dl>
  5534. </div>
  5535. <p>Float and double types are normalized from 0.0 to 1.0 otherwise the pixels
  5536. values range from 0 to the maximum value the storage type can support.</p>
  5537. <div style="margin: auto;">
  5538. <h2><a class="anchor" id="stretch"></a>-stretch <var>fontStretch</var></h2>
  5539. </div>
  5540. <p class="magick-description">Set a type of stretch style for fonts.</p>
  5541. <p>This setting suggests a type of stretch that ImageMagick should try to
  5542. apply to the currently selected font family. Select <var>fontStretch</var> from the following.</p>
  5543. <pre class="bg-light text-dark mx-4"><samp>Any
  5544. Condensed
  5545. Expanded
  5546. ExtraCondensed
  5547. ExtraExpanded
  5548. Normal
  5549. SemiCondensed
  5550. SemiExpanded
  5551. UltraCondensed
  5552. UltraExpanded
  5553. </samp></pre>
  5554. <p>To print a complete list of stretch types, use <a href="command-line-options.html#list">-list
  5555. stretch</a>.</p>
  5556. <p>For other settings that affect fonts, see the options <a
  5557. href="command-line-options.html#font">-font</a>, <a href="command-line-options.html#family">-family</a>, <a
  5558. href="command-line-options.html#style">-style</a>, and <a href="command-line-options.html#weight">-weight</a>. </p>
  5559. <div style="margin: auto;">
  5560. <h2><a class="anchor" id="strip"></a>-strip</h2>
  5561. </div>
  5562. <p class="magick-description">Strip the image of any profiles, comments or these PNG chunks: bKGD,cHRM,EXIF,gAMA,iCCP,iTXt,sRGB,tEXt,zCCP,zTXt,date. To remove the orientation chunk, <samp>orNT</samp>, set the orientation to undefined, e.g., <samp>-orient Undefined</samp>.</p>
  5563. <div style="margin: auto;">
  5564. <h2><a class="anchor" id="stroke"></a>-stroke <var>color</var></h2>
  5565. </div>
  5566. <p class="magick-description">Color to use when stroking a graphic primitive.</p>
  5567. <p>The color is specified using the format described under the <a href="command-line-options.html#fill">-fill</a> option.</p>
  5568. <p>See <a href="command-line-options.html#draw">-draw</a> for further details.</p>
  5569. <div style="margin: auto;">
  5570. <h2><a class="anchor" id="strokewidth"></a>-strokewidth <var>value</var></h2>
  5571. </div>
  5572. <p class="magick-description">Set the stroke width.</p>
  5573. <p>See <a href="command-line-options.html#draw">-draw</a> for further details.</p>
  5574. <div style="margin: auto;">
  5575. <h2><a class="anchor" id="style"></a>-style <var>fontStyle</var></h2>
  5576. </div>
  5577. <p class="magick-description">Set a font style for text.</p>
  5578. <p>This setting suggests a font style that ImageMagick should try to apply to
  5579. the currently selected font family. Select <var>fontStyle</var> from
  5580. the following.</p>
  5581. <pre class="bg-light text-dark mx-4"><samp>Any
  5582. Italic
  5583. Normal
  5584. Oblique
  5585. </samp></pre>
  5586. <p>For other settings that affect fonts, see the options <a
  5587. href="command-line-options.html#font">-font</a>, <a href="command-line-options.html#family">-family</a>, <a
  5588. href="command-line-options.html#stretch">-stretch</a>, and <a href="command-line-options.html#weight">-weight</a>. </p>
  5589. <div style="margin: auto;">
  5590. <h2><a class="anchor" id="subimage-search"></a>-subimage-search</h2>
  5591. </div>
  5592. <p class="magick-description">Search for subimage.</p>
  5593. <p>This option is required to have compare search for the best match location
  5594. of a small image within a larger image. This search will produce two images
  5595. (or two frames). The first is the "difference" image and the second will
  5596. be the "match score" image.</p>
  5597. <p>The "match-score" image is smaller containing a pixel for ever possible
  5598. position of the top-left corner of the given sub-image. that is its size will
  5599. be the size of the larger_image - sub_image + 1. The brightest location in
  5600. this image is the location s the locate on the best match that is also
  5601. reported. Note that this may or may not be a perfect match, and the actual
  5602. brightness will reflect this. Other bright 'peaks' can be used to locate other
  5603. possible matching locations. </p>
  5604. <p>Note that the search will try to compare the sub-image at every possible
  5605. location in the larger image, as such it can be very slow. The smaller the
  5606. sub-image the faster this search is. </p>
  5607. <div style="margin: auto;">
  5608. <h2><a class="anchor" id="swap"></a>-swap <var>index,index</var></h2>
  5609. </div>
  5610. <p class="magick-description">Swap the positions of two images in the image sequence.</p>
  5611. <p>For example, <a href="command-line-options.html#swap">-swap 0,2</a> swaps the first and the third
  5612. images in the current image sequence. Use <a href="command-line-options.html#swap">+swap</a> to switch
  5613. the last two images in the sequence.</p>
  5614. <div style="margin: auto;">
  5615. <h2><a class="anchor" id="swirl"></a>-swirl <var>degrees</var></h2>
  5616. </div>
  5617. <p class="magick-description">Swirl image pixels about the center.</p>
  5618. <p><var>Degrees</var> defines the tightness of the swirl.</p>
  5619. <div style="margin: auto;">
  5620. <h2><a class="anchor" id="synchronize"></a>-synchronize</h2>
  5621. </div>
  5622. <p class="magick-description">Synchronize image to storage device.</p>
  5623. <p>Set to "true" to ensure all image data is fully flushed and synchronized
  5624. to disk. There is a performance penalty, but the benefits include ensuring a
  5625. valid image file in the event of a system crash and early reporting if there
  5626. is not enough disk space for the image pixel cache.</p>
  5627. <div style="margin: auto;">
  5628. <h2><a class="anchor" id="taint"></a>-taint</h2>
  5629. </div>
  5630. <p class="magick-description">Mark the image as modified.</p>
  5631. <div style="margin: auto;">
  5632. <h2><a class="anchor" id="text-font"></a>-text-font <var>name</var></h2>
  5633. </div>
  5634. <p class="magick-description">Font for writing fixed-width text.</p>
  5635. <p>Specifies the name of the preferred font to use in fixed (typewriter style)
  5636. formatted text. The default is 14 point <var>Courier</var>.</p>
  5637. <p>You can tag a font to specify whether it is a PostScript, TrueType, or
  5638. OPTION1 font. For example, <samp>Courier.ttf</samp> is a TrueType font and
  5639. <samp>x:fixed</samp> is OPTION1.</p>
  5640. <div style="margin: auto;">
  5641. <h2><a class="anchor" id="texture"></a>-texture <var>filename</var></h2>
  5642. </div>
  5643. <p class="magick-description">Name of texture to tile onto the image background.</p>
  5644. <div style="margin: auto;">
  5645. <h2><a class="anchor" id="threshold"></a>-threshold <var>value</var>{<var>%</var>}</h2>
  5646. </div>
  5647. <!-- {<var>green,blue,opacity</var>}
  5648. <p>If the green or blue value is omitted, these channels use the same value as
  5649. the first one provided. If all three color values are the same, the result is
  5650. a bi-level image. If the opacity threshold is omitted, OpaqueOpacity is used
  5651. and any partially transparent pixel becomes fully transparent.</p>
  5652. -->
  5653. <p class="magick-description">Apply simultaneous black/white threshold to the image.</p>
  5654. <p>Any pixel values (more specifically, those channels set using <a class="text-nowrap" href="command-line-options.html#channel">-channel</a>) that exceed the specified threshold are reassigned the
  5655. maximum channel value, while all other values are assigned the minimum.</p>
  5656. <p> The threshold value can be given as a percentage or as an absolute integer
  5657. value corresponding to the desired channel value. When given as an integer,
  5658. the minimum attainable value is 0 (corresponding to black when all channels
  5659. are affected), but the maximum value (corresponding to white) is that of the
  5660. <samp>quantum depth</samp> of the particular build of ImageMagick, and is
  5661. therefore dependent on the installation. For that reason, a reasonable
  5662. recommendation for most applications is to specify the threshold values as
  5663. a percentage. </p>
  5664. <p> The following would force pixels with red values above 50% to have 100%
  5665. red values, while those at or below 50% red would be set to 0 in the red
  5666. channel. The green, blue, and alpha channels (if present) would be unchanged.
  5667. </p>
  5668. <pre class="bg-light text-dark mx-4 cli"><samp>magick in.png -channel red -threshold 50% out.png
  5669. </samp></pre>
  5670. <p>As (possibly) impractical but instructive examples, the following would
  5671. generate an all-black and an all-white image with the same dimensions as the
  5672. input image.</p>
  5673. <pre class="bg-light text-dark mx-4 cli"><samp>magick in.png -channel RGB -threshold 100% black.png
  5674. convert in.png -channel RGB -threshold -1 white.png
  5675. </samp></pre>
  5676. <p> See also <a class="text-nowrap" href="command-line-options.html#black-threshold">-black-threshold</a> and <a class="text-nowrap" href="command-line-options.html#white-threshold">-white-threshold</a>.
  5677. </p>
  5678. <div style="margin: auto;">
  5679. <h2><a class="anchor" id="thumbnail"></a>-thumbnail <var>geometry</var></h2>
  5680. </div>
  5681. <p class="magick-description">Create a thumbnail of the image.</p>
  5682. <p>This is similar to <a href="command-line-options.html#resize">-resize</a>, except it is optimized
  5683. for performance. In addition, comments and color profiles are removed, and <samp>Thumb</samp> properties are set. This option respects <a href="command-line-options.html#filter">-filter</a>, e.g., for additional performance but with a slight degradation in quality, use <samp>-filter box</samp>.</p>
  5684. <p>See <a href="command-line-processing.html#geometry">Image Geometry</a> for complete details about the <em class="arg">geometry</em> argument.</p>
  5685. <div style="margin: auto;">
  5686. <h2><a class="anchor" id="tile"></a>-tile <var>filename</var></h2>
  5687. </div>
  5688. <p class="magick-description">Set the tile image used for filling a subsequent graphic primitive.</p>
  5689. <div style="margin: auto;">
  5690. <h2>-tile <var>geometry</var></h2>
  5691. </div>
  5692. <p class="magick-description">Specify the layout of images.</p>
  5693. <p>See <a href="command-line-processing.html#geometry">Image Geometry</a> for complete details about the <em class="arg">geometry</em> argument.</p>
  5694. <div style="margin: auto;">
  5695. <h2>-tile</h2>
  5696. </div>
  5697. <p class="magick-description">Specifies that a subsequent composite operation is repeated across and down image.</p>
  5698. <div style="margin: auto;">
  5699. <h2><a class="anchor" id="tile-offset"></a>-tile-offset {<var>+-</var>}<var>x</var>{<var>+-</var>}<var>y</var></h2>
  5700. </div>
  5701. <p class="magick-description">Specify the offset for tile images, relative to the background image it is tiled on.</p>
  5702. <p>This should be set before the tiling image is set by <a href="command-line-options.html#tile"
  5703. >-tile</a> or <a href="command-line-options.html#texture" >-texture</a>, or directly applied for
  5704. creating a tiled canvas using <samp>TILE:</samp> or <samp>PATTERN:</samp> input
  5705. formats. </p>
  5706. <p>Internally ImageMagick does a <a href="command-line-options.html#roll" >-roll</a> of the tile image
  5707. by the arguments given when the tile image is set. </p>
  5708. <div style="margin: auto;">
  5709. <h2><a class="anchor" id="tint"></a>-tint <var>value</var></h2>
  5710. </div>
  5711. <p class="magick-description">Tint the image with the fill color.</p>
  5712. <p>Tint the image with the fill color.</p>
  5713. <p>Specify the amount of tinting as a percentage. Pure colors like black,
  5714. white red, yellow, will not be affected by -tint. Only mid-range colors such
  5715. as the various shades of grey.</p>
  5716. <div style="margin: auto;">
  5717. <h2><a class="anchor" id="title"></a>-title <var>string</var></h2>
  5718. </div>
  5719. <p class="magick-description">Assign a title to displayed image.", "animate", "display", "montage</p>
  5720. <p>Use this option to assign a specific title to the image. This assigned to
  5721. the image window and is typically displayed in the window title bar.
  5722. Optionally you can include the image filename, type, width, height, Exif data,
  5723. or other image attribute by embedding special format characters described
  5724. under the <a href="command-line-options.html#format">-format</a> option.</p>
  5725. <p>For example,</p>
  5726. <pre class="bg-light text-dark mx-4"><samp>-title "%m:%f %wx%h"
  5727. </samp></pre>
  5728. <p>produces an image title of <samp>MIFF:bird.miff 512x480</samp> for an image
  5729. titled <samp>bird.miff</samp> and whose width is 512 and height is 480.</p>
  5730. <div style="margin: auto;">
  5731. <h2><a class="anchor" id="transform"></a>-transform</h2>
  5732. </div>
  5733. <p class="magick-description">Transform the image.</p>
  5734. <p>This option applies the transformation matrix from a previous <a href="command-line-options.html#affine">-affine</a> option.</p>
  5735. <pre class="bg-light text-dark mx-4 cli"><samp>magick -affine 2,2,-2,2,0,0 -transform bird.ppm bird.jpg
  5736. </samp></pre>
  5737. <p>This operator has been now been superseded by the <a
  5738. href="command-line-options.html#distort">-distort</a> '<samp>AffineProjection</samp>' method. </p>
  5739. <div style="margin: auto;">
  5740. <h2><a class="anchor" id="transparent"></a>-transparent <var>color</var></h2>
  5741. </div>
  5742. <p class="magick-description">Make this color transparent within the image.</p>
  5743. <p>The <var>color</var> argument is defined using the format
  5744. described under the <a href="command-line-options.html#fill">-fill</a> option. The <a href="command-line-options.html#fuzz"
  5745. >-fuzz</a> setting can be used to match and replace colors similar to the one
  5746. given. </p>
  5747. <p>Use <a href="command-line-options.html#transparent" >+transparent</a> to invert the pixels matched.
  5748. that is make all non-matching colors transparent. </p>
  5749. <p>The <a href="command-line-options.html#opaque">-opaque</a> operator is exactly the same as <a
  5750. href="command-line-options.html#transparent" >-transparent</a> but replaces the matching color with the
  5751. current <a href="command-line-options.html#fill">-fill</a> color setting, rather than transparent.
  5752. However the <a href="command-line-options.html#transparent" >-transparent</a> operator also ensures
  5753. that the image has an alpha channel enabled, as per "<samp><a href="command-line-options.html#alpha"
  5754. >-alpha</a> set</samp>", and does not require you to modify the <a
  5755. href="command-line-options.html#channel">-channel</a> to enable alpha channel handling. </p>
  5756. <p>Note that this does not define the color as being the 'transparency color'
  5757. used for color-mapped image formats, such as GIF. For that use <a
  5758. href="command-line-options.html#transparent-color" >-transparent-color</a> </p>
  5759. <div style="margin: auto;">
  5760. <h2><a class="anchor" id="transparent-color"></a>-transparent-color <var>color</var></h2>
  5761. </div>
  5762. <p class="magick-description">Set the transparent color.</p>
  5763. <p>Sometimes this is used for saving to image formats such as
  5764. GIF and PNG8 which uses this color to represent boolean transparency. This
  5765. does not make a color transparent, it only defines what color the transparent
  5766. color is in the color palette of the saved image. Use <a
  5767. href="command-line-options.html#transparent">-transparent</a> to make an opaque color transparent.</p>
  5768. <p>This option allows you to have both an opaque visible color, as well as a
  5769. transparent color of the same color value without conflict. That is, you can
  5770. use the same color for both the transparent and opaque color areas within an
  5771. image. This, in turn, frees to you to select a transparent color that is
  5772. appropriate when an image is displayed by an application that does not handle a
  5773. transparent color index, while allowing ImageMagick to correctly handle images of this
  5774. type. </p>
  5775. <p>The default transparent color is <samp>#00000000</samp>, which is fully transparent black.</p>
  5776. <div style="margin: auto;">
  5777. <h2><a class="anchor" id="transpose"></a>-transpose</h2>
  5778. </div>
  5779. <p class="magick-description">Mirror the image along the top-left to bottom-right diagonal.</p>
  5780. <p> This option mathematically transposes the pixel array. It is equivalent to the sequence <samp>-flip -rotate 90</samp>.
  5781. </p>
  5782. <div style="margin: auto;">
  5783. <h2><a class="anchor" id="transverse"></a>-transverse</h2>
  5784. </div>
  5785. <p class="magick-description">Mirror the image along the images bottom-left top-right diagonal. Equivalent to the operations <samp>-flop -rotate 90</samp>.</p>
  5786. <div style="margin: auto;">
  5787. <h2><a class="anchor" id="treedepth"></a>-treedepth <var>value</var></h2>
  5788. </div>
  5789. <p class="magick-description">Tree depth for the color reduction algorithm.</p>
  5790. <p>Normally, this integer value is zero or one. A value of zero or one causes
  5791. the use of an optimal tree depth for the color reduction algorithm.</p>
  5792. <p>An optimal depth generally allows the best representation of the source
  5793. image with the fastest computational speed and the least amount of memory.
  5794. However, the default depth is inappropriate for some images. To assure the
  5795. best representation, try values between 2 and 8 for this parameter. Refer to
  5796. the <a href="../www/quantize.html"
  5797. >color reduction algorithm</a> for more details.</p>
  5798. <p>The <a href="command-line-options.html#colors">-colors</a> or <a href="command-line-options.html#monochrome">-monochrome</a>
  5799. option, or writing to an image format which requires color reduction, is
  5800. required for this option to take effect.</p>
  5801. <div style="margin: auto;">
  5802. <h2><a class="anchor" id="trim"></a>-trim</h2>
  5803. </div>
  5804. <p class="magick-description">Trim an image.</p>
  5805. <p>This option removes any edges that are exactly the same color as the corner
  5806. pixels. Use <a href="command-line-options.html#fuzz">-fuzz</a> to make <a href="command-line-options.html#trim">-trim</a> remove
  5807. edges that are nearly the same color as the corner pixels.</p>
  5808. <p>The page or virtual canvas information of the image is preserved allowing
  5809. you to extract the result of the <a href="command-line-options.html#trim">-trim</a> operation from the
  5810. image. Use a <a href="command-line-options.html#repage">+repage</a> to remove the virtual canvas page
  5811. information if it is unwanted.</p>
  5812. <p>If the trimmed image 'disappears' a warning is produced, and a special
  5813. single pixel transparent 'missed' image is returned, in the same way as when a
  5814. <a href="command-line-options.html#crop">-crop</a> operation 'misses' the image proper. </p>
  5815. <p>Use <samp><a href="command-line-options.html#define">-define</a> trim:percent-background=0%</samp> to
  5816. remove all the background from the image. The amount of background that is
  5817. tolerated in an edge specified as a percent. 0% means no background is tolerated.
  5818. 50% means an edge can contain up to 50% pixels that are background per the fuzz-factor.</p>
  5819. <p>Use <samp><a href="command-line-options.html#define">-define</a> trim:edges={north,east,south,west}</samp> separated by commas to only trim the specified edges of the image, e.g. <samp>-define trim:edges=north,south -fuzz 5% -trim</samp>.</p>
  5820. <p>Use <samp><a href="command-line-options.html#define">-define</a> trim:minSize=<var>geometry</var></samp> limit the trim to the specified size.</p>
  5821. <p>Use <samp><a href="command-line-options.html#background">-background</a> <em>background-color</em></samp> to
  5822. identify background color surrounding the region of interest.</p>
  5823. <div style="margin: auto;">
  5824. <h2><a class="anchor" id="type"></a>-type <var>type</var></h2>
  5825. </div>
  5826. <p class="magick-description">The image type.</p> <p>Choose from: <samp>Bilevel</samp>,
  5827. <samp>Grayscale</samp>, <samp>GrayscaleAlpha</samp>, <samp>Palette</samp>,
  5828. <samp>PaletteAlpha</samp>, <samp>TrueColor</samp>, <samp>TrueColorAlpha</samp>,
  5829. <samp>ColorSeparation</samp>, or <samp>ColorSeparationAlpha</samp>.</p>
  5830. <p>Normally, when a format supports different subformats such as grayscale and
  5831. truecolor, the encoder will try to choose an efficient subformat. The <a
  5832. href="command-line-options.html#type">-type</a> option can be used to override this behavior. For
  5833. example, to prevent a JPEG from being written in grayscale format even though
  5834. only gray pixels are present, use.</p>
  5835. <pre class="bg-light text-dark mx-4 cli"><samp>magick bird.png -type TrueColor bird.jpg
  5836. </samp></pre>
  5837. <p>Similarly, use <a href="command-line-options.html#type">-type TrueColorAlpha</a> to force the
  5838. encoder to write an alpha channel even though the image is opaque, if the
  5839. output format supports transparency.</p>
  5840. <p>Use <a href="command-line-options.html#type">-type optimize</a> to ensure the image is written in the smallest possible file size.</p>
  5841. <div style="margin: auto;">
  5842. <h2><a class="anchor" id="undercolor"></a>-undercolor <var>color</var></h2>
  5843. </div>
  5844. <p class="magick-description">Set the color of the annotation bounding box.</p>
  5845. <p>The color is specified using the format described under the <a href="command-line-options.html#fill">-fill</a> option.</p>
  5846. <p>See <a href="command-line-options.html#draw">-draw</a> for further details.</p>
  5847. <div style="margin: auto;">
  5848. <h2><a class="anchor" id="update"></a>-update <var>seconds</var></h2>
  5849. </div>
  5850. <p class="magick-description">Detect when image file is modified and redisplay.</p>
  5851. <p>Suppose that while you are displaying an image the file that is currently
  5852. displayed is over-written. <samp>display</samp> will automagically detect that
  5853. the input file has been changed and update the displayed image
  5854. accordingly.</p>
  5855. <div style="margin: auto;">
  5856. <h2><a class="anchor" id="unique-colors"></a>-unique-colors</h2>
  5857. </div>
  5858. <p class="magick-description">Discard all but one of any pixel color.</p>
  5859. <div style="margin: auto;">
  5860. <h2><a class="anchor" id="units"></a>-units <var>type</var></h2>
  5861. </div>
  5862. <p class="magick-description">The units of image resolution.</p>
  5863. <p>Choose from: <samp>Undefined</samp>, <samp>PixelsPerInch</samp>, or
  5864. <samp>PixelsPerCentimeter</samp>. This option is normally used in conjunction
  5865. with the <a href="command-line-options.html#density">-density</a> option.</p>
  5866. <div style="margin: auto;">
  5867. <h2><a class="anchor" id="unsharp"></a>-unsharp <var>radius</var><br />-unsharp <var>radius</var>{x<var>sigma</var>}{<var>+gain</var>}{<var>+threshold</var>}</h2>
  5868. </div>
  5869. <p class="magick-description">Sharpen the image with an unsharp mask operator.</p>
  5870. <p>The <a href="command-line-options.html#unsharp">-unsharp</a> option sharpens an image. The image is
  5871. convolved with a Gaussian operator of the given radius and standard deviation
  5872. (sigma). For reasonable results, radius should be larger than sigma. Use
  5873. a radius of 0 to have the method select a suitable radius.</p>
  5874. <p>The <var>sigma</var> value is the important argument, and
  5875. determines the actual amount of sharpening that will take place. </p>
  5876. <p>The <var>radius</var> is only used to determine the size of the
  5877. array which holds the calculated Gaussian distribution. It should be an
  5878. integer. If not given, or set to zero, IM will calculate the largest possible
  5879. radius that will provide meaningful results for the Gaussian distribution.
  5880. </p>
  5881. <p>The parameters are:</p>
  5882. <div class="pre-scrollable bg-light text-dark mx-4">
  5883. <dl class="row">
  5884. <dt class="col-md-4">radius</dt>
  5885. <dd class="col-md-8">The radius of the Gaussian, in pixels, not counting the center pixel (default 0).</dd>
  5886. <dt class="col-md-4">sigma</dt>
  5887. <dd class="col-md-8">The standard deviation of the Gaussian, in pixels (default 1.0).</dd>
  5888. <dt class="col-md-4">gain</dt>
  5889. <dd class="col-md-8">The fraction of the difference between the original and the blur image that is added back into the original (default 1.0).</dd>
  5890. <dt class="col-md-4">threshold</dt>
  5891. <dd class="col-md-8">The threshold, as a fraction of <var>QuantumRange</var>, needed to apply the difference amount (default 0.05).</dd>
  5892. </dl>
  5893. </div>
  5894. <div style="margin: auto;">
  5895. <h2><a class="anchor" id="verbose"></a>-verbose</h2>
  5896. </div>
  5897. <p class="magick-description">Print detailed information about the image when this option precedes the <a href="command-line-options.html#identify">-identify</a> option or <samp>info:</samp>.</p>
  5898. <div style="margin: auto;">
  5899. <h2><a class="anchor" id="version"></a>-version</h2>
  5900. </div>
  5901. <p class="magick-description">Print ImageMagick version string and exit.</p>
  5902. <div style="margin: auto;">
  5903. <h2><a class="anchor" id="view"></a>-view <var>string</var></h2>
  5904. </div>
  5905. <p class="magick-description">FlashPix viewing parameters.</p>
  5906. <div style="margin: auto;">
  5907. <h2><a class="anchor" id="vignette"></a>-vignette <var>radius</var>{x<var>sigma</var>}{<var>+-</var>}<var>x</var>{<var>+-</var>}<var>y</var>{<var>%</var>}</h2>
  5908. </div>
  5909. <p class="magick-description">Soften the edges of the image in vignette style.</p>
  5910. <p>The vignette effect rolloff is controlled by radiusxsigma. For nominal rolloff, this would be set to 0xsigma. A value of 0x0 will produce a circle/ellipse with no rolloff. The arguments x and y control the size of the circle. Larger values decrease the radii and smaller values increase the radii. Values of +0+0 will generate a circle/ellipse the same size as the image. The default values for x and y are 10% of the corresponding image dimension. Thus, the radii will be decreased by 10%, i.e., the diameters of the circle/ellipse will be 80% of the corresponding image dimension. Note, the percent symbol in a geometry affects <var>x</var> and <var>y</var>, whereas <var>radius</var> and <var>sigma</var> are absolute (e.g., <samp>-vignette "0x2+10%+10%").</p>
  5911. <div style="margin: auto;">
  5912. <h2><a class="anchor" id="virtual-pixel"></a>-virtual-pixel <var>method</var></h2>
  5913. </div>
  5914. <p class="magick-description">Specify contents of <var>virtual pixels</var>.</p>
  5915. <p>This option defines what color source should be used if and when a color
  5916. lookup completely 'misses' the source image. The color(s) that appear to
  5917. surround the source image. Generally this color is derived from the source
  5918. image, but could also be set to a specify background color. </p>
  5919. <p>Choose from these methods:</p>
  5920. <div class="pre-scrollable bg-light text-dark mx-4">
  5921. <dl class="row">
  5922. <dt class="col-md-4">background</dt><dd class="col-md-8">the area surrounding the image is the background color</dd>
  5923. <dt class="col-md-4">black</dt><dd class="col-md-8">the area surrounding the image is black</dd>
  5924. <dt class="col-md-4">checker-tile</dt><dd class="col-md-8">alternate squares with image and background color</dd>
  5925. <dt class="col-md-4">dither</dt><dd class="col-md-8">non-random 32x32 dithered pattern</dd>
  5926. <dt class="col-md-4">edge</dt><dd class="col-md-8">extend the edge pixel toward infinity</dd>
  5927. <dt class="col-md-4">gray</dt><dd class="col-md-8">the area surrounding the image is gray</dd>
  5928. <dt class="col-md-4">horizontal-tile</dt><dd class="col-md-8">horizontally tile the image, background color above/below</dd>
  5929. <dt class="col-md-4">horizontal-tile-edge</dt><dd class="col-md-8">horizontally tile the image and replicate the side edge pixels</dd>
  5930. <dt class="col-md-4">mirror</dt><dd class="col-md-8">mirror tile the image</dd>
  5931. <dt class="col-md-4">random</dt><dd class="col-md-8">choose a random pixel from the image</dd>
  5932. <dt class="col-md-4">tile</dt><dd class="col-md-8">tile the image (default)</dd>
  5933. <dt class="col-md-4">transparent</dt><dd class="col-md-8">the area surrounding the image is transparent blackness</dd>
  5934. <dt class="col-md-4">vertical-tile</dt><dd class="col-md-8">vertically tile the image, sides are background color</dd>
  5935. <dt class="col-md-4">vertical-tile-edge</dt><dd class="col-md-8">vertically tile the image and replicate the side edge pixels</dd>
  5936. <dt class="col-md-4">white</dt><dd class="col-md-8">the area surrounding the image is white</dd>
  5937. </dl>
  5938. </div>
  5939. <p>The default value is "edge".</p>
  5940. <p>This most important for distortion operators such as <a href="command-line-options.html#distort"
  5941. >-distort</a>, <a href="command-line-options.html#implode" >-implode</a>, and <a href="command-line-options.html#fx" >-fx</a>.
  5942. However it also affects operations that may access pixels just outside the
  5943. image proper, such as <a href="command-line-options.html#convolve">-convolve</a>, <a
  5944. href="command-line-options.html#blur">-blur</a>, and <a href="command-line-options.html#sharpen">-sharpen</a>. </p>
  5945. <p>To print a complete list of virtual pixel types, use the <a
  5946. href="command-line-options.html#list">-list virtual-pixel</a> option.</p>
  5947. <div style="margin: auto;">
  5948. <h2><a class="anchor" id="visual"></a>-visual <var>type</var></h2>
  5949. </div>
  5950. <p class="magick-description">Animate images using this X visual type.", 'animate', 'display'</p>
  5951. <p>Choose from these visual classes:</p>
  5952. <pre class="bg-light text-dark mx-4"><samp>StaticGray TrueColor
  5953. GrayScale DirectColor
  5954. StaticColor default
  5955. PseudoColor visual id
  5956. </samp></pre>
  5957. <p>The X server must support the visual you choose, otherwise an error occurs.
  5958. If a visual is not specified, the visual class that can display the most
  5959. simultaneous colors on the default screen is chosen.</p>
  5960. <div style="margin: auto;">
  5961. <h2><a class="anchor" id="watermark"></a>-watermark <var>brightness</var>x<var>saturation</var></h2>
  5962. </div>
  5963. <p class="magick-description">Watermark an image using the given percentages of brightness and saturation.</p>
  5964. <p>Take a grayscale image (with alpha mask) and modify the destination image's
  5965. brightness according to watermark image's grayscale value and the
  5966. <var>brightness</var> percentage. The destinations color saturation
  5967. attribute is just direct modified by the <var>saturation</var>
  5968. percentage, which defaults to 100 percent (no color change). </p>
  5969. <div style="margin: auto;">
  5970. <h2><a class="anchor" id="wave"></a>-wave <var>amplitude</var><br />-wave <var>amplitude</var>x<var>wavelength</var></h2>
  5971. </div>
  5972. <p class="magick-description">Shear the columns of an image into a sine wave.</p>
  5973. <div style="margin: auto;">
  5974. <h2><a class="anchor" id="wavelet-denoise"></a>-wavelet-denoise <var>threshold</var><br />-wavelet-denoise <var>threshold</var>x<var>softness</var></h2>
  5975. </div>
  5976. <p class="magick-description">Removes noise from the image using a wavelet transform. The threshold is the value below which everything is considered noise and ranges from 0.0 (none) to QuantumRange or use percent (e.g. 5%). Softness attenuates the threshold and typically ranges from 0.0 (none, default) to 1.0. The higher the value, the more noise that remains in the image.</p>
  5977. <div style="margin: auto;">
  5978. <h2><a class="anchor" id="weight"></a>-weight <var>fontWeight</var></h2>
  5979. </div>
  5980. <p class="magick-description">Set a font weight for text.</p>
  5981. <p>This setting suggests a font weight that ImageMagick should try to apply to
  5982. the currently selected font family. Use a positive integer for
  5983. <var>fontWeight</var> or select from the following.</p>
  5984. <div class="pre-scrollable bg-light text-dark mx-4">
  5985. <dl class="row">
  5986. <dt class="col-md-4">Thin </dt>
  5987. <dd class="col-md-8">Same as <var>fontWeight</var> = 100.</dd>
  5988. <dt class="col-md-4">ExtraLight </dt>
  5989. <dd class="col-md-8">Same as <var>fontWeight</var> = 200.</dd>
  5990. <dt class="col-md-4">Light </dt>
  5991. <dd class="col-md-8">Same as <var>fontWeight</var> = 300.</dd>
  5992. <dt class="col-md-4">Normal </dt>
  5993. <dd class="col-md-8">Same as <var>fontWeight</var> = 400.</dd>
  5994. <dt class="col-md-4">Medium </dt>
  5995. <dd class="col-md-8">Same as <var>fontWeight</var> = 500.</dd>
  5996. <dt class="col-md-4">DemiBold </dt>
  5997. <dd class="col-md-8">Same as <var>fontWeight</var> = 600.</dd>
  5998. <dt class="col-md-4">Bold </dt>
  5999. <dd class="col-md-8">Same as <var>fontWeight</var> = 700.</dd>
  6000. <dt class="col-md-4">ExtraBold </dt>
  6001. <dd class="col-md-8">Same as <var>fontWeight</var> = 800.</dd>
  6002. <dt class="col-md-4">Heavy </dt>
  6003. <dd class="col-md-8">Same as <var>fontWeight</var> = 900.</dd>
  6004. </dl>
  6005. </div>
  6006. <br/>
  6007. <p>To print a complete list of weight types, use <a href="command-line-options.html#list">-list weight</a>.</p>
  6008. <p>For other settings that affect fonts, see the options <a
  6009. href="command-line-options.html#font">-font</a>, <a href="command-line-options.html#family">-family</a>, <a
  6010. href="command-line-options.html#stretch">-stretch</a>, and <a href="command-line-options.html#style">-style</a>. </p>
  6011. <div style="margin: auto;">
  6012. <h2><a class="anchor" id="white-balance"></a>-white-balance</h2>
  6013. </div>
  6014. <p>Applies white balancing to an image according to a grayworld assumption in the LAB colorspace.</p>
  6015. <p>Use <kbd>-define white-balance:vibrance=<em>value{%}</em></kdb> to change the color vibrance of the a &amp; b channels.</p>
  6016. <div style="margin: auto;">
  6017. <h2><a class="anchor" id="white-point"></a>-white-point <var>x,y</var></h2>
  6018. </div>
  6019. <p class="magick-description">Chromaticity white point.</p>
  6020. <div style="margin: auto;">
  6021. <h2><a class="anchor" id="white-threshold"></a>-white-threshold <var>value</var>{<var>%</var>}</h2>
  6022. </div>
  6023. <p class="magick-description">Force to white all pixels above the threshold while leaving all pixels at or below the threshold unchanged.</p>
  6024. <p> The threshold value can be given as a percentage or as an absolute integer
  6025. value within [0, <var>QuantumRange</var>] corresponding to the
  6026. desired <a class="text-nowrap" href="command-line-options.html#channel">-channel</a> value. See <a class="text-nowrap" href="command-line-options.html#threshold">-threshold</a>for more details on thresholds and resulting values. </p>
  6027. <div style="margin: auto;">
  6028. <h2><a class="anchor" id="window"></a>-window <var>id</var></h2>
  6029. </div>
  6030. <p class="magick-description">Make the image the background of a window.", 'animate', 'display'</p>
  6031. <p><var>id</var> can be a window id or name. Specify <samp>root</samp>
  6032. to select X's root window as the target window.</p>
  6033. <p>By default the image is tiled onto the background of the target window. If
  6034. <samp>backdrop</samp> or <a href="command-line-options.html#geometry">-resize</a> are specified, the
  6035. image is surrounded by the background color. Refer to <samp>X RESOURCES</samp>
  6036. for details.</p>
  6037. <p>The image will not display on the root window if the image has more unique
  6038. colors than the target window colormap allows. Use <a
  6039. href="command-line-options.html#colors">-colors</a> to reduce the number of colors.</p>
  6040. <div style="margin: auto;">
  6041. <h2><a class="anchor" id="window-group"></a>-window-group</h2>
  6042. </div>
  6043. <p class="magick-description">Specify the window group.</p>
  6044. <div style="margin: auto;">
  6045. <h2><a class="anchor" id="word-break"></a>-word-break <var>type</var></h2>
  6046. </div>
  6047. <p class="magick-description">Sets whether line breaks appear wherever the text would otherwise overflow its content box. Choose from <samp>normal</samp>, the default, or <samp>break-word</samp>.</p>
  6048. <div style="margin: auto;">
  6049. <h2><a class="anchor" id="write"></a>-write <var>filename</var></h2>
  6050. </div>
  6051. <p class="magick-description">Write an image sequence.</p>
  6052. <p>The image sequence preceding the <a href="command-line-options.html#write">-write</a> <var>filename</var> option is written out, and processing continues with the same image in its current state if there are additional options. To restore the image to its original state after writing it, use the <a href="command-line-options.html#write">+write</a> <var>filename</var> option.</p>
  6053. <p>Use <a href="command-line-options.html#compress">-compress</a> to specify the type of image compression.</p>
  6054. <div style="margin: auto;">
  6055. <h2><a class="anchor" id="write-mask"></a>-write-mask <var>filename</var></h2>
  6056. </div>
  6057. <p class="magick-description">Prevent updates to image pixels specified by the mask.</p>
  6058. <p>This the same as using a mask used for composite masking operations, with
  6059. grayscale values causing blended updates of the image the mask is attached to.
  6060. </p>
  6061. <p>Use <a href="command-line-options.html#write-mask">+write-mask</a> to remove the mask from images.</p>
  6062. <p>Also see <a href="command-line-options.html#clip-mask">-clip-mask</a> which work in the same way,
  6063. but with strict boolean masking. </p>
  6064. </div>
  6065. </div>
  6066. </div>
  6067. </main><!-- /.container -->
  6068. <footer class="magick-footer">
  6069. <div class="container-fluid">
  6070. <a href="security-policy.html">Security</a> •
  6071. <a href="news.html">News</a>
  6072. <a href="command-line-options.html#"><img class="d-inline" id="wand" alt="And Now a Touch of Magick" width="16" height="16" src="../images/wand.ico"/></a>
  6073. <a href="links.html">Related</a> •
  6074. <a href="sitemap.html">Sitemap</a>
  6075. <br/>
  6076. <a href="support.html">Sponsor</a> •
  6077. <a href="cite.html">Cite</a> •
  6078. <a href="http://pgp.mit.edu/pks/lookup?op=get&amp;search=0x89AB63D48277377A">Public Key</a> •
  6079. <a href="https://imagemagick.org/script/contact.php">Contact Us</a>
  6080. <br/>
  6081. <a href="https://github.com/imagemagick/imagemagick" target="_blank" rel="noopener" aria-label="GitHub"><svg xmlns="http://www.w3.org/2000/svg" class="navbar-nav-svg" viewBox="0 0 512 499.36" width="2%" height="2%" role="img" focusable="false"><title>GitHub</title><path fill="currentColor" fill-rule="evenodd" d="M256 0C114.64 0 0 114.61 0 256c0 113.09 73.34 209 175.08 242.9 12.8 2.35 17.47-5.56 17.47-12.34 0-6.08-.22-22.18-.35-43.54-71.2 15.49-86.2-34.34-86.2-34.34-11.64-29.57-28.42-37.45-28.42-37.45-23.27-15.84 1.73-15.55 1.73-15.55 25.69 1.81 39.21 26.38 39.21 26.38 22.84 39.12 59.92 27.82 74.5 21.27 2.33-16.54 8.94-27.82 16.25-34.22-56.84-6.43-116.6-28.43-116.6-126.49 0-27.95 10-50.8 26.35-68.69-2.63-6.48-11.42-32.5 2.51-67.75 0 0 21.49-6.88 70.4 26.24a242.65 242.65 0 0 1 128.18 0c48.87-33.13 70.33-26.24 70.33-26.24 14 35.25 5.18 61.27 2.55 67.75 16.41 17.9 26.31 40.75 26.31 68.69 0 98.35-59.85 120-116.88 126.32 9.19 7.9 17.38 23.53 17.38 47.41 0 34.22-.31 61.83-.31 70.23 0 6.85 4.61 14.81 17.6 12.31C438.72 464.97 512 369.08 512 256.02 512 114.62 397.37 0 256 0z"/></svg></a> •
  6082. <a href="https://twitter.com/imagemagick" target="_blank" rel="noopener" aria-label="Twitter"><svg xmlns="http://www.w3.org/2000/svg" class="navbar-nav-svg" viewBox="0 0 300 300" width="2%" height="2%" role="img" focusable="false"><title>Twitter</title><path d="M178.57 127.15 290.27 0h-26.46l-97.03 110.38L89.34 0H0l117.13 166.93L0 300.25h26.46l102.4-116.59 81.8 116.59h89.34M36.01 19.54H76.66l187.13 262.13h-40.66"/></svg></a>
  6083. <br/>
  6084. <small>Copyright © 1999 ImageMagick Studio LLC</small>
  6085. </div>
  6086. </footer>
  6087. <!-- Javascript assets -->
  6088. <script src="assets/magick.js" ></script>
  6089. </body>
  6090. </html>
  6091. <!-- Magick Cache 12th September 2023 23:56 -->