png.c 147 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410
  1. /* png.c - location for general purpose libpng functions
  2. *
  3. * Last changed in libpng 1.6.9 [February 6, 2014]
  4. * Copyright (c) 1998-2014 Glenn Randers-Pehrson
  5. * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
  6. * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
  7. *
  8. * This code is released under the libpng license.
  9. * For conditions of distribution and use, see the disclaimer
  10. * and license in png.h
  11. */
  12. #include "pngpriv.h"
  13. /* Generate a compiler error if there is an old png.h in the search path. */
  14. typedef png_libpng_version_1_6_10 Your_png_h_is_not_version_1_6_10;
  15. /* Tells libpng that we have already handled the first "num_bytes" bytes
  16. * of the PNG file signature. If the PNG data is embedded into another
  17. * stream we can set num_bytes = 8 so that libpng will not attempt to read
  18. * or write any of the magic bytes before it starts on the IHDR.
  19. */
  20. #ifdef PNG_READ_SUPPORTED
  21. void PNGAPI
  22. png_set_sig_bytes(png_structrp png_ptr, int num_bytes)
  23. {
  24. png_debug(1, "in png_set_sig_bytes");
  25. if (png_ptr == NULL)
  26. return;
  27. if (num_bytes > 8)
  28. png_error(png_ptr, "Too many bytes for PNG signature");
  29. png_ptr->sig_bytes = (png_byte)(num_bytes < 0 ? 0 : num_bytes);
  30. }
  31. /* Checks whether the supplied bytes match the PNG signature. We allow
  32. * checking less than the full 8-byte signature so that those apps that
  33. * already read the first few bytes of a file to determine the file type
  34. * can simply check the remaining bytes for extra assurance. Returns
  35. * an integer less than, equal to, or greater than zero if sig is found,
  36. * respectively, to be less than, to match, or be greater than the correct
  37. * PNG signature (this is the same behavior as strcmp, memcmp, etc).
  38. */
  39. int PNGAPI
  40. png_sig_cmp(png_const_bytep sig, png_size_t start, png_size_t num_to_check)
  41. {
  42. png_byte png_signature[8] = {137, 80, 78, 71, 13, 10, 26, 10};
  43. if (num_to_check > 8)
  44. num_to_check = 8;
  45. else if (num_to_check < 1)
  46. return (-1);
  47. if (start > 7)
  48. return (-1);
  49. if (start + num_to_check > 8)
  50. num_to_check = 8 - start;
  51. return ((int)(memcmp(&sig[start], &png_signature[start], num_to_check)));
  52. }
  53. #endif /* PNG_READ_SUPPORTED */
  54. #if defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED)
  55. /* Function to allocate memory for zlib */
  56. PNG_FUNCTION(voidpf /* PRIVATE */,
  57. png_zalloc,(voidpf png_ptr, uInt items, uInt size),PNG_ALLOCATED)
  58. {
  59. png_alloc_size_t num_bytes = size;
  60. if (png_ptr == NULL)
  61. return NULL;
  62. if (items >= (~(png_alloc_size_t)0)/size)
  63. {
  64. png_warning (png_voidcast(png_structrp, png_ptr),
  65. "Potential overflow in png_zalloc()");
  66. return NULL;
  67. }
  68. num_bytes *= items;
  69. return png_malloc_warn(png_voidcast(png_structrp, png_ptr), num_bytes);
  70. }
  71. /* Function to free memory for zlib */
  72. void /* PRIVATE */
  73. png_zfree(voidpf png_ptr, voidpf ptr)
  74. {
  75. png_free(png_voidcast(png_const_structrp,png_ptr), ptr);
  76. }
  77. /* Reset the CRC variable to 32 bits of 1's. Care must be taken
  78. * in case CRC is > 32 bits to leave the top bits 0.
  79. */
  80. void /* PRIVATE */
  81. png_reset_crc(png_structrp png_ptr)
  82. {
  83. /* The cast is safe because the crc is a 32 bit value. */
  84. png_ptr->crc = (png_uint_32)crc32(0, Z_NULL, 0);
  85. }
  86. /* Calculate the CRC over a section of data. We can only pass as
  87. * much data to this routine as the largest single buffer size. We
  88. * also check that this data will actually be used before going to the
  89. * trouble of calculating it.
  90. */
  91. void /* PRIVATE */
  92. png_calculate_crc(png_structrp png_ptr, png_const_bytep ptr, png_size_t length)
  93. {
  94. int need_crc = 1;
  95. if (PNG_CHUNK_ANCILLARY(png_ptr->chunk_name))
  96. {
  97. if ((png_ptr->flags & PNG_FLAG_CRC_ANCILLARY_MASK) ==
  98. (PNG_FLAG_CRC_ANCILLARY_USE | PNG_FLAG_CRC_ANCILLARY_NOWARN))
  99. need_crc = 0;
  100. }
  101. else /* critical */
  102. {
  103. if (png_ptr->flags & PNG_FLAG_CRC_CRITICAL_IGNORE)
  104. need_crc = 0;
  105. }
  106. /* 'uLong' is defined in zlib.h as unsigned long; this means that on some
  107. * systems it is a 64 bit value. crc32, however, returns 32 bits so the
  108. * following cast is safe. 'uInt' may be no more than 16 bits, so it is
  109. * necessary to perform a loop here.
  110. */
  111. if (need_crc && length > 0)
  112. {
  113. uLong crc = png_ptr->crc; /* Should never issue a warning */
  114. do
  115. {
  116. uInt safe_length = (uInt)length;
  117. if (safe_length == 0)
  118. safe_length = (uInt)-1; /* evil, but safe */
  119. crc = crc32(crc, ptr, safe_length);
  120. /* The following should never issue compiler warnings; if they do the
  121. * target system has characteristics that will probably violate other
  122. * assumptions within the libpng code.
  123. */
  124. ptr += safe_length;
  125. length -= safe_length;
  126. }
  127. while (length > 0);
  128. /* And the following is always safe because the crc is only 32 bits. */
  129. png_ptr->crc = (png_uint_32)crc;
  130. }
  131. }
  132. /* Check a user supplied version number, called from both read and write
  133. * functions that create a png_struct.
  134. */
  135. int
  136. png_user_version_check(png_structrp png_ptr, png_const_charp user_png_ver)
  137. {
  138. if (user_png_ver)
  139. {
  140. int i = 0;
  141. do
  142. {
  143. if (user_png_ver[i] != png_libpng_ver[i])
  144. png_ptr->flags |= PNG_FLAG_LIBRARY_MISMATCH;
  145. } while (png_libpng_ver[i++]);
  146. }
  147. else
  148. png_ptr->flags |= PNG_FLAG_LIBRARY_MISMATCH;
  149. if (png_ptr->flags & PNG_FLAG_LIBRARY_MISMATCH)
  150. {
  151. /* Libpng 0.90 and later are binary incompatible with libpng 0.89, so
  152. * we must recompile any applications that use any older library version.
  153. * For versions after libpng 1.0, we will be compatible, so we need
  154. * only check the first and third digits (note that when we reach version
  155. * 1.10 we will need to check the fourth symbol, namely user_png_ver[3]).
  156. */
  157. if (user_png_ver == NULL || user_png_ver[0] != png_libpng_ver[0] ||
  158. (user_png_ver[0] == '1' && (user_png_ver[2] != png_libpng_ver[2] ||
  159. user_png_ver[3] != png_libpng_ver[3])) ||
  160. (user_png_ver[0] == '0' && user_png_ver[2] < '9'))
  161. {
  162. #ifdef PNG_WARNINGS_SUPPORTED
  163. size_t pos = 0;
  164. char m[128];
  165. pos = png_safecat(m, (sizeof m), pos,
  166. "Application built with libpng-");
  167. pos = png_safecat(m, (sizeof m), pos, user_png_ver);
  168. pos = png_safecat(m, (sizeof m), pos, " but running with ");
  169. pos = png_safecat(m, (sizeof m), pos, png_libpng_ver);
  170. PNG_UNUSED(pos)
  171. png_warning(png_ptr, m);
  172. #endif
  173. #ifdef PNG_ERROR_NUMBERS_SUPPORTED
  174. png_ptr->flags = 0;
  175. #endif
  176. return 0;
  177. }
  178. }
  179. /* Success return. */
  180. return 1;
  181. }
  182. /* Generic function to create a png_struct for either read or write - this
  183. * contains the common initialization.
  184. */
  185. PNG_FUNCTION(png_structp /* PRIVATE */,
  186. png_create_png_struct,(png_const_charp user_png_ver, png_voidp error_ptr,
  187. png_error_ptr error_fn, png_error_ptr warn_fn, png_voidp mem_ptr,
  188. png_malloc_ptr malloc_fn, png_free_ptr free_fn),PNG_ALLOCATED)
  189. {
  190. png_struct create_struct;
  191. # ifdef PNG_SETJMP_SUPPORTED
  192. jmp_buf create_jmp_buf;
  193. # endif
  194. /* This temporary stack-allocated structure is used to provide a place to
  195. * build enough context to allow the user provided memory allocator (if any)
  196. * to be called.
  197. */
  198. memset(&create_struct, 0, (sizeof create_struct));
  199. /* Added at libpng-1.2.6 */
  200. # ifdef PNG_USER_LIMITS_SUPPORTED
  201. create_struct.user_width_max = PNG_USER_WIDTH_MAX;
  202. create_struct.user_height_max = PNG_USER_HEIGHT_MAX;
  203. # ifdef PNG_USER_CHUNK_CACHE_MAX
  204. /* Added at libpng-1.2.43 and 1.4.0 */
  205. create_struct.user_chunk_cache_max = PNG_USER_CHUNK_CACHE_MAX;
  206. # endif
  207. # ifdef PNG_USER_CHUNK_MALLOC_MAX
  208. /* Added at libpng-1.2.43 and 1.4.1, required only for read but exists
  209. * in png_struct regardless.
  210. */
  211. create_struct.user_chunk_malloc_max = PNG_USER_CHUNK_MALLOC_MAX;
  212. # endif
  213. # endif
  214. /* The following two API calls simply set fields in png_struct, so it is safe
  215. * to do them now even though error handling is not yet set up.
  216. */
  217. # ifdef PNG_USER_MEM_SUPPORTED
  218. png_set_mem_fn(&create_struct, mem_ptr, malloc_fn, free_fn);
  219. # else
  220. PNG_UNUSED(mem_ptr)
  221. PNG_UNUSED(malloc_fn)
  222. PNG_UNUSED(free_fn)
  223. # endif
  224. /* (*error_fn) can return control to the caller after the error_ptr is set,
  225. * this will result in a memory leak unless the error_fn does something
  226. * extremely sophisticated. The design lacks merit but is implicit in the
  227. * API.
  228. */
  229. png_set_error_fn(&create_struct, error_ptr, error_fn, warn_fn);
  230. # ifdef PNG_SETJMP_SUPPORTED
  231. if (!setjmp(create_jmp_buf))
  232. {
  233. /* Temporarily fake out the longjmp information until we have
  234. * successfully completed this function. This only works if we have
  235. * setjmp() support compiled in, but it is safe - this stuff should
  236. * never happen.
  237. */
  238. create_struct.jmp_buf_ptr = &create_jmp_buf;
  239. create_struct.jmp_buf_size = 0; /*stack allocation*/
  240. create_struct.longjmp_fn = longjmp;
  241. # else
  242. {
  243. # endif
  244. /* Call the general version checker (shared with read and write code):
  245. */
  246. if (png_user_version_check(&create_struct, user_png_ver))
  247. {
  248. png_structrp png_ptr = png_voidcast(png_structrp,
  249. png_malloc_warn(&create_struct, (sizeof *png_ptr)));
  250. if (png_ptr != NULL)
  251. {
  252. /* png_ptr->zstream holds a back-pointer to the png_struct, so
  253. * this can only be done now:
  254. */
  255. create_struct.zstream.zalloc = png_zalloc;
  256. create_struct.zstream.zfree = png_zfree;
  257. create_struct.zstream.opaque = png_ptr;
  258. # ifdef PNG_SETJMP_SUPPORTED
  259. /* Eliminate the local error handling: */
  260. create_struct.jmp_buf_ptr = NULL;
  261. create_struct.jmp_buf_size = 0;
  262. create_struct.longjmp_fn = 0;
  263. # endif
  264. *png_ptr = create_struct;
  265. /* This is the successful return point */
  266. return png_ptr;
  267. }
  268. }
  269. }
  270. /* A longjmp because of a bug in the application storage allocator or a
  271. * simple failure to allocate the png_struct.
  272. */
  273. return NULL;
  274. }
  275. /* Allocate the memory for an info_struct for the application. */
  276. PNG_FUNCTION(png_infop,PNGAPI
  277. png_create_info_struct,(png_const_structrp png_ptr),PNG_ALLOCATED)
  278. {
  279. png_inforp info_ptr;
  280. png_debug(1, "in png_create_info_struct");
  281. if (png_ptr == NULL)
  282. return NULL;
  283. /* Use the internal API that does not (or at least should not) error out, so
  284. * that this call always returns ok. The application typically sets up the
  285. * error handling *after* creating the info_struct because this is the way it
  286. * has always been done in 'example.c'.
  287. */
  288. info_ptr = png_voidcast(png_inforp, png_malloc_base(png_ptr,
  289. (sizeof *info_ptr)));
  290. if (info_ptr != NULL)
  291. memset(info_ptr, 0, (sizeof *info_ptr));
  292. return info_ptr;
  293. }
  294. /* This function frees the memory associated with a single info struct.
  295. * Normally, one would use either png_destroy_read_struct() or
  296. * png_destroy_write_struct() to free an info struct, but this may be
  297. * useful for some applications. From libpng 1.6.0 this function is also used
  298. * internally to implement the png_info release part of the 'struct' destroy
  299. * APIs. This ensures that all possible approaches free the same data (all of
  300. * it).
  301. */
  302. void PNGAPI
  303. png_destroy_info_struct(png_const_structrp png_ptr, png_infopp info_ptr_ptr)
  304. {
  305. png_inforp info_ptr = NULL;
  306. png_debug(1, "in png_destroy_info_struct");
  307. if (png_ptr == NULL)
  308. return;
  309. if (info_ptr_ptr != NULL)
  310. info_ptr = *info_ptr_ptr;
  311. if (info_ptr != NULL)
  312. {
  313. /* Do this first in case of an error below; if the app implements its own
  314. * memory management this can lead to png_free calling png_error, which
  315. * will abort this routine and return control to the app error handler.
  316. * An infinite loop may result if it then tries to free the same info
  317. * ptr.
  318. */
  319. *info_ptr_ptr = NULL;
  320. png_free_data(png_ptr, info_ptr, PNG_FREE_ALL, -1);
  321. memset(info_ptr, 0, (sizeof *info_ptr));
  322. png_free(png_ptr, info_ptr);
  323. }
  324. }
  325. /* Initialize the info structure. This is now an internal function (0.89)
  326. * and applications using it are urged to use png_create_info_struct()
  327. * instead. Use deprecated in 1.6.0, internal use removed (used internally it
  328. * is just a memset).
  329. *
  330. * NOTE: it is almost inconceivable that this API is used because it bypasses
  331. * the user-memory mechanism and the user error handling/warning mechanisms in
  332. * those cases where it does anything other than a memset.
  333. */
  334. PNG_FUNCTION(void,PNGAPI
  335. png_info_init_3,(png_infopp ptr_ptr, png_size_t png_info_struct_size),
  336. PNG_DEPRECATED)
  337. {
  338. png_inforp info_ptr = *ptr_ptr;
  339. png_debug(1, "in png_info_init_3");
  340. if (info_ptr == NULL)
  341. return;
  342. if ((sizeof (png_info)) > png_info_struct_size)
  343. {
  344. *ptr_ptr = NULL;
  345. /* The following line is why this API should not be used: */
  346. free(info_ptr);
  347. info_ptr = png_voidcast(png_inforp, png_malloc_base(NULL,
  348. (sizeof *info_ptr)));
  349. *ptr_ptr = info_ptr;
  350. }
  351. /* Set everything to 0 */
  352. memset(info_ptr, 0, (sizeof *info_ptr));
  353. }
  354. /* The following API is not called internally */
  355. void PNGAPI
  356. png_data_freer(png_const_structrp png_ptr, png_inforp info_ptr,
  357. int freer, png_uint_32 mask)
  358. {
  359. png_debug(1, "in png_data_freer");
  360. if (png_ptr == NULL || info_ptr == NULL)
  361. return;
  362. if (freer == PNG_DESTROY_WILL_FREE_DATA)
  363. info_ptr->free_me |= mask;
  364. else if (freer == PNG_USER_WILL_FREE_DATA)
  365. info_ptr->free_me &= ~mask;
  366. else
  367. png_error(png_ptr, "Unknown freer parameter in png_data_freer");
  368. }
  369. void PNGAPI
  370. png_free_data(png_const_structrp png_ptr, png_inforp info_ptr, png_uint_32 mask,
  371. int num)
  372. {
  373. png_debug(1, "in png_free_data");
  374. if (png_ptr == NULL || info_ptr == NULL)
  375. return;
  376. #ifdef PNG_TEXT_SUPPORTED
  377. /* Free text item num or (if num == -1) all text items */
  378. if ((mask & PNG_FREE_TEXT) & info_ptr->free_me)
  379. {
  380. if (num != -1)
  381. {
  382. if (info_ptr->text && info_ptr->text[num].key)
  383. {
  384. png_free(png_ptr, info_ptr->text[num].key);
  385. info_ptr->text[num].key = NULL;
  386. }
  387. }
  388. else
  389. {
  390. int i;
  391. for (i = 0; i < info_ptr->num_text; i++)
  392. png_free_data(png_ptr, info_ptr, PNG_FREE_TEXT, i);
  393. png_free(png_ptr, info_ptr->text);
  394. info_ptr->text = NULL;
  395. info_ptr->num_text=0;
  396. }
  397. }
  398. #endif
  399. #ifdef PNG_tRNS_SUPPORTED
  400. /* Free any tRNS entry */
  401. if ((mask & PNG_FREE_TRNS) & info_ptr->free_me)
  402. {
  403. png_free(png_ptr, info_ptr->trans_alpha);
  404. info_ptr->trans_alpha = NULL;
  405. info_ptr->valid &= ~PNG_INFO_tRNS;
  406. }
  407. #endif
  408. #ifdef PNG_sCAL_SUPPORTED
  409. /* Free any sCAL entry */
  410. if ((mask & PNG_FREE_SCAL) & info_ptr->free_me)
  411. {
  412. png_free(png_ptr, info_ptr->scal_s_width);
  413. png_free(png_ptr, info_ptr->scal_s_height);
  414. info_ptr->scal_s_width = NULL;
  415. info_ptr->scal_s_height = NULL;
  416. info_ptr->valid &= ~PNG_INFO_sCAL;
  417. }
  418. #endif
  419. #ifdef PNG_pCAL_SUPPORTED
  420. /* Free any pCAL entry */
  421. if ((mask & PNG_FREE_PCAL) & info_ptr->free_me)
  422. {
  423. png_free(png_ptr, info_ptr->pcal_purpose);
  424. png_free(png_ptr, info_ptr->pcal_units);
  425. info_ptr->pcal_purpose = NULL;
  426. info_ptr->pcal_units = NULL;
  427. if (info_ptr->pcal_params != NULL)
  428. {
  429. unsigned int i;
  430. for (i = 0; i < info_ptr->pcal_nparams; i++)
  431. {
  432. png_free(png_ptr, info_ptr->pcal_params[i]);
  433. info_ptr->pcal_params[i] = NULL;
  434. }
  435. png_free(png_ptr, info_ptr->pcal_params);
  436. info_ptr->pcal_params = NULL;
  437. }
  438. info_ptr->valid &= ~PNG_INFO_pCAL;
  439. }
  440. #endif
  441. #ifdef PNG_iCCP_SUPPORTED
  442. /* Free any profile entry */
  443. if ((mask & PNG_FREE_ICCP) & info_ptr->free_me)
  444. {
  445. png_free(png_ptr, info_ptr->iccp_name);
  446. png_free(png_ptr, info_ptr->iccp_profile);
  447. info_ptr->iccp_name = NULL;
  448. info_ptr->iccp_profile = NULL;
  449. info_ptr->valid &= ~PNG_INFO_iCCP;
  450. }
  451. #endif
  452. #ifdef PNG_sPLT_SUPPORTED
  453. /* Free a given sPLT entry, or (if num == -1) all sPLT entries */
  454. if ((mask & PNG_FREE_SPLT) & info_ptr->free_me)
  455. {
  456. if (num != -1)
  457. {
  458. if (info_ptr->splt_palettes)
  459. {
  460. png_free(png_ptr, info_ptr->splt_palettes[num].name);
  461. png_free(png_ptr, info_ptr->splt_palettes[num].entries);
  462. info_ptr->splt_palettes[num].name = NULL;
  463. info_ptr->splt_palettes[num].entries = NULL;
  464. }
  465. }
  466. else
  467. {
  468. if (info_ptr->splt_palettes_num)
  469. {
  470. int i;
  471. for (i = 0; i < info_ptr->splt_palettes_num; i++)
  472. png_free_data(png_ptr, info_ptr, PNG_FREE_SPLT, (int)i);
  473. png_free(png_ptr, info_ptr->splt_palettes);
  474. info_ptr->splt_palettes = NULL;
  475. info_ptr->splt_palettes_num = 0;
  476. }
  477. info_ptr->valid &= ~PNG_INFO_sPLT;
  478. }
  479. }
  480. #endif
  481. #ifdef PNG_STORE_UNKNOWN_CHUNKS_SUPPORTED
  482. if ((mask & PNG_FREE_UNKN) & info_ptr->free_me)
  483. {
  484. if (num != -1)
  485. {
  486. if (info_ptr->unknown_chunks)
  487. {
  488. png_free(png_ptr, info_ptr->unknown_chunks[num].data);
  489. info_ptr->unknown_chunks[num].data = NULL;
  490. }
  491. }
  492. else
  493. {
  494. int i;
  495. if (info_ptr->unknown_chunks_num)
  496. {
  497. for (i = 0; i < info_ptr->unknown_chunks_num; i++)
  498. png_free_data(png_ptr, info_ptr, PNG_FREE_UNKN, (int)i);
  499. png_free(png_ptr, info_ptr->unknown_chunks);
  500. info_ptr->unknown_chunks = NULL;
  501. info_ptr->unknown_chunks_num = 0;
  502. }
  503. }
  504. }
  505. #endif
  506. #ifdef PNG_hIST_SUPPORTED
  507. /* Free any hIST entry */
  508. if ((mask & PNG_FREE_HIST) & info_ptr->free_me)
  509. {
  510. png_free(png_ptr, info_ptr->hist);
  511. info_ptr->hist = NULL;
  512. info_ptr->valid &= ~PNG_INFO_hIST;
  513. }
  514. #endif
  515. /* Free any PLTE entry that was internally allocated */
  516. if ((mask & PNG_FREE_PLTE) & info_ptr->free_me)
  517. {
  518. png_free(png_ptr, info_ptr->palette);
  519. info_ptr->palette = NULL;
  520. info_ptr->valid &= ~PNG_INFO_PLTE;
  521. info_ptr->num_palette = 0;
  522. }
  523. #ifdef PNG_INFO_IMAGE_SUPPORTED
  524. /* Free any image bits attached to the info structure */
  525. if ((mask & PNG_FREE_ROWS) & info_ptr->free_me)
  526. {
  527. if (info_ptr->row_pointers)
  528. {
  529. png_uint_32 row;
  530. for (row = 0; row < info_ptr->height; row++)
  531. {
  532. png_free(png_ptr, info_ptr->row_pointers[row]);
  533. info_ptr->row_pointers[row] = NULL;
  534. }
  535. png_free(png_ptr, info_ptr->row_pointers);
  536. info_ptr->row_pointers = NULL;
  537. }
  538. info_ptr->valid &= ~PNG_INFO_IDAT;
  539. }
  540. #endif
  541. if (num != -1)
  542. mask &= ~PNG_FREE_MUL;
  543. info_ptr->free_me &= ~mask;
  544. }
  545. #endif /* defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED) */
  546. /* This function returns a pointer to the io_ptr associated with the user
  547. * functions. The application should free any memory associated with this
  548. * pointer before png_write_destroy() or png_read_destroy() are called.
  549. */
  550. png_voidp PNGAPI
  551. png_get_io_ptr(png_const_structrp png_ptr)
  552. {
  553. if (png_ptr == NULL)
  554. return (NULL);
  555. return (png_ptr->io_ptr);
  556. }
  557. #if defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED)
  558. # ifdef PNG_STDIO_SUPPORTED
  559. /* Initialize the default input/output functions for the PNG file. If you
  560. * use your own read or write routines, you can call either png_set_read_fn()
  561. * or png_set_write_fn() instead of png_init_io(). If you have defined
  562. * PNG_NO_STDIO or otherwise disabled PNG_STDIO_SUPPORTED, you must use a
  563. * function of your own because "FILE *" isn't necessarily available.
  564. */
  565. void PNGAPI
  566. png_init_io(png_structrp png_ptr, png_FILE_p fp)
  567. {
  568. png_debug(1, "in png_init_io");
  569. if (png_ptr == NULL)
  570. return;
  571. png_ptr->io_ptr = (png_voidp)fp;
  572. }
  573. # endif
  574. #ifdef PNG_SAVE_INT_32_SUPPORTED
  575. /* The png_save_int_32 function assumes integers are stored in two's
  576. * complement format. If this isn't the case, then this routine needs to
  577. * be modified to write data in two's complement format. Note that,
  578. * the following works correctly even if png_int_32 has more than 32 bits
  579. * (compare the more complex code required on read for sign extension.)
  580. */
  581. void PNGAPI
  582. png_save_int_32(png_bytep buf, png_int_32 i)
  583. {
  584. buf[0] = (png_byte)((i >> 24) & 0xff);
  585. buf[1] = (png_byte)((i >> 16) & 0xff);
  586. buf[2] = (png_byte)((i >> 8) & 0xff);
  587. buf[3] = (png_byte)(i & 0xff);
  588. }
  589. #endif
  590. # ifdef PNG_TIME_RFC1123_SUPPORTED
  591. /* Convert the supplied time into an RFC 1123 string suitable for use in
  592. * a "Creation Time" or other text-based time string.
  593. */
  594. int PNGAPI
  595. png_convert_to_rfc1123_buffer(char out[29], png_const_timep ptime)
  596. {
  597. static PNG_CONST char short_months[12][4] =
  598. {"Jan", "Feb", "Mar", "Apr", "May", "Jun",
  599. "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"};
  600. if (out == NULL)
  601. return 0;
  602. if (ptime->year > 9999 /* RFC1123 limitation */ ||
  603. ptime->month == 0 || ptime->month > 12 ||
  604. ptime->day == 0 || ptime->day > 31 ||
  605. ptime->hour > 23 || ptime->minute > 59 ||
  606. ptime->second > 60)
  607. return 0;
  608. {
  609. size_t pos = 0;
  610. char number_buf[5]; /* enough for a four-digit year */
  611. # define APPEND_STRING(string) pos = png_safecat(out, 29, pos, (string))
  612. # define APPEND_NUMBER(format, value)\
  613. APPEND_STRING(PNG_FORMAT_NUMBER(number_buf, format, (value)))
  614. # define APPEND(ch) if (pos < 28) out[pos++] = (ch)
  615. APPEND_NUMBER(PNG_NUMBER_FORMAT_u, (unsigned)ptime->day);
  616. APPEND(' ');
  617. APPEND_STRING(short_months[(ptime->month - 1)]);
  618. APPEND(' ');
  619. APPEND_NUMBER(PNG_NUMBER_FORMAT_u, ptime->year);
  620. APPEND(' ');
  621. APPEND_NUMBER(PNG_NUMBER_FORMAT_02u, (unsigned)ptime->hour);
  622. APPEND(':');
  623. APPEND_NUMBER(PNG_NUMBER_FORMAT_02u, (unsigned)ptime->minute);
  624. APPEND(':');
  625. APPEND_NUMBER(PNG_NUMBER_FORMAT_02u, (unsigned)ptime->second);
  626. APPEND_STRING(" +0000"); /* This reliably terminates the buffer */
  627. # undef APPEND
  628. # undef APPEND_NUMBER
  629. # undef APPEND_STRING
  630. }
  631. return 1;
  632. }
  633. # if PNG_LIBPNG_VER < 10700
  634. /* To do: remove the following from libpng-1.7 */
  635. /* Original API that uses a private buffer in png_struct.
  636. * Deprecated because it causes png_struct to carry a spurious temporary
  637. * buffer (png_struct::time_buffer), better to have the caller pass this in.
  638. */
  639. png_const_charp PNGAPI
  640. png_convert_to_rfc1123(png_structrp png_ptr, png_const_timep ptime)
  641. {
  642. if (png_ptr != NULL)
  643. {
  644. /* The only failure above if png_ptr != NULL is from an invalid ptime */
  645. if (!png_convert_to_rfc1123_buffer(png_ptr->time_buffer, ptime))
  646. png_warning(png_ptr, "Ignoring invalid time value");
  647. else
  648. return png_ptr->time_buffer;
  649. }
  650. return NULL;
  651. }
  652. # endif
  653. # endif /* PNG_TIME_RFC1123_SUPPORTED */
  654. #endif /* defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED) */
  655. png_const_charp PNGAPI
  656. png_get_copyright(png_const_structrp png_ptr)
  657. {
  658. PNG_UNUSED(png_ptr) /* Silence compiler warning about unused png_ptr */
  659. #ifdef PNG_STRING_COPYRIGHT
  660. return PNG_STRING_COPYRIGHT
  661. #else
  662. # ifdef __STDC__
  663. return PNG_STRING_NEWLINE \
  664. "libpng version 1.6.10 - March 6, 2014" PNG_STRING_NEWLINE \
  665. "Copyright (c) 1998-2014 Glenn Randers-Pehrson" PNG_STRING_NEWLINE \
  666. "Copyright (c) 1996-1997 Andreas Dilger" PNG_STRING_NEWLINE \
  667. "Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc." \
  668. PNG_STRING_NEWLINE;
  669. # else
  670. return "libpng version 1.6.10 - March 6, 2014\
  671. Copyright (c) 1998-2014 Glenn Randers-Pehrson\
  672. Copyright (c) 1996-1997 Andreas Dilger\
  673. Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc.";
  674. # endif
  675. #endif
  676. }
  677. /* The following return the library version as a short string in the
  678. * format 1.0.0 through 99.99.99zz. To get the version of *.h files
  679. * used with your application, print out PNG_LIBPNG_VER_STRING, which
  680. * is defined in png.h.
  681. * Note: now there is no difference between png_get_libpng_ver() and
  682. * png_get_header_ver(). Due to the version_nn_nn_nn typedef guard,
  683. * it is guaranteed that png.c uses the correct version of png.h.
  684. */
  685. png_const_charp PNGAPI
  686. png_get_libpng_ver(png_const_structrp png_ptr)
  687. {
  688. /* Version of *.c files used when building libpng */
  689. return png_get_header_ver(png_ptr);
  690. }
  691. png_const_charp PNGAPI
  692. png_get_header_ver(png_const_structrp png_ptr)
  693. {
  694. /* Version of *.h files used when building libpng */
  695. PNG_UNUSED(png_ptr) /* Silence compiler warning about unused png_ptr */
  696. return PNG_LIBPNG_VER_STRING;
  697. }
  698. png_const_charp PNGAPI
  699. png_get_header_version(png_const_structrp png_ptr)
  700. {
  701. /* Returns longer string containing both version and date */
  702. PNG_UNUSED(png_ptr) /* Silence compiler warning about unused png_ptr */
  703. #ifdef __STDC__
  704. return PNG_HEADER_VERSION_STRING
  705. # ifndef PNG_READ_SUPPORTED
  706. " (NO READ SUPPORT)"
  707. # endif
  708. PNG_STRING_NEWLINE;
  709. #else
  710. return PNG_HEADER_VERSION_STRING;
  711. #endif
  712. }
  713. #ifdef PNG_BUILD_GRAYSCALE_PALETTE_SUPPORTED
  714. /* NOTE: this routine is not used internally! */
  715. /* Build a grayscale palette. Palette is assumed to be 1 << bit_depth
  716. * large of png_color. This lets grayscale images be treated as
  717. * paletted. Most useful for gamma correction and simplification
  718. * of code. This API is not used internally.
  719. */
  720. void PNGAPI
  721. png_build_grayscale_palette(int bit_depth, png_colorp palette)
  722. {
  723. int num_palette;
  724. int color_inc;
  725. int i;
  726. int v;
  727. png_debug(1, "in png_do_build_grayscale_palette");
  728. if (palette == NULL)
  729. return;
  730. switch (bit_depth)
  731. {
  732. case 1:
  733. num_palette = 2;
  734. color_inc = 0xff;
  735. break;
  736. case 2:
  737. num_palette = 4;
  738. color_inc = 0x55;
  739. break;
  740. case 4:
  741. num_palette = 16;
  742. color_inc = 0x11;
  743. break;
  744. case 8:
  745. num_palette = 256;
  746. color_inc = 1;
  747. break;
  748. default:
  749. num_palette = 0;
  750. color_inc = 0;
  751. break;
  752. }
  753. for (i = 0, v = 0; i < num_palette; i++, v += color_inc)
  754. {
  755. palette[i].red = (png_byte)v;
  756. palette[i].green = (png_byte)v;
  757. palette[i].blue = (png_byte)v;
  758. }
  759. }
  760. #endif
  761. #ifdef PNG_SET_UNKNOWN_CHUNKS_SUPPORTED
  762. int PNGAPI
  763. png_handle_as_unknown(png_const_structrp png_ptr, png_const_bytep chunk_name)
  764. {
  765. /* Check chunk_name and return "keep" value if it's on the list, else 0 */
  766. png_const_bytep p, p_end;
  767. if (png_ptr == NULL || chunk_name == NULL || png_ptr->num_chunk_list == 0)
  768. return PNG_HANDLE_CHUNK_AS_DEFAULT;
  769. p_end = png_ptr->chunk_list;
  770. p = p_end + png_ptr->num_chunk_list*5; /* beyond end */
  771. /* The code is the fifth byte after each four byte string. Historically this
  772. * code was always searched from the end of the list, this is no longer
  773. * necessary because the 'set' routine handles duplicate entries correcty.
  774. */
  775. do /* num_chunk_list > 0, so at least one */
  776. {
  777. p -= 5;
  778. if (!memcmp(chunk_name, p, 4))
  779. return p[4];
  780. }
  781. while (p > p_end);
  782. /* This means that known chunks should be processed and unknown chunks should
  783. * be handled according to the value of png_ptr->unknown_default; this can be
  784. * confusing because, as a result, there are two levels of defaulting for
  785. * unknown chunks.
  786. */
  787. return PNG_HANDLE_CHUNK_AS_DEFAULT;
  788. }
  789. #if defined(PNG_READ_UNKNOWN_CHUNKS_SUPPORTED) ||\
  790. defined(PNG_HANDLE_AS_UNKNOWN_SUPPORTED)
  791. int /* PRIVATE */
  792. png_chunk_unknown_handling(png_const_structrp png_ptr, png_uint_32 chunk_name)
  793. {
  794. png_byte chunk_string[5];
  795. PNG_CSTRING_FROM_CHUNK(chunk_string, chunk_name);
  796. return png_handle_as_unknown(png_ptr, chunk_string);
  797. }
  798. #endif /* READ_UNKNOWN_CHUNKS || HANDLE_AS_UNKNOWN */
  799. #endif /* SET_UNKNOWN_CHUNKS */
  800. #ifdef PNG_READ_SUPPORTED
  801. /* This function, added to libpng-1.0.6g, is untested. */
  802. int PNGAPI
  803. png_reset_zstream(png_structrp png_ptr)
  804. {
  805. if (png_ptr == NULL)
  806. return Z_STREAM_ERROR;
  807. /* WARNING: this resets the window bits to the maximum! */
  808. return (inflateReset(&png_ptr->zstream));
  809. }
  810. #endif /* PNG_READ_SUPPORTED */
  811. /* This function was added to libpng-1.0.7 */
  812. png_uint_32 PNGAPI
  813. png_access_version_number(void)
  814. {
  815. /* Version of *.c files used when building libpng */
  816. return((png_uint_32)PNG_LIBPNG_VER);
  817. }
  818. #if defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED)
  819. /* Ensure that png_ptr->zstream.msg holds some appropriate error message string.
  820. * If it doesn't 'ret' is used to set it to something appropriate, even in cases
  821. * like Z_OK or Z_STREAM_END where the error code is apparently a success code.
  822. */
  823. void /* PRIVATE */
  824. png_zstream_error(png_structrp png_ptr, int ret)
  825. {
  826. /* Translate 'ret' into an appropriate error string, priority is given to the
  827. * one in zstream if set. This always returns a string, even in cases like
  828. * Z_OK or Z_STREAM_END where the error code is a success code.
  829. */
  830. if (png_ptr->zstream.msg == NULL) switch (ret)
  831. {
  832. default:
  833. case Z_OK:
  834. png_ptr->zstream.msg = PNGZ_MSG_CAST("unexpected zlib return code");
  835. break;
  836. case Z_STREAM_END:
  837. /* Normal exit */
  838. png_ptr->zstream.msg = PNGZ_MSG_CAST("unexpected end of LZ stream");
  839. break;
  840. case Z_NEED_DICT:
  841. /* This means the deflate stream did not have a dictionary; this
  842. * indicates a bogus PNG.
  843. */
  844. png_ptr->zstream.msg = PNGZ_MSG_CAST("missing LZ dictionary");
  845. break;
  846. case Z_ERRNO:
  847. /* gz APIs only: should not happen */
  848. png_ptr->zstream.msg = PNGZ_MSG_CAST("zlib IO error");
  849. break;
  850. case Z_STREAM_ERROR:
  851. /* internal libpng error */
  852. png_ptr->zstream.msg = PNGZ_MSG_CAST("bad parameters to zlib");
  853. break;
  854. case Z_DATA_ERROR:
  855. png_ptr->zstream.msg = PNGZ_MSG_CAST("damaged LZ stream");
  856. break;
  857. case Z_MEM_ERROR:
  858. png_ptr->zstream.msg = PNGZ_MSG_CAST("insufficient memory");
  859. break;
  860. case Z_BUF_ERROR:
  861. /* End of input or output; not a problem if the caller is doing
  862. * incremental read or write.
  863. */
  864. png_ptr->zstream.msg = PNGZ_MSG_CAST("truncated");
  865. break;
  866. case Z_VERSION_ERROR:
  867. png_ptr->zstream.msg = PNGZ_MSG_CAST("unsupported zlib version");
  868. break;
  869. case PNG_UNEXPECTED_ZLIB_RETURN:
  870. /* Compile errors here mean that zlib now uses the value co-opted in
  871. * pngpriv.h for PNG_UNEXPECTED_ZLIB_RETURN; update the switch above
  872. * and change pngpriv.h. Note that this message is "... return",
  873. * whereas the default/Z_OK one is "... return code".
  874. */
  875. png_ptr->zstream.msg = PNGZ_MSG_CAST("unexpected zlib return");
  876. break;
  877. }
  878. }
  879. /* png_convert_size: a PNGAPI but no longer in png.h, so deleted
  880. * at libpng 1.5.5!
  881. */
  882. /* Added at libpng version 1.2.34 and 1.4.0 (moved from pngset.c) */
  883. #ifdef PNG_GAMMA_SUPPORTED /* always set if COLORSPACE */
  884. static int
  885. png_colorspace_check_gamma(png_const_structrp png_ptr,
  886. png_colorspacerp colorspace, png_fixed_point gAMA, int from)
  887. /* This is called to check a new gamma value against an existing one. The
  888. * routine returns false if the new gamma value should not be written.
  889. *
  890. * 'from' says where the new gamma value comes from:
  891. *
  892. * 0: the new gamma value is the libpng estimate for an ICC profile
  893. * 1: the new gamma value comes from a gAMA chunk
  894. * 2: the new gamma value comes from an sRGB chunk
  895. */
  896. {
  897. png_fixed_point gtest;
  898. if ((colorspace->flags & PNG_COLORSPACE_HAVE_GAMMA) != 0 &&
  899. (!png_muldiv(&gtest, colorspace->gamma, PNG_FP_1, gAMA) ||
  900. png_gamma_significant(gtest)))
  901. {
  902. /* Either this is an sRGB image, in which case the calculated gamma
  903. * approximation should match, or this is an image with a profile and the
  904. * value libpng calculates for the gamma of the profile does not match the
  905. * value recorded in the file. The former, sRGB, case is an error, the
  906. * latter is just a warning.
  907. */
  908. if ((colorspace->flags & PNG_COLORSPACE_FROM_sRGB) != 0 || from == 2)
  909. {
  910. png_chunk_report(png_ptr, "gamma value does not match sRGB",
  911. PNG_CHUNK_ERROR);
  912. /* Do not overwrite an sRGB value */
  913. return from == 2;
  914. }
  915. else /* sRGB tag not involved */
  916. {
  917. png_chunk_report(png_ptr, "gamma value does not match libpng estimate",
  918. PNG_CHUNK_WARNING);
  919. return from == 1;
  920. }
  921. }
  922. return 1;
  923. }
  924. void /* PRIVATE */
  925. png_colorspace_set_gamma(png_const_structrp png_ptr,
  926. png_colorspacerp colorspace, png_fixed_point gAMA)
  927. {
  928. /* Changed in libpng-1.5.4 to limit the values to ensure overflow can't
  929. * occur. Since the fixed point representation is assymetrical it is
  930. * possible for 1/gamma to overflow the limit of 21474 and this means the
  931. * gamma value must be at least 5/100000 and hence at most 20000.0. For
  932. * safety the limits here are a little narrower. The values are 0.00016 to
  933. * 6250.0, which are truly ridiculous gamma values (and will produce
  934. * displays that are all black or all white.)
  935. *
  936. * In 1.6.0 this test replaces the ones in pngrutil.c, in the gAMA chunk
  937. * handling code, which only required the value to be >0.
  938. */
  939. png_const_charp errmsg;
  940. if (gAMA < 16 || gAMA > 625000000)
  941. errmsg = "gamma value out of range";
  942. # ifdef PNG_READ_gAMA_SUPPORTED
  943. /* Allow the application to set the gamma value more than once */
  944. else if ((png_ptr->mode & PNG_IS_READ_STRUCT) != 0 &&
  945. (colorspace->flags & PNG_COLORSPACE_FROM_gAMA) != 0)
  946. errmsg = "duplicate";
  947. # endif
  948. /* Do nothing if the colorspace is already invalid */
  949. else if (colorspace->flags & PNG_COLORSPACE_INVALID)
  950. return;
  951. else
  952. {
  953. if (png_colorspace_check_gamma(png_ptr, colorspace, gAMA, 1/*from gAMA*/))
  954. {
  955. /* Store this gamma value. */
  956. colorspace->gamma = gAMA;
  957. colorspace->flags |=
  958. (PNG_COLORSPACE_HAVE_GAMMA | PNG_COLORSPACE_FROM_gAMA);
  959. }
  960. /* At present if the check_gamma test fails the gamma of the colorspace is
  961. * not updated however the colorspace is not invalidated. This
  962. * corresponds to the case where the existing gamma comes from an sRGB
  963. * chunk or profile. An error message has already been output.
  964. */
  965. return;
  966. }
  967. /* Error exit - errmsg has been set. */
  968. colorspace->flags |= PNG_COLORSPACE_INVALID;
  969. png_chunk_report(png_ptr, errmsg, PNG_CHUNK_WRITE_ERROR);
  970. }
  971. void /* PRIVATE */
  972. png_colorspace_sync_info(png_const_structrp png_ptr, png_inforp info_ptr)
  973. {
  974. if (info_ptr->colorspace.flags & PNG_COLORSPACE_INVALID)
  975. {
  976. /* Everything is invalid */
  977. info_ptr->valid &= ~(PNG_INFO_gAMA|PNG_INFO_cHRM|PNG_INFO_sRGB|
  978. PNG_INFO_iCCP);
  979. # ifdef PNG_COLORSPACE_SUPPORTED
  980. /* Clean up the iCCP profile now if it won't be used. */
  981. png_free_data(png_ptr, info_ptr, PNG_FREE_ICCP, -1/*not used*/);
  982. # else
  983. PNG_UNUSED(png_ptr)
  984. # endif
  985. }
  986. else
  987. {
  988. # ifdef PNG_COLORSPACE_SUPPORTED
  989. /* Leave the INFO_iCCP flag set if the pngset.c code has already set
  990. * it; this allows a PNG to contain a profile which matches sRGB and
  991. * yet still have that profile retrievable by the application.
  992. */
  993. if (info_ptr->colorspace.flags & PNG_COLORSPACE_MATCHES_sRGB)
  994. info_ptr->valid |= PNG_INFO_sRGB;
  995. else
  996. info_ptr->valid &= ~PNG_INFO_sRGB;
  997. if (info_ptr->colorspace.flags & PNG_COLORSPACE_HAVE_ENDPOINTS)
  998. info_ptr->valid |= PNG_INFO_cHRM;
  999. else
  1000. info_ptr->valid &= ~PNG_INFO_cHRM;
  1001. # endif
  1002. if (info_ptr->colorspace.flags & PNG_COLORSPACE_HAVE_GAMMA)
  1003. info_ptr->valid |= PNG_INFO_gAMA;
  1004. else
  1005. info_ptr->valid &= ~PNG_INFO_gAMA;
  1006. }
  1007. }
  1008. #ifdef PNG_READ_SUPPORTED
  1009. void /* PRIVATE */
  1010. png_colorspace_sync(png_const_structrp png_ptr, png_inforp info_ptr)
  1011. {
  1012. if (info_ptr == NULL) /* reduce code size; check here not in the caller */
  1013. return;
  1014. info_ptr->colorspace = png_ptr->colorspace;
  1015. png_colorspace_sync_info(png_ptr, info_ptr);
  1016. }
  1017. #endif
  1018. #endif
  1019. #ifdef PNG_COLORSPACE_SUPPORTED
  1020. /* Added at libpng-1.5.5 to support read and write of true CIEXYZ values for
  1021. * cHRM, as opposed to using chromaticities. These internal APIs return
  1022. * non-zero on a parameter error. The X, Y and Z values are required to be
  1023. * positive and less than 1.0.
  1024. */
  1025. static int
  1026. png_xy_from_XYZ(png_xy *xy, const png_XYZ *XYZ)
  1027. {
  1028. png_int_32 d, dwhite, whiteX, whiteY;
  1029. d = XYZ->red_X + XYZ->red_Y + XYZ->red_Z;
  1030. if (!png_muldiv(&xy->redx, XYZ->red_X, PNG_FP_1, d)) return 1;
  1031. if (!png_muldiv(&xy->redy, XYZ->red_Y, PNG_FP_1, d)) return 1;
  1032. dwhite = d;
  1033. whiteX = XYZ->red_X;
  1034. whiteY = XYZ->red_Y;
  1035. d = XYZ->green_X + XYZ->green_Y + XYZ->green_Z;
  1036. if (!png_muldiv(&xy->greenx, XYZ->green_X, PNG_FP_1, d)) return 1;
  1037. if (!png_muldiv(&xy->greeny, XYZ->green_Y, PNG_FP_1, d)) return 1;
  1038. dwhite += d;
  1039. whiteX += XYZ->green_X;
  1040. whiteY += XYZ->green_Y;
  1041. d = XYZ->blue_X + XYZ->blue_Y + XYZ->blue_Z;
  1042. if (!png_muldiv(&xy->bluex, XYZ->blue_X, PNG_FP_1, d)) return 1;
  1043. if (!png_muldiv(&xy->bluey, XYZ->blue_Y, PNG_FP_1, d)) return 1;
  1044. dwhite += d;
  1045. whiteX += XYZ->blue_X;
  1046. whiteY += XYZ->blue_Y;
  1047. /* The reference white is simply the sum of the end-point (X,Y,Z) vectors,
  1048. * thus:
  1049. */
  1050. if (!png_muldiv(&xy->whitex, whiteX, PNG_FP_1, dwhite)) return 1;
  1051. if (!png_muldiv(&xy->whitey, whiteY, PNG_FP_1, dwhite)) return 1;
  1052. return 0;
  1053. }
  1054. static int
  1055. png_XYZ_from_xy(png_XYZ *XYZ, const png_xy *xy)
  1056. {
  1057. png_fixed_point red_inverse, green_inverse, blue_scale;
  1058. png_fixed_point left, right, denominator;
  1059. /* Check xy and, implicitly, z. Note that wide gamut color spaces typically
  1060. * have end points with 0 tristimulus values (these are impossible end
  1061. * points, but they are used to cover the possible colors). We check
  1062. * xy->whitey against 5, not 0, to avoid a possible integer overflow.
  1063. */
  1064. if (xy->redx < 0 || xy->redx > PNG_FP_1) return 1;
  1065. if (xy->redy < 0 || xy->redy > PNG_FP_1-xy->redx) return 1;
  1066. if (xy->greenx < 0 || xy->greenx > PNG_FP_1) return 1;
  1067. if (xy->greeny < 0 || xy->greeny > PNG_FP_1-xy->greenx) return 1;
  1068. if (xy->bluex < 0 || xy->bluex > PNG_FP_1) return 1;
  1069. if (xy->bluey < 0 || xy->bluey > PNG_FP_1-xy->bluex) return 1;
  1070. if (xy->whitex < 0 || xy->whitex > PNG_FP_1) return 1;
  1071. if (xy->whitey < 5 || xy->whitey > PNG_FP_1-xy->whitex) return 1;
  1072. /* The reverse calculation is more difficult because the original tristimulus
  1073. * value had 9 independent values (red,green,blue)x(X,Y,Z) however only 8
  1074. * derived values were recorded in the cHRM chunk;
  1075. * (red,green,blue,white)x(x,y). This loses one degree of freedom and
  1076. * therefore an arbitrary ninth value has to be introduced to undo the
  1077. * original transformations.
  1078. *
  1079. * Think of the original end-points as points in (X,Y,Z) space. The
  1080. * chromaticity values (c) have the property:
  1081. *
  1082. * C
  1083. * c = ---------
  1084. * X + Y + Z
  1085. *
  1086. * For each c (x,y,z) from the corresponding original C (X,Y,Z). Thus the
  1087. * three chromaticity values (x,y,z) for each end-point obey the
  1088. * relationship:
  1089. *
  1090. * x + y + z = 1
  1091. *
  1092. * This describes the plane in (X,Y,Z) space that intersects each axis at the
  1093. * value 1.0; call this the chromaticity plane. Thus the chromaticity
  1094. * calculation has scaled each end-point so that it is on the x+y+z=1 plane
  1095. * and chromaticity is the intersection of the vector from the origin to the
  1096. * (X,Y,Z) value with the chromaticity plane.
  1097. *
  1098. * To fully invert the chromaticity calculation we would need the three
  1099. * end-point scale factors, (red-scale, green-scale, blue-scale), but these
  1100. * were not recorded. Instead we calculated the reference white (X,Y,Z) and
  1101. * recorded the chromaticity of this. The reference white (X,Y,Z) would have
  1102. * given all three of the scale factors since:
  1103. *
  1104. * color-C = color-c * color-scale
  1105. * white-C = red-C + green-C + blue-C
  1106. * = red-c*red-scale + green-c*green-scale + blue-c*blue-scale
  1107. *
  1108. * But cHRM records only white-x and white-y, so we have lost the white scale
  1109. * factor:
  1110. *
  1111. * white-C = white-c*white-scale
  1112. *
  1113. * To handle this the inverse transformation makes an arbitrary assumption
  1114. * about white-scale:
  1115. *
  1116. * Assume: white-Y = 1.0
  1117. * Hence: white-scale = 1/white-y
  1118. * Or: red-Y + green-Y + blue-Y = 1.0
  1119. *
  1120. * Notice the last statement of the assumption gives an equation in three of
  1121. * the nine values we want to calculate. 8 more equations come from the
  1122. * above routine as summarised at the top above (the chromaticity
  1123. * calculation):
  1124. *
  1125. * Given: color-x = color-X / (color-X + color-Y + color-Z)
  1126. * Hence: (color-x - 1)*color-X + color.x*color-Y + color.x*color-Z = 0
  1127. *
  1128. * This is 9 simultaneous equations in the 9 variables "color-C" and can be
  1129. * solved by Cramer's rule. Cramer's rule requires calculating 10 9x9 matrix
  1130. * determinants, however this is not as bad as it seems because only 28 of
  1131. * the total of 90 terms in the various matrices are non-zero. Nevertheless
  1132. * Cramer's rule is notoriously numerically unstable because the determinant
  1133. * calculation involves the difference of large, but similar, numbers. It is
  1134. * difficult to be sure that the calculation is stable for real world values
  1135. * and it is certain that it becomes unstable where the end points are close
  1136. * together.
  1137. *
  1138. * So this code uses the perhaps slightly less optimal but more
  1139. * understandable and totally obvious approach of calculating color-scale.
  1140. *
  1141. * This algorithm depends on the precision in white-scale and that is
  1142. * (1/white-y), so we can immediately see that as white-y approaches 0 the
  1143. * accuracy inherent in the cHRM chunk drops off substantially.
  1144. *
  1145. * libpng arithmetic: a simple invertion of the above equations
  1146. * ------------------------------------------------------------
  1147. *
  1148. * white_scale = 1/white-y
  1149. * white-X = white-x * white-scale
  1150. * white-Y = 1.0
  1151. * white-Z = (1 - white-x - white-y) * white_scale
  1152. *
  1153. * white-C = red-C + green-C + blue-C
  1154. * = red-c*red-scale + green-c*green-scale + blue-c*blue-scale
  1155. *
  1156. * This gives us three equations in (red-scale,green-scale,blue-scale) where
  1157. * all the coefficients are now known:
  1158. *
  1159. * red-x*red-scale + green-x*green-scale + blue-x*blue-scale
  1160. * = white-x/white-y
  1161. * red-y*red-scale + green-y*green-scale + blue-y*blue-scale = 1
  1162. * red-z*red-scale + green-z*green-scale + blue-z*blue-scale
  1163. * = (1 - white-x - white-y)/white-y
  1164. *
  1165. * In the last equation color-z is (1 - color-x - color-y) so we can add all
  1166. * three equations together to get an alternative third:
  1167. *
  1168. * red-scale + green-scale + blue-scale = 1/white-y = white-scale
  1169. *
  1170. * So now we have a Cramer's rule solution where the determinants are just
  1171. * 3x3 - far more tractible. Unfortunately 3x3 determinants still involve
  1172. * multiplication of three coefficients so we can't guarantee to avoid
  1173. * overflow in the libpng fixed point representation. Using Cramer's rule in
  1174. * floating point is probably a good choice here, but it's not an option for
  1175. * fixed point. Instead proceed to simplify the first two equations by
  1176. * eliminating what is likely to be the largest value, blue-scale:
  1177. *
  1178. * blue-scale = white-scale - red-scale - green-scale
  1179. *
  1180. * Hence:
  1181. *
  1182. * (red-x - blue-x)*red-scale + (green-x - blue-x)*green-scale =
  1183. * (white-x - blue-x)*white-scale
  1184. *
  1185. * (red-y - blue-y)*red-scale + (green-y - blue-y)*green-scale =
  1186. * 1 - blue-y*white-scale
  1187. *
  1188. * And now we can trivially solve for (red-scale,green-scale):
  1189. *
  1190. * green-scale =
  1191. * (white-x - blue-x)*white-scale - (red-x - blue-x)*red-scale
  1192. * -----------------------------------------------------------
  1193. * green-x - blue-x
  1194. *
  1195. * red-scale =
  1196. * 1 - blue-y*white-scale - (green-y - blue-y) * green-scale
  1197. * ---------------------------------------------------------
  1198. * red-y - blue-y
  1199. *
  1200. * Hence:
  1201. *
  1202. * red-scale =
  1203. * ( (green-x - blue-x) * (white-y - blue-y) -
  1204. * (green-y - blue-y) * (white-x - blue-x) ) / white-y
  1205. * -------------------------------------------------------------------------
  1206. * (green-x - blue-x)*(red-y - blue-y)-(green-y - blue-y)*(red-x - blue-x)
  1207. *
  1208. * green-scale =
  1209. * ( (red-y - blue-y) * (white-x - blue-x) -
  1210. * (red-x - blue-x) * (white-y - blue-y) ) / white-y
  1211. * -------------------------------------------------------------------------
  1212. * (green-x - blue-x)*(red-y - blue-y)-(green-y - blue-y)*(red-x - blue-x)
  1213. *
  1214. * Accuracy:
  1215. * The input values have 5 decimal digits of accuracy. The values are all in
  1216. * the range 0 < value < 1, so simple products are in the same range but may
  1217. * need up to 10 decimal digits to preserve the original precision and avoid
  1218. * underflow. Because we are using a 32-bit signed representation we cannot
  1219. * match this; the best is a little over 9 decimal digits, less than 10.
  1220. *
  1221. * The approach used here is to preserve the maximum precision within the
  1222. * signed representation. Because the red-scale calculation above uses the
  1223. * difference between two products of values that must be in the range -1..+1
  1224. * it is sufficient to divide the product by 7; ceil(100,000/32767*2). The
  1225. * factor is irrelevant in the calculation because it is applied to both
  1226. * numerator and denominator.
  1227. *
  1228. * Note that the values of the differences of the products of the
  1229. * chromaticities in the above equations tend to be small, for example for
  1230. * the sRGB chromaticities they are:
  1231. *
  1232. * red numerator: -0.04751
  1233. * green numerator: -0.08788
  1234. * denominator: -0.2241 (without white-y multiplication)
  1235. *
  1236. * The resultant Y coefficients from the chromaticities of some widely used
  1237. * color space definitions are (to 15 decimal places):
  1238. *
  1239. * sRGB
  1240. * 0.212639005871510 0.715168678767756 0.072192315360734
  1241. * Kodak ProPhoto
  1242. * 0.288071128229293 0.711843217810102 0.000085653960605
  1243. * Adobe RGB
  1244. * 0.297344975250536 0.627363566255466 0.075291458493998
  1245. * Adobe Wide Gamut RGB
  1246. * 0.258728243040113 0.724682314948566 0.016589442011321
  1247. */
  1248. /* By the argument, above overflow should be impossible here. The return
  1249. * value of 2 indicates an internal error to the caller.
  1250. */
  1251. if (!png_muldiv(&left, xy->greenx-xy->bluex, xy->redy - xy->bluey, 7))
  1252. return 2;
  1253. if (!png_muldiv(&right, xy->greeny-xy->bluey, xy->redx - xy->bluex, 7))
  1254. return 2;
  1255. denominator = left - right;
  1256. /* Now find the red numerator. */
  1257. if (!png_muldiv(&left, xy->greenx-xy->bluex, xy->whitey-xy->bluey, 7))
  1258. return 2;
  1259. if (!png_muldiv(&right, xy->greeny-xy->bluey, xy->whitex-xy->bluex, 7))
  1260. return 2;
  1261. /* Overflow is possible here and it indicates an extreme set of PNG cHRM
  1262. * chunk values. This calculation actually returns the reciprocal of the
  1263. * scale value because this allows us to delay the multiplication of white-y
  1264. * into the denominator, which tends to produce a small number.
  1265. */
  1266. if (!png_muldiv(&red_inverse, xy->whitey, denominator, left-right) ||
  1267. red_inverse <= xy->whitey /* r+g+b scales = white scale */)
  1268. return 1;
  1269. /* Similarly for green_inverse: */
  1270. if (!png_muldiv(&left, xy->redy-xy->bluey, xy->whitex-xy->bluex, 7))
  1271. return 2;
  1272. if (!png_muldiv(&right, xy->redx-xy->bluex, xy->whitey-xy->bluey, 7))
  1273. return 2;
  1274. if (!png_muldiv(&green_inverse, xy->whitey, denominator, left-right) ||
  1275. green_inverse <= xy->whitey)
  1276. return 1;
  1277. /* And the blue scale, the checks above guarantee this can't overflow but it
  1278. * can still produce 0 for extreme cHRM values.
  1279. */
  1280. blue_scale = png_reciprocal(xy->whitey) - png_reciprocal(red_inverse) -
  1281. png_reciprocal(green_inverse);
  1282. if (blue_scale <= 0) return 1;
  1283. /* And fill in the png_XYZ: */
  1284. if (!png_muldiv(&XYZ->red_X, xy->redx, PNG_FP_1, red_inverse)) return 1;
  1285. if (!png_muldiv(&XYZ->red_Y, xy->redy, PNG_FP_1, red_inverse)) return 1;
  1286. if (!png_muldiv(&XYZ->red_Z, PNG_FP_1 - xy->redx - xy->redy, PNG_FP_1,
  1287. red_inverse))
  1288. return 1;
  1289. if (!png_muldiv(&XYZ->green_X, xy->greenx, PNG_FP_1, green_inverse))
  1290. return 1;
  1291. if (!png_muldiv(&XYZ->green_Y, xy->greeny, PNG_FP_1, green_inverse))
  1292. return 1;
  1293. if (!png_muldiv(&XYZ->green_Z, PNG_FP_1 - xy->greenx - xy->greeny, PNG_FP_1,
  1294. green_inverse))
  1295. return 1;
  1296. if (!png_muldiv(&XYZ->blue_X, xy->bluex, blue_scale, PNG_FP_1)) return 1;
  1297. if (!png_muldiv(&XYZ->blue_Y, xy->bluey, blue_scale, PNG_FP_1)) return 1;
  1298. if (!png_muldiv(&XYZ->blue_Z, PNG_FP_1 - xy->bluex - xy->bluey, blue_scale,
  1299. PNG_FP_1))
  1300. return 1;
  1301. return 0; /*success*/
  1302. }
  1303. static int
  1304. png_XYZ_normalize(png_XYZ *XYZ)
  1305. {
  1306. png_int_32 Y;
  1307. if (XYZ->red_Y < 0 || XYZ->green_Y < 0 || XYZ->blue_Y < 0 ||
  1308. XYZ->red_X < 0 || XYZ->green_X < 0 || XYZ->blue_X < 0 ||
  1309. XYZ->red_Z < 0 || XYZ->green_Z < 0 || XYZ->blue_Z < 0)
  1310. return 1;
  1311. /* Normalize by scaling so the sum of the end-point Y values is PNG_FP_1.
  1312. * IMPLEMENTATION NOTE: ANSI requires signed overflow not to occur, therefore
  1313. * relying on addition of two positive values producing a negative one is not
  1314. * safe.
  1315. */
  1316. Y = XYZ->red_Y;
  1317. if (0x7fffffff - Y < XYZ->green_X) return 1;
  1318. Y += XYZ->green_Y;
  1319. if (0x7fffffff - Y < XYZ->blue_X) return 1;
  1320. Y += XYZ->blue_Y;
  1321. if (Y != PNG_FP_1)
  1322. {
  1323. if (!png_muldiv(&XYZ->red_X, XYZ->red_X, PNG_FP_1, Y)) return 1;
  1324. if (!png_muldiv(&XYZ->red_Y, XYZ->red_Y, PNG_FP_1, Y)) return 1;
  1325. if (!png_muldiv(&XYZ->red_Z, XYZ->red_Z, PNG_FP_1, Y)) return 1;
  1326. if (!png_muldiv(&XYZ->green_X, XYZ->green_X, PNG_FP_1, Y)) return 1;
  1327. if (!png_muldiv(&XYZ->green_Y, XYZ->green_Y, PNG_FP_1, Y)) return 1;
  1328. if (!png_muldiv(&XYZ->green_Z, XYZ->green_Z, PNG_FP_1, Y)) return 1;
  1329. if (!png_muldiv(&XYZ->blue_X, XYZ->blue_X, PNG_FP_1, Y)) return 1;
  1330. if (!png_muldiv(&XYZ->blue_Y, XYZ->blue_Y, PNG_FP_1, Y)) return 1;
  1331. if (!png_muldiv(&XYZ->blue_Z, XYZ->blue_Z, PNG_FP_1, Y)) return 1;
  1332. }
  1333. return 0;
  1334. }
  1335. static int
  1336. png_colorspace_endpoints_match(const png_xy *xy1, const png_xy *xy2, int delta)
  1337. {
  1338. /* Allow an error of +/-0.01 (absolute value) on each chromaticity */
  1339. return !(PNG_OUT_OF_RANGE(xy1->whitex, xy2->whitex,delta) ||
  1340. PNG_OUT_OF_RANGE(xy1->whitey, xy2->whitey,delta) ||
  1341. PNG_OUT_OF_RANGE(xy1->redx, xy2->redx, delta) ||
  1342. PNG_OUT_OF_RANGE(xy1->redy, xy2->redy, delta) ||
  1343. PNG_OUT_OF_RANGE(xy1->greenx, xy2->greenx,delta) ||
  1344. PNG_OUT_OF_RANGE(xy1->greeny, xy2->greeny,delta) ||
  1345. PNG_OUT_OF_RANGE(xy1->bluex, xy2->bluex, delta) ||
  1346. PNG_OUT_OF_RANGE(xy1->bluey, xy2->bluey, delta));
  1347. }
  1348. /* Added in libpng-1.6.0, a different check for the validity of a set of cHRM
  1349. * chunk chromaticities. Earlier checks used to simply look for the overflow
  1350. * condition (where the determinant of the matrix to solve for XYZ ends up zero
  1351. * because the chromaticity values are not all distinct.) Despite this it is
  1352. * theoretically possible to produce chromaticities that are apparently valid
  1353. * but that rapidly degrade to invalid, potentially crashing, sets because of
  1354. * arithmetic inaccuracies when calculations are performed on them. The new
  1355. * check is to round-trip xy -> XYZ -> xy and then check that the result is
  1356. * within a small percentage of the original.
  1357. */
  1358. static int
  1359. png_colorspace_check_xy(png_XYZ *XYZ, const png_xy *xy)
  1360. {
  1361. int result;
  1362. png_xy xy_test;
  1363. /* As a side-effect this routine also returns the XYZ endpoints. */
  1364. result = png_XYZ_from_xy(XYZ, xy);
  1365. if (result) return result;
  1366. result = png_xy_from_XYZ(&xy_test, XYZ);
  1367. if (result) return result;
  1368. if (png_colorspace_endpoints_match(xy, &xy_test,
  1369. 5/*actually, the math is pretty accurate*/))
  1370. return 0;
  1371. /* Too much slip */
  1372. return 1;
  1373. }
  1374. /* This is the check going the other way. The XYZ is modified to normalize it
  1375. * (another side-effect) and the xy chromaticities are returned.
  1376. */
  1377. static int
  1378. png_colorspace_check_XYZ(png_xy *xy, png_XYZ *XYZ)
  1379. {
  1380. int result;
  1381. png_XYZ XYZtemp;
  1382. result = png_XYZ_normalize(XYZ);
  1383. if (result) return result;
  1384. result = png_xy_from_XYZ(xy, XYZ);
  1385. if (result) return result;
  1386. XYZtemp = *XYZ;
  1387. return png_colorspace_check_xy(&XYZtemp, xy);
  1388. }
  1389. /* Used to check for an endpoint match against sRGB */
  1390. static const png_xy sRGB_xy = /* From ITU-R BT.709-3 */
  1391. {
  1392. /* color x y */
  1393. /* red */ 64000, 33000,
  1394. /* green */ 30000, 60000,
  1395. /* blue */ 15000, 6000,
  1396. /* white */ 31270, 32900
  1397. };
  1398. static int
  1399. png_colorspace_set_xy_and_XYZ(png_const_structrp png_ptr,
  1400. png_colorspacerp colorspace, const png_xy *xy, const png_XYZ *XYZ,
  1401. int preferred)
  1402. {
  1403. if (colorspace->flags & PNG_COLORSPACE_INVALID)
  1404. return 0;
  1405. /* The consistency check is performed on the chromaticities; this factors out
  1406. * variations because of the normalization (or not) of the end point Y
  1407. * values.
  1408. */
  1409. if (preferred < 2 && (colorspace->flags & PNG_COLORSPACE_HAVE_ENDPOINTS))
  1410. {
  1411. /* The end points must be reasonably close to any we already have. The
  1412. * following allows an error of up to +/-.001
  1413. */
  1414. if (!png_colorspace_endpoints_match(xy, &colorspace->end_points_xy, 100))
  1415. {
  1416. colorspace->flags |= PNG_COLORSPACE_INVALID;
  1417. png_benign_error(png_ptr, "inconsistent chromaticities");
  1418. return 0; /* failed */
  1419. }
  1420. /* Only overwrite with preferred values */
  1421. if (!preferred)
  1422. return 1; /* ok, but no change */
  1423. }
  1424. colorspace->end_points_xy = *xy;
  1425. colorspace->end_points_XYZ = *XYZ;
  1426. colorspace->flags |= PNG_COLORSPACE_HAVE_ENDPOINTS;
  1427. /* The end points are normally quoted to two decimal digits, so allow +/-0.01
  1428. * on this test.
  1429. */
  1430. if (png_colorspace_endpoints_match(xy, &sRGB_xy, 1000))
  1431. colorspace->flags |= PNG_COLORSPACE_ENDPOINTS_MATCH_sRGB;
  1432. else
  1433. colorspace->flags &= PNG_COLORSPACE_CANCEL(
  1434. PNG_COLORSPACE_ENDPOINTS_MATCH_sRGB);
  1435. return 2; /* ok and changed */
  1436. }
  1437. int /* PRIVATE */
  1438. png_colorspace_set_chromaticities(png_const_structrp png_ptr,
  1439. png_colorspacerp colorspace, const png_xy *xy, int preferred)
  1440. {
  1441. /* We must check the end points to ensure they are reasonable - in the past
  1442. * color management systems have crashed as a result of getting bogus
  1443. * colorant values, while this isn't the fault of libpng it is the
  1444. * responsibility of libpng because PNG carries the bomb and libpng is in a
  1445. * position to protect against it.
  1446. */
  1447. png_XYZ XYZ;
  1448. switch (png_colorspace_check_xy(&XYZ, xy))
  1449. {
  1450. case 0: /* success */
  1451. return png_colorspace_set_xy_and_XYZ(png_ptr, colorspace, xy, &XYZ,
  1452. preferred);
  1453. case 1:
  1454. /* We can't invert the chromaticities so we can't produce value XYZ
  1455. * values. Likely as not a color management system will fail too.
  1456. */
  1457. colorspace->flags |= PNG_COLORSPACE_INVALID;
  1458. png_benign_error(png_ptr, "invalid chromaticities");
  1459. break;
  1460. default:
  1461. /* libpng is broken; this should be a warning but if it happens we
  1462. * want error reports so for the moment it is an error.
  1463. */
  1464. colorspace->flags |= PNG_COLORSPACE_INVALID;
  1465. png_error(png_ptr, "internal error checking chromaticities");
  1466. break;
  1467. }
  1468. return 0; /* failed */
  1469. }
  1470. int /* PRIVATE */
  1471. png_colorspace_set_endpoints(png_const_structrp png_ptr,
  1472. png_colorspacerp colorspace, const png_XYZ *XYZ_in, int preferred)
  1473. {
  1474. png_XYZ XYZ = *XYZ_in;
  1475. png_xy xy;
  1476. switch (png_colorspace_check_XYZ(&xy, &XYZ))
  1477. {
  1478. case 0:
  1479. return png_colorspace_set_xy_and_XYZ(png_ptr, colorspace, &xy, &XYZ,
  1480. preferred);
  1481. case 1:
  1482. /* End points are invalid. */
  1483. colorspace->flags |= PNG_COLORSPACE_INVALID;
  1484. png_benign_error(png_ptr, "invalid end points");
  1485. break;
  1486. default:
  1487. colorspace->flags |= PNG_COLORSPACE_INVALID;
  1488. png_error(png_ptr, "internal error checking chromaticities");
  1489. break;
  1490. }
  1491. return 0; /* failed */
  1492. }
  1493. #if defined(PNG_sRGB_SUPPORTED) || defined(PNG_iCCP_SUPPORTED)
  1494. /* Error message generation */
  1495. static char
  1496. png_icc_tag_char(png_uint_32 byte)
  1497. {
  1498. byte &= 0xff;
  1499. if (byte >= 32 && byte <= 126)
  1500. return (char)byte;
  1501. else
  1502. return '?';
  1503. }
  1504. static void
  1505. png_icc_tag_name(char *name, png_uint_32 tag)
  1506. {
  1507. name[0] = '\'';
  1508. name[1] = png_icc_tag_char(tag >> 24);
  1509. name[2] = png_icc_tag_char(tag >> 16);
  1510. name[3] = png_icc_tag_char(tag >> 8);
  1511. name[4] = png_icc_tag_char(tag );
  1512. name[5] = '\'';
  1513. }
  1514. static int
  1515. is_ICC_signature_char(png_alloc_size_t it)
  1516. {
  1517. return it == 32 || (it >= 48 && it <= 57) || (it >= 65 && it <= 90) ||
  1518. (it >= 97 && it <= 122);
  1519. }
  1520. static int
  1521. is_ICC_signature(png_alloc_size_t it)
  1522. {
  1523. return is_ICC_signature_char(it >> 24) /* checks all the top bits */ &&
  1524. is_ICC_signature_char((it >> 16) & 0xff) &&
  1525. is_ICC_signature_char((it >> 8) & 0xff) &&
  1526. is_ICC_signature_char(it & 0xff);
  1527. }
  1528. static int
  1529. png_icc_profile_error(png_const_structrp png_ptr, png_colorspacerp colorspace,
  1530. png_const_charp name, png_alloc_size_t value, png_const_charp reason)
  1531. {
  1532. size_t pos;
  1533. char message[196]; /* see below for calculation */
  1534. if (colorspace != NULL)
  1535. colorspace->flags |= PNG_COLORSPACE_INVALID;
  1536. pos = png_safecat(message, (sizeof message), 0, "profile '"); /* 9 chars */
  1537. pos = png_safecat(message, pos+79, pos, name); /* Truncate to 79 chars */
  1538. pos = png_safecat(message, (sizeof message), pos, "': "); /* +2 = 90 */
  1539. if (is_ICC_signature(value))
  1540. {
  1541. /* So 'value' is at most 4 bytes and the following cast is safe */
  1542. png_icc_tag_name(message+pos, (png_uint_32)value);
  1543. pos += 6; /* total +8; less than the else clause */
  1544. message[pos++] = ':';
  1545. message[pos++] = ' ';
  1546. }
  1547. # ifdef PNG_WARNINGS_SUPPORTED
  1548. else
  1549. {
  1550. char number[PNG_NUMBER_BUFFER_SIZE]; /* +24 = 114*/
  1551. pos = png_safecat(message, (sizeof message), pos,
  1552. png_format_number(number, number+(sizeof number),
  1553. PNG_NUMBER_FORMAT_x, value));
  1554. pos = png_safecat(message, (sizeof message), pos, "h: "); /*+2 = 116*/
  1555. }
  1556. # endif
  1557. /* The 'reason' is an arbitrary message, allow +79 maximum 195 */
  1558. pos = png_safecat(message, (sizeof message), pos, reason);
  1559. PNG_UNUSED(pos)
  1560. /* This is recoverable, but make it unconditionally an app_error on write to
  1561. * avoid writing invalid ICC profiles into PNG files. (I.e. we handle them
  1562. * on read, with a warning, but on write unless the app turns off
  1563. * application errors the PNG won't be written.)
  1564. */
  1565. png_chunk_report(png_ptr, message,
  1566. (colorspace != NULL) ? PNG_CHUNK_ERROR : PNG_CHUNK_WRITE_ERROR);
  1567. return 0;
  1568. }
  1569. #endif /* sRGB || iCCP */
  1570. #ifdef PNG_sRGB_SUPPORTED
  1571. int /* PRIVATE */
  1572. png_colorspace_set_sRGB(png_const_structrp png_ptr, png_colorspacerp colorspace,
  1573. int intent)
  1574. {
  1575. /* sRGB sets known gamma, end points and (from the chunk) intent. */
  1576. /* IMPORTANT: these are not necessarily the values found in an ICC profile
  1577. * because ICC profiles store values adapted to a D50 environment; it is
  1578. * expected that the ICC profile mediaWhitePointTag will be D50, see the
  1579. * checks and code elsewhere to understand this better.
  1580. *
  1581. * These XYZ values, which are accurate to 5dp, produce rgb to gray
  1582. * coefficients of (6968,23435,2366), which are reduced (because they add up
  1583. * to 32769 not 32768) to (6968,23434,2366). These are the values that
  1584. * libpng has traditionally used (and are the best values given the 15bit
  1585. * algorithm used by the rgb to gray code.)
  1586. */
  1587. static const png_XYZ sRGB_XYZ = /* D65 XYZ (*not* the D50 adapted values!) */
  1588. {
  1589. /* color X Y Z */
  1590. /* red */ 41239, 21264, 1933,
  1591. /* green */ 35758, 71517, 11919,
  1592. /* blue */ 18048, 7219, 95053
  1593. };
  1594. /* Do nothing if the colorspace is already invalidated. */
  1595. if (colorspace->flags & PNG_COLORSPACE_INVALID)
  1596. return 0;
  1597. /* Check the intent, then check for existing settings. It is valid for the
  1598. * PNG file to have cHRM or gAMA chunks along with sRGB, but the values must
  1599. * be consistent with the correct values. If, however, this function is
  1600. * called below because an iCCP chunk matches sRGB then it is quite
  1601. * conceivable that an older app recorded incorrect gAMA and cHRM because of
  1602. * an incorrect calculation based on the values in the profile - this does
  1603. * *not* invalidate the profile (though it still produces an error, which can
  1604. * be ignored.)
  1605. */
  1606. if (intent < 0 || intent >= PNG_sRGB_INTENT_LAST)
  1607. return png_icc_profile_error(png_ptr, colorspace, "sRGB",
  1608. (unsigned)intent, "invalid sRGB rendering intent");
  1609. if ((colorspace->flags & PNG_COLORSPACE_HAVE_INTENT) != 0 &&
  1610. colorspace->rendering_intent != intent)
  1611. return png_icc_profile_error(png_ptr, colorspace, "sRGB",
  1612. (unsigned)intent, "inconsistent rendering intents");
  1613. if ((colorspace->flags & PNG_COLORSPACE_FROM_sRGB) != 0)
  1614. {
  1615. png_benign_error(png_ptr, "duplicate sRGB information ignored");
  1616. return 0;
  1617. }
  1618. /* If the standard sRGB cHRM chunk does not match the one from the PNG file
  1619. * warn but overwrite the value with the correct one.
  1620. */
  1621. if ((colorspace->flags & PNG_COLORSPACE_HAVE_ENDPOINTS) != 0 &&
  1622. !png_colorspace_endpoints_match(&sRGB_xy, &colorspace->end_points_xy,
  1623. 100))
  1624. png_chunk_report(png_ptr, "cHRM chunk does not match sRGB",
  1625. PNG_CHUNK_ERROR);
  1626. /* This check is just done for the error reporting - the routine always
  1627. * returns true when the 'from' argument corresponds to sRGB (2).
  1628. */
  1629. (void)png_colorspace_check_gamma(png_ptr, colorspace, PNG_GAMMA_sRGB_INVERSE,
  1630. 2/*from sRGB*/);
  1631. /* intent: bugs in GCC force 'int' to be used as the parameter type. */
  1632. colorspace->rendering_intent = (png_uint_16)intent;
  1633. colorspace->flags |= PNG_COLORSPACE_HAVE_INTENT;
  1634. /* endpoints */
  1635. colorspace->end_points_xy = sRGB_xy;
  1636. colorspace->end_points_XYZ = sRGB_XYZ;
  1637. colorspace->flags |=
  1638. (PNG_COLORSPACE_HAVE_ENDPOINTS|PNG_COLORSPACE_ENDPOINTS_MATCH_sRGB);
  1639. /* gamma */
  1640. colorspace->gamma = PNG_GAMMA_sRGB_INVERSE;
  1641. colorspace->flags |= PNG_COLORSPACE_HAVE_GAMMA;
  1642. /* Finally record that we have an sRGB profile */
  1643. colorspace->flags |=
  1644. (PNG_COLORSPACE_MATCHES_sRGB|PNG_COLORSPACE_FROM_sRGB);
  1645. return 1; /* set */
  1646. }
  1647. #endif /* sRGB */
  1648. #ifdef PNG_iCCP_SUPPORTED
  1649. /* Encoded value of D50 as an ICC XYZNumber. From the ICC 2010 spec the value
  1650. * is XYZ(0.9642,1.0,0.8249), which scales to:
  1651. *
  1652. * (63189.8112, 65536, 54060.6464)
  1653. */
  1654. static const png_byte D50_nCIEXYZ[12] =
  1655. { 0x00, 0x00, 0xf6, 0xd6, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0xd3, 0x2d };
  1656. int /* PRIVATE */
  1657. png_icc_check_length(png_const_structrp png_ptr, png_colorspacerp colorspace,
  1658. png_const_charp name, png_uint_32 profile_length)
  1659. {
  1660. if (profile_length < 132)
  1661. return png_icc_profile_error(png_ptr, colorspace, name, profile_length,
  1662. "too short");
  1663. if (profile_length & 3)
  1664. return png_icc_profile_error(png_ptr, colorspace, name, profile_length,
  1665. "invalid length");
  1666. return 1;
  1667. }
  1668. int /* PRIVATE */
  1669. png_icc_check_header(png_const_structrp png_ptr, png_colorspacerp colorspace,
  1670. png_const_charp name, png_uint_32 profile_length,
  1671. png_const_bytep profile/* first 132 bytes only */, int color_type)
  1672. {
  1673. png_uint_32 temp;
  1674. /* Length check; this cannot be ignored in this code because profile_length
  1675. * is used later to check the tag table, so even if the profile seems over
  1676. * long profile_length from the caller must be correct. The caller can fix
  1677. * this up on read or write by just passing in the profile header length.
  1678. */
  1679. temp = png_get_uint_32(profile);
  1680. if (temp != profile_length)
  1681. return png_icc_profile_error(png_ptr, colorspace, name, temp,
  1682. "length does not match profile");
  1683. temp = png_get_uint_32(profile+128); /* tag count: 12 bytes/tag */
  1684. if (temp > 357913930 || /* (2^32-4-132)/12: maximum possible tag count */
  1685. profile_length < 132+12*temp) /* truncated tag table */
  1686. return png_icc_profile_error(png_ptr, colorspace, name, temp,
  1687. "tag count too large");
  1688. /* The 'intent' must be valid or we can't store it, ICC limits the intent to
  1689. * 16 bits.
  1690. */
  1691. temp = png_get_uint_32(profile+64);
  1692. if (temp >= 0xffff) /* The ICC limit */
  1693. return png_icc_profile_error(png_ptr, colorspace, name, temp,
  1694. "invalid rendering intent");
  1695. /* This is just a warning because the profile may be valid in future
  1696. * versions.
  1697. */
  1698. if (temp >= PNG_sRGB_INTENT_LAST)
  1699. (void)png_icc_profile_error(png_ptr, NULL, name, temp,
  1700. "intent outside defined range");
  1701. /* At this point the tag table can't be checked because it hasn't necessarily
  1702. * been loaded; however, various header fields can be checked. These checks
  1703. * are for values permitted by the PNG spec in an ICC profile; the PNG spec
  1704. * restricts the profiles that can be passed in an iCCP chunk (they must be
  1705. * appropriate to processing PNG data!)
  1706. */
  1707. /* Data checks (could be skipped). These checks must be independent of the
  1708. * version number; however, the version number doesn't accomodate changes in
  1709. * the header fields (just the known tags and the interpretation of the
  1710. * data.)
  1711. */
  1712. temp = png_get_uint_32(profile+36); /* signature 'ascp' */
  1713. if (temp != 0x61637370)
  1714. return png_icc_profile_error(png_ptr, colorspace, name, temp,
  1715. "invalid signature");
  1716. /* Currently the PCS illuminant/adopted white point (the computational
  1717. * white point) are required to be D50,
  1718. * however the profile contains a record of the illuminant so perhaps ICC
  1719. * expects to be able to change this in the future (despite the rationale in
  1720. * the introduction for using a fixed PCS adopted white.) Consequently the
  1721. * following is just a warning.
  1722. */
  1723. if (memcmp(profile+68, D50_nCIEXYZ, 12) != 0)
  1724. (void)png_icc_profile_error(png_ptr, NULL, name, 0/*no tag value*/,
  1725. "PCS illuminant is not D50");
  1726. /* The PNG spec requires this:
  1727. * "If the iCCP chunk is present, the image samples conform to the colour
  1728. * space represented by the embedded ICC profile as defined by the
  1729. * International Color Consortium [ICC]. The colour space of the ICC profile
  1730. * shall be an RGB colour space for colour images (PNG colour types 2, 3, and
  1731. * 6), or a greyscale colour space for greyscale images (PNG colour types 0
  1732. * and 4)."
  1733. *
  1734. * This checking code ensures the embedded profile (on either read or write)
  1735. * conforms to the specification requirements. Notice that an ICC 'gray'
  1736. * color-space profile contains the information to transform the monochrome
  1737. * data to XYZ or L*a*b (according to which PCS the profile uses) and this
  1738. * should be used in preference to the standard libpng K channel replication
  1739. * into R, G and B channels.
  1740. *
  1741. * Previously it was suggested that an RGB profile on grayscale data could be
  1742. * handled. However it it is clear that using an RGB profile in this context
  1743. * must be an error - there is no specification of what it means. Thus it is
  1744. * almost certainly more correct to ignore the profile.
  1745. */
  1746. temp = png_get_uint_32(profile+16); /* data colour space field */
  1747. switch (temp)
  1748. {
  1749. case 0x52474220: /* 'RGB ' */
  1750. if (!(color_type & PNG_COLOR_MASK_COLOR))
  1751. return png_icc_profile_error(png_ptr, colorspace, name, temp,
  1752. "RGB color space not permitted on grayscale PNG");
  1753. break;
  1754. case 0x47524159: /* 'GRAY' */
  1755. if (color_type & PNG_COLOR_MASK_COLOR)
  1756. return png_icc_profile_error(png_ptr, colorspace, name, temp,
  1757. "Gray color space not permitted on RGB PNG");
  1758. break;
  1759. default:
  1760. return png_icc_profile_error(png_ptr, colorspace, name, temp,
  1761. "invalid ICC profile color space");
  1762. }
  1763. /* It is up to the application to check that the profile class matches the
  1764. * application requirements; the spec provides no guidance, but it's pretty
  1765. * weird if the profile is not scanner ('scnr'), monitor ('mntr'), printer
  1766. * ('prtr') or 'spac' (for generic color spaces). Issue a warning in these
  1767. * cases. Issue an error for device link or abstract profiles - these don't
  1768. * contain the records necessary to transform the color-space to anything
  1769. * other than the target device (and not even that for an abstract profile).
  1770. * Profiles of these classes may not be embedded in images.
  1771. */
  1772. temp = png_get_uint_32(profile+12); /* profile/device class */
  1773. switch (temp)
  1774. {
  1775. case 0x73636E72: /* 'scnr' */
  1776. case 0x6D6E7472: /* 'mntr' */
  1777. case 0x70727472: /* 'prtr' */
  1778. case 0x73706163: /* 'spac' */
  1779. /* All supported */
  1780. break;
  1781. case 0x61627374: /* 'abst' */
  1782. /* May not be embedded in an image */
  1783. return png_icc_profile_error(png_ptr, colorspace, name, temp,
  1784. "invalid embedded Abstract ICC profile");
  1785. case 0x6C696E6B: /* 'link' */
  1786. /* DeviceLink profiles cannnot be interpreted in a non-device specific
  1787. * fashion, if an app uses the AToB0Tag in the profile the results are
  1788. * undefined unless the result is sent to the intended device,
  1789. * therefore a DeviceLink profile should not be found embedded in a
  1790. * PNG.
  1791. */
  1792. return png_icc_profile_error(png_ptr, colorspace, name, temp,
  1793. "unexpected DeviceLink ICC profile class");
  1794. case 0x6E6D636C: /* 'nmcl' */
  1795. /* A NamedColor profile is also device specific, however it doesn't
  1796. * contain an AToB0 tag that is open to misintrepretation. Almost
  1797. * certainly it will fail the tests below.
  1798. */
  1799. (void)png_icc_profile_error(png_ptr, NULL, name, temp,
  1800. "unexpected NamedColor ICC profile class");
  1801. break;
  1802. default:
  1803. /* To allow for future enhancements to the profile accept unrecognized
  1804. * profile classes with a warning, these then hit the test below on the
  1805. * tag content to ensure they are backward compatible with one of the
  1806. * understood profiles.
  1807. */
  1808. (void)png_icc_profile_error(png_ptr, NULL, name, temp,
  1809. "unrecognized ICC profile class");
  1810. break;
  1811. }
  1812. /* For any profile other than a device link one the PCS must be encoded
  1813. * either in XYZ or Lab.
  1814. */
  1815. temp = png_get_uint_32(profile+20);
  1816. switch (temp)
  1817. {
  1818. case 0x58595A20: /* 'XYZ ' */
  1819. case 0x4C616220: /* 'Lab ' */
  1820. break;
  1821. default:
  1822. return png_icc_profile_error(png_ptr, colorspace, name, temp,
  1823. "unexpected ICC PCS encoding");
  1824. }
  1825. return 1;
  1826. }
  1827. int /* PRIVATE */
  1828. png_icc_check_tag_table(png_const_structrp png_ptr, png_colorspacerp colorspace,
  1829. png_const_charp name, png_uint_32 profile_length,
  1830. png_const_bytep profile /* header plus whole tag table */)
  1831. {
  1832. png_uint_32 tag_count = png_get_uint_32(profile+128);
  1833. png_uint_32 itag;
  1834. png_const_bytep tag = profile+132; /* The first tag */
  1835. /* First scan all the tags in the table and add bits to the icc_info value
  1836. * (temporarily in 'tags').
  1837. */
  1838. for (itag=0; itag < tag_count; ++itag, tag += 12)
  1839. {
  1840. png_uint_32 tag_id = png_get_uint_32(tag+0);
  1841. png_uint_32 tag_start = png_get_uint_32(tag+4); /* must be aligned */
  1842. png_uint_32 tag_length = png_get_uint_32(tag+8);/* not padded */
  1843. /* The ICC specification does not exclude zero length tags, therefore the
  1844. * start might actually be anywhere if there is no data, but this would be
  1845. * a clear abuse of the intent of the standard so the start is checked for
  1846. * being in range. All defined tag types have an 8 byte header - a 4 byte
  1847. * type signature then 0.
  1848. */
  1849. if ((tag_start & 3) != 0)
  1850. {
  1851. /* CNHP730S.icc shipped with Microsoft Windows 64 violates this, it is
  1852. * only a warning here because libpng does not care about the
  1853. * alignment.
  1854. */
  1855. (void)png_icc_profile_error(png_ptr, NULL, name, tag_id,
  1856. "ICC profile tag start not a multiple of 4");
  1857. }
  1858. /* This is a hard error; potentially it can cause read outside the
  1859. * profile.
  1860. */
  1861. if (tag_start > profile_length || tag_length > profile_length - tag_start)
  1862. return png_icc_profile_error(png_ptr, colorspace, name, tag_id,
  1863. "ICC profile tag outside profile");
  1864. }
  1865. return 1; /* success, maybe with warnings */
  1866. }
  1867. #ifdef PNG_sRGB_SUPPORTED
  1868. /* Information about the known ICC sRGB profiles */
  1869. static const struct
  1870. {
  1871. png_uint_32 adler, crc, length;
  1872. png_uint_32 md5[4];
  1873. png_byte have_md5;
  1874. png_byte is_broken;
  1875. png_uint_16 intent;
  1876. # define PNG_MD5(a,b,c,d) { a, b, c, d }, (a!=0)||(b!=0)||(c!=0)||(d!=0)
  1877. # define PNG_ICC_CHECKSUM(adler, crc, md5, intent, broke, date, length, fname)\
  1878. { adler, crc, length, md5, broke, intent },
  1879. } png_sRGB_checks[] =
  1880. {
  1881. /* This data comes from contrib/tools/checksum-icc run on downloads of
  1882. * all four ICC sRGB profiles from www.color.org.
  1883. */
  1884. /* adler32, crc32, MD5[4], intent, date, length, file-name */
  1885. PNG_ICC_CHECKSUM(0x0a3fd9f6, 0x3b8772b9,
  1886. PNG_MD5(0x29f83dde, 0xaff255ae, 0x7842fae4, 0xca83390d), 0, 0,
  1887. "2009/03/27 21:36:31", 3048, "sRGB_IEC61966-2-1_black_scaled.icc")
  1888. /* ICC sRGB v2 perceptual no black-compensation: */
  1889. PNG_ICC_CHECKSUM(0x4909e5e1, 0x427ebb21,
  1890. PNG_MD5(0xc95bd637, 0xe95d8a3b, 0x0df38f99, 0xc1320389), 1, 0,
  1891. "2009/03/27 21:37:45", 3052, "sRGB_IEC61966-2-1_no_black_scaling.icc")
  1892. PNG_ICC_CHECKSUM(0xfd2144a1, 0x306fd8ae,
  1893. PNG_MD5(0xfc663378, 0x37e2886b, 0xfd72e983, 0x8228f1b8), 0, 0,
  1894. "2009/08/10 17:28:01", 60988, "sRGB_v4_ICC_preference_displayclass.icc")
  1895. /* ICC sRGB v4 perceptual */
  1896. PNG_ICC_CHECKSUM(0x209c35d2, 0xbbef7812,
  1897. PNG_MD5(0x34562abf, 0x994ccd06, 0x6d2c5721, 0xd0d68c5d), 0, 0,
  1898. "2007/07/25 00:05:37", 60960, "sRGB_v4_ICC_preference.icc")
  1899. /* The following profiles have no known MD5 checksum. If there is a match
  1900. * on the (empty) MD5 the other fields are used to attempt a match and
  1901. * a warning is produced. The first two of these profiles have a 'cprt' tag
  1902. * which suggests that they were also made by Hewlett Packard.
  1903. */
  1904. PNG_ICC_CHECKSUM(0xa054d762, 0x5d5129ce,
  1905. PNG_MD5(0x00000000, 0x00000000, 0x00000000, 0x00000000), 1, 0,
  1906. "2004/07/21 18:57:42", 3024, "sRGB_IEC61966-2-1_noBPC.icc")
  1907. /* This is a 'mntr' (display) profile with a mediaWhitePointTag that does not
  1908. * match the D50 PCS illuminant in the header (it is in fact the D65 values,
  1909. * so the white point is recorded as the un-adapted value.) The profiles
  1910. * below only differ in one byte - the intent - and are basically the same as
  1911. * the previous profile except for the mediaWhitePointTag error and a missing
  1912. * chromaticAdaptationTag.
  1913. */
  1914. PNG_ICC_CHECKSUM(0xf784f3fb, 0x182ea552,
  1915. PNG_MD5(0x00000000, 0x00000000, 0x00000000, 0x00000000), 0, 1/*broken*/,
  1916. "1998/02/09 06:49:00", 3144, "HP-Microsoft sRGB v2 perceptual")
  1917. PNG_ICC_CHECKSUM(0x0398f3fc, 0xf29e526d,
  1918. PNG_MD5(0x00000000, 0x00000000, 0x00000000, 0x00000000), 1, 1/*broken*/,
  1919. "1998/02/09 06:49:00", 3144, "HP-Microsoft sRGB v2 media-relative")
  1920. };
  1921. static int
  1922. png_compare_ICC_profile_with_sRGB(png_const_structrp png_ptr,
  1923. png_const_bytep profile, uLong adler)
  1924. {
  1925. /* The quick check is to verify just the MD5 signature and trust the
  1926. * rest of the data. Because the profile has already been verified for
  1927. * correctness this is safe. png_colorspace_set_sRGB will check the 'intent'
  1928. * field too, so if the profile has been edited with an intent not defined
  1929. * by sRGB (but maybe defined by a later ICC specification) the read of
  1930. * the profile will fail at that point.
  1931. */
  1932. png_uint_32 length = 0;
  1933. png_uint_32 intent = 0x10000; /* invalid */
  1934. #if PNG_sRGB_PROFILE_CHECKS > 1
  1935. uLong crc = 0; /* the value for 0 length data */
  1936. #endif
  1937. unsigned int i;
  1938. for (i=0; i < (sizeof png_sRGB_checks) / (sizeof png_sRGB_checks[0]); ++i)
  1939. {
  1940. if (png_get_uint_32(profile+84) == png_sRGB_checks[i].md5[0] &&
  1941. png_get_uint_32(profile+88) == png_sRGB_checks[i].md5[1] &&
  1942. png_get_uint_32(profile+92) == png_sRGB_checks[i].md5[2] &&
  1943. png_get_uint_32(profile+96) == png_sRGB_checks[i].md5[3])
  1944. {
  1945. /* This may be one of the old HP profiles without an MD5, in that
  1946. * case we can only use the length and Adler32 (note that these
  1947. * are not used by default if there is an MD5!)
  1948. */
  1949. # if PNG_sRGB_PROFILE_CHECKS == 0
  1950. if (png_sRGB_checks[i].have_md5)
  1951. return 1+png_sRGB_checks[i].is_broken;
  1952. # endif
  1953. /* Profile is unsigned or more checks have been configured in. */
  1954. if (length == 0)
  1955. {
  1956. length = png_get_uint_32(profile);
  1957. intent = png_get_uint_32(profile+64);
  1958. }
  1959. /* Length *and* intent must match */
  1960. if (length == png_sRGB_checks[i].length &&
  1961. intent == png_sRGB_checks[i].intent)
  1962. {
  1963. /* Now calculate the adler32 if not done already. */
  1964. if (adler == 0)
  1965. {
  1966. adler = adler32(0, NULL, 0);
  1967. adler = adler32(adler, profile, length);
  1968. }
  1969. if (adler == png_sRGB_checks[i].adler)
  1970. {
  1971. /* These basic checks suggest that the data has not been
  1972. * modified, but if the check level is more than 1 perform
  1973. * our own crc32 checksum on the data.
  1974. */
  1975. # if PNG_sRGB_PROFILE_CHECKS > 1
  1976. if (crc == 0)
  1977. {
  1978. crc = crc32(0, NULL, 0);
  1979. crc = crc32(crc, profile, length);
  1980. }
  1981. /* So this check must pass for the 'return' below to happen.
  1982. */
  1983. if (crc == png_sRGB_checks[i].crc)
  1984. # endif
  1985. {
  1986. if (png_sRGB_checks[i].is_broken)
  1987. {
  1988. /* These profiles are known to have bad data that may cause
  1989. * problems if they are used, therefore attempt to
  1990. * discourage their use, skip the 'have_md5' warning below,
  1991. * which is made irrelevant by this error.
  1992. */
  1993. png_chunk_report(png_ptr, "known incorrect sRGB profile",
  1994. PNG_CHUNK_ERROR);
  1995. }
  1996. /* Warn that this being done; this isn't even an error since
  1997. * the profile is perfectly valid, but it would be nice if
  1998. * people used the up-to-date ones.
  1999. */
  2000. else if (!png_sRGB_checks[i].have_md5)
  2001. {
  2002. png_chunk_report(png_ptr,
  2003. "out-of-date sRGB profile with no signature",
  2004. PNG_CHUNK_WARNING);
  2005. }
  2006. return 1+png_sRGB_checks[i].is_broken;
  2007. }
  2008. }
  2009. }
  2010. # if PNG_sRGB_PROFILE_CHECKS > 0
  2011. /* The signature matched, but the profile had been changed in some
  2012. * way. This probably indicates a data error or uninformed hacking.
  2013. * Fall through to "no match".
  2014. */
  2015. png_chunk_report(png_ptr,
  2016. "Not recognizing known sRGB profile that has been edited",
  2017. PNG_CHUNK_WARNING);
  2018. break;
  2019. # endif
  2020. }
  2021. }
  2022. return 0; /* no match */
  2023. }
  2024. #endif
  2025. #ifdef PNG_sRGB_SUPPORTED
  2026. void /* PRIVATE */
  2027. png_icc_set_sRGB(png_const_structrp png_ptr,
  2028. png_colorspacerp colorspace, png_const_bytep profile, uLong adler)
  2029. {
  2030. /* Is this profile one of the known ICC sRGB profiles? If it is, just set
  2031. * the sRGB information.
  2032. */
  2033. if (png_compare_ICC_profile_with_sRGB(png_ptr, profile, adler))
  2034. (void)png_colorspace_set_sRGB(png_ptr, colorspace,
  2035. (int)/*already checked*/png_get_uint_32(profile+64));
  2036. }
  2037. #endif /* PNG_READ_sRGB_SUPPORTED */
  2038. int /* PRIVATE */
  2039. png_colorspace_set_ICC(png_const_structrp png_ptr, png_colorspacerp colorspace,
  2040. png_const_charp name, png_uint_32 profile_length, png_const_bytep profile,
  2041. int color_type)
  2042. {
  2043. if (colorspace->flags & PNG_COLORSPACE_INVALID)
  2044. return 0;
  2045. if (png_icc_check_length(png_ptr, colorspace, name, profile_length) &&
  2046. png_icc_check_header(png_ptr, colorspace, name, profile_length, profile,
  2047. color_type) &&
  2048. png_icc_check_tag_table(png_ptr, colorspace, name, profile_length,
  2049. profile))
  2050. {
  2051. # ifdef PNG_sRGB_SUPPORTED
  2052. /* If no sRGB support, don't try storing sRGB information */
  2053. png_icc_set_sRGB(png_ptr, colorspace, profile, 0);
  2054. # endif
  2055. return 1;
  2056. }
  2057. /* Failure case */
  2058. return 0;
  2059. }
  2060. #endif /* iCCP */
  2061. #ifdef PNG_READ_RGB_TO_GRAY_SUPPORTED
  2062. void /* PRIVATE */
  2063. png_colorspace_set_rgb_coefficients(png_structrp png_ptr)
  2064. {
  2065. /* Set the rgb_to_gray coefficients from the colorspace. */
  2066. if (!png_ptr->rgb_to_gray_coefficients_set &&
  2067. (png_ptr->colorspace.flags & PNG_COLORSPACE_HAVE_ENDPOINTS) != 0)
  2068. {
  2069. /* png_set_background has not been called, get the coefficients from the Y
  2070. * values of the colorspace colorants.
  2071. */
  2072. png_fixed_point r = png_ptr->colorspace.end_points_XYZ.red_Y;
  2073. png_fixed_point g = png_ptr->colorspace.end_points_XYZ.green_Y;
  2074. png_fixed_point b = png_ptr->colorspace.end_points_XYZ.blue_Y;
  2075. png_fixed_point total = r+g+b;
  2076. if (total > 0 &&
  2077. r >= 0 && png_muldiv(&r, r, 32768, total) && r >= 0 && r <= 32768 &&
  2078. g >= 0 && png_muldiv(&g, g, 32768, total) && g >= 0 && g <= 32768 &&
  2079. b >= 0 && png_muldiv(&b, b, 32768, total) && b >= 0 && b <= 32768 &&
  2080. r+g+b <= 32769)
  2081. {
  2082. /* We allow 0 coefficients here. r+g+b may be 32769 if two or
  2083. * all of the coefficients were rounded up. Handle this by
  2084. * reducing the *largest* coefficient by 1; this matches the
  2085. * approach used for the default coefficients in pngrtran.c
  2086. */
  2087. int add = 0;
  2088. if (r+g+b > 32768)
  2089. add = -1;
  2090. else if (r+g+b < 32768)
  2091. add = 1;
  2092. if (add != 0)
  2093. {
  2094. if (g >= r && g >= b)
  2095. g += add;
  2096. else if (r >= g && r >= b)
  2097. r += add;
  2098. else
  2099. b += add;
  2100. }
  2101. /* Check for an internal error. */
  2102. if (r+g+b != 32768)
  2103. png_error(png_ptr,
  2104. "internal error handling cHRM coefficients");
  2105. else
  2106. {
  2107. png_ptr->rgb_to_gray_red_coeff = (png_uint_16)r;
  2108. png_ptr->rgb_to_gray_green_coeff = (png_uint_16)g;
  2109. }
  2110. }
  2111. /* This is a png_error at present even though it could be ignored -
  2112. * it should never happen, but it is important that if it does, the
  2113. * bug is fixed.
  2114. */
  2115. else
  2116. png_error(png_ptr, "internal error handling cHRM->XYZ");
  2117. }
  2118. }
  2119. #endif
  2120. #endif /* COLORSPACE */
  2121. #ifdef __GNUC__
  2122. /* This exists solely to work round a warning from GNU C. */
  2123. static int /* PRIVATE */
  2124. png_gt(size_t a, size_t b)
  2125. {
  2126. return a > b;
  2127. }
  2128. #else
  2129. # define png_gt(a,b) ((a) > (b))
  2130. #endif
  2131. void /* PRIVATE */
  2132. png_check_IHDR(png_const_structrp png_ptr,
  2133. png_uint_32 width, png_uint_32 height, int bit_depth,
  2134. int color_type, int interlace_type, int compression_type,
  2135. int filter_type)
  2136. {
  2137. int error = 0;
  2138. /* Check for width and height valid values */
  2139. if (width == 0)
  2140. {
  2141. png_warning(png_ptr, "Image width is zero in IHDR");
  2142. error = 1;
  2143. }
  2144. else if (width > PNG_UINT_31_MAX)
  2145. {
  2146. png_warning(png_ptr, "Invalid image width in IHDR");
  2147. error = 1;
  2148. }
  2149. else if (png_gt(width,
  2150. (PNG_SIZE_MAX >> 3) /* 8-byte RGBA pixels */
  2151. - 48 /* big_row_buf hack */
  2152. - 1 /* filter byte */
  2153. - 7*8 /* rounding width to multiple of 8 pix */
  2154. - 8)) /* extra max_pixel_depth pad */
  2155. {
  2156. /* The size of the row must be within the limits of this architecture.
  2157. * Because the read code can perform arbitrary transformations the
  2158. * maximum size is checked here. Because the code in png_read_start_row
  2159. * adds extra space "for safety's sake" in several places a conservative
  2160. * limit is used here.
  2161. *
  2162. * NOTE: it would be far better to check the size that is actually used,
  2163. * but the effect in the real world is minor and the changes are more
  2164. * extensive, therefore much more dangerous and much more difficult to
  2165. * write in a way that avoids compiler warnings.
  2166. */
  2167. png_warning(png_ptr, "Image width is too large for this architecture");
  2168. error = 1;
  2169. }
  2170. # ifdef PNG_SET_USER_LIMITS_SUPPORTED
  2171. else if (width > png_ptr->user_width_max)
  2172. # else
  2173. else if (width > PNG_USER_WIDTH_MAX)
  2174. # endif
  2175. {
  2176. png_warning(png_ptr, "Image width exceeds user limit in IHDR");
  2177. error = 1;
  2178. }
  2179. if (height == 0)
  2180. {
  2181. png_warning(png_ptr, "Image height is zero in IHDR");
  2182. error = 1;
  2183. }
  2184. # ifdef PNG_SET_USER_LIMITS_SUPPORTED
  2185. if (height > png_ptr->user_height_max)
  2186. # else
  2187. if (height > PNG_USER_HEIGHT_MAX)
  2188. # endif
  2189. {
  2190. png_warning(png_ptr, "Image height exceeds user limit in IHDR");
  2191. error = 1;
  2192. }
  2193. if (height > PNG_UINT_31_MAX)
  2194. {
  2195. png_warning(png_ptr, "Invalid image height in IHDR");
  2196. error = 1;
  2197. }
  2198. /* Check other values */
  2199. if (bit_depth != 1 && bit_depth != 2 && bit_depth != 4 &&
  2200. bit_depth != 8 && bit_depth != 16)
  2201. {
  2202. png_warning(png_ptr, "Invalid bit depth in IHDR");
  2203. error = 1;
  2204. }
  2205. if (color_type < 0 || color_type == 1 ||
  2206. color_type == 5 || color_type > 6)
  2207. {
  2208. png_warning(png_ptr, "Invalid color type in IHDR");
  2209. error = 1;
  2210. }
  2211. if (((color_type == PNG_COLOR_TYPE_PALETTE) && bit_depth > 8) ||
  2212. ((color_type == PNG_COLOR_TYPE_RGB ||
  2213. color_type == PNG_COLOR_TYPE_GRAY_ALPHA ||
  2214. color_type == PNG_COLOR_TYPE_RGB_ALPHA) && bit_depth < 8))
  2215. {
  2216. png_warning(png_ptr, "Invalid color type/bit depth combination in IHDR");
  2217. error = 1;
  2218. }
  2219. if (interlace_type >= PNG_INTERLACE_LAST)
  2220. {
  2221. png_warning(png_ptr, "Unknown interlace method in IHDR");
  2222. error = 1;
  2223. }
  2224. if (compression_type != PNG_COMPRESSION_TYPE_BASE)
  2225. {
  2226. png_warning(png_ptr, "Unknown compression method in IHDR");
  2227. error = 1;
  2228. }
  2229. # ifdef PNG_MNG_FEATURES_SUPPORTED
  2230. /* Accept filter_method 64 (intrapixel differencing) only if
  2231. * 1. Libpng was compiled with PNG_MNG_FEATURES_SUPPORTED and
  2232. * 2. Libpng did not read a PNG signature (this filter_method is only
  2233. * used in PNG datastreams that are embedded in MNG datastreams) and
  2234. * 3. The application called png_permit_mng_features with a mask that
  2235. * included PNG_FLAG_MNG_FILTER_64 and
  2236. * 4. The filter_method is 64 and
  2237. * 5. The color_type is RGB or RGBA
  2238. */
  2239. if ((png_ptr->mode & PNG_HAVE_PNG_SIGNATURE) &&
  2240. png_ptr->mng_features_permitted)
  2241. png_warning(png_ptr, "MNG features are not allowed in a PNG datastream");
  2242. if (filter_type != PNG_FILTER_TYPE_BASE)
  2243. {
  2244. if (!((png_ptr->mng_features_permitted & PNG_FLAG_MNG_FILTER_64) &&
  2245. (filter_type == PNG_INTRAPIXEL_DIFFERENCING) &&
  2246. ((png_ptr->mode & PNG_HAVE_PNG_SIGNATURE) == 0) &&
  2247. (color_type == PNG_COLOR_TYPE_RGB ||
  2248. color_type == PNG_COLOR_TYPE_RGB_ALPHA)))
  2249. {
  2250. png_warning(png_ptr, "Unknown filter method in IHDR");
  2251. error = 1;
  2252. }
  2253. if (png_ptr->mode & PNG_HAVE_PNG_SIGNATURE)
  2254. {
  2255. png_warning(png_ptr, "Invalid filter method in IHDR");
  2256. error = 1;
  2257. }
  2258. }
  2259. # else
  2260. if (filter_type != PNG_FILTER_TYPE_BASE)
  2261. {
  2262. png_warning(png_ptr, "Unknown filter method in IHDR");
  2263. error = 1;
  2264. }
  2265. # endif
  2266. if (error == 1)
  2267. png_error(png_ptr, "Invalid IHDR data");
  2268. }
  2269. #if defined(PNG_sCAL_SUPPORTED) || defined(PNG_pCAL_SUPPORTED)
  2270. /* ASCII to fp functions */
  2271. /* Check an ASCII formated floating point value, see the more detailed
  2272. * comments in pngpriv.h
  2273. */
  2274. /* The following is used internally to preserve the sticky flags */
  2275. #define png_fp_add(state, flags) ((state) |= (flags))
  2276. #define png_fp_set(state, value) ((state) = (value) | ((state) & PNG_FP_STICKY))
  2277. int /* PRIVATE */
  2278. png_check_fp_number(png_const_charp string, png_size_t size, int *statep,
  2279. png_size_tp whereami)
  2280. {
  2281. int state = *statep;
  2282. png_size_t i = *whereami;
  2283. while (i < size)
  2284. {
  2285. int type;
  2286. /* First find the type of the next character */
  2287. switch (string[i])
  2288. {
  2289. case 43: type = PNG_FP_SAW_SIGN; break;
  2290. case 45: type = PNG_FP_SAW_SIGN + PNG_FP_NEGATIVE; break;
  2291. case 46: type = PNG_FP_SAW_DOT; break;
  2292. case 48: type = PNG_FP_SAW_DIGIT; break;
  2293. case 49: case 50: case 51: case 52:
  2294. case 53: case 54: case 55: case 56:
  2295. case 57: type = PNG_FP_SAW_DIGIT + PNG_FP_NONZERO; break;
  2296. case 69:
  2297. case 101: type = PNG_FP_SAW_E; break;
  2298. default: goto PNG_FP_End;
  2299. }
  2300. /* Now deal with this type according to the current
  2301. * state, the type is arranged to not overlap the
  2302. * bits of the PNG_FP_STATE.
  2303. */
  2304. switch ((state & PNG_FP_STATE) + (type & PNG_FP_SAW_ANY))
  2305. {
  2306. case PNG_FP_INTEGER + PNG_FP_SAW_SIGN:
  2307. if (state & PNG_FP_SAW_ANY)
  2308. goto PNG_FP_End; /* not a part of the number */
  2309. png_fp_add(state, type);
  2310. break;
  2311. case PNG_FP_INTEGER + PNG_FP_SAW_DOT:
  2312. /* Ok as trailer, ok as lead of fraction. */
  2313. if (state & PNG_FP_SAW_DOT) /* two dots */
  2314. goto PNG_FP_End;
  2315. else if (state & PNG_FP_SAW_DIGIT) /* trailing dot? */
  2316. png_fp_add(state, type);
  2317. else
  2318. png_fp_set(state, PNG_FP_FRACTION | type);
  2319. break;
  2320. case PNG_FP_INTEGER + PNG_FP_SAW_DIGIT:
  2321. if (state & PNG_FP_SAW_DOT) /* delayed fraction */
  2322. png_fp_set(state, PNG_FP_FRACTION | PNG_FP_SAW_DOT);
  2323. png_fp_add(state, type | PNG_FP_WAS_VALID);
  2324. break;
  2325. case PNG_FP_INTEGER + PNG_FP_SAW_E:
  2326. if ((state & PNG_FP_SAW_DIGIT) == 0)
  2327. goto PNG_FP_End;
  2328. png_fp_set(state, PNG_FP_EXPONENT);
  2329. break;
  2330. /* case PNG_FP_FRACTION + PNG_FP_SAW_SIGN:
  2331. goto PNG_FP_End; ** no sign in fraction */
  2332. /* case PNG_FP_FRACTION + PNG_FP_SAW_DOT:
  2333. goto PNG_FP_End; ** Because SAW_DOT is always set */
  2334. case PNG_FP_FRACTION + PNG_FP_SAW_DIGIT:
  2335. png_fp_add(state, type | PNG_FP_WAS_VALID);
  2336. break;
  2337. case PNG_FP_FRACTION + PNG_FP_SAW_E:
  2338. /* This is correct because the trailing '.' on an
  2339. * integer is handled above - so we can only get here
  2340. * with the sequence ".E" (with no preceding digits).
  2341. */
  2342. if ((state & PNG_FP_SAW_DIGIT) == 0)
  2343. goto PNG_FP_End;
  2344. png_fp_set(state, PNG_FP_EXPONENT);
  2345. break;
  2346. case PNG_FP_EXPONENT + PNG_FP_SAW_SIGN:
  2347. if (state & PNG_FP_SAW_ANY)
  2348. goto PNG_FP_End; /* not a part of the number */
  2349. png_fp_add(state, PNG_FP_SAW_SIGN);
  2350. break;
  2351. /* case PNG_FP_EXPONENT + PNG_FP_SAW_DOT:
  2352. goto PNG_FP_End; */
  2353. case PNG_FP_EXPONENT + PNG_FP_SAW_DIGIT:
  2354. png_fp_add(state, PNG_FP_SAW_DIGIT | PNG_FP_WAS_VALID);
  2355. break;
  2356. /* case PNG_FP_EXPONEXT + PNG_FP_SAW_E:
  2357. goto PNG_FP_End; */
  2358. default: goto PNG_FP_End; /* I.e. break 2 */
  2359. }
  2360. /* The character seems ok, continue. */
  2361. ++i;
  2362. }
  2363. PNG_FP_End:
  2364. /* Here at the end, update the state and return the correct
  2365. * return code.
  2366. */
  2367. *statep = state;
  2368. *whereami = i;
  2369. return (state & PNG_FP_SAW_DIGIT) != 0;
  2370. }
  2371. /* The same but for a complete string. */
  2372. int
  2373. png_check_fp_string(png_const_charp string, png_size_t size)
  2374. {
  2375. int state=0;
  2376. png_size_t char_index=0;
  2377. if (png_check_fp_number(string, size, &state, &char_index) &&
  2378. (char_index == size || string[char_index] == 0))
  2379. return state /* must be non-zero - see above */;
  2380. return 0; /* i.e. fail */
  2381. }
  2382. #endif /* pCAL or sCAL */
  2383. #ifdef PNG_sCAL_SUPPORTED
  2384. # ifdef PNG_FLOATING_POINT_SUPPORTED
  2385. /* Utility used below - a simple accurate power of ten from an integral
  2386. * exponent.
  2387. */
  2388. static double
  2389. png_pow10(int power)
  2390. {
  2391. int recip = 0;
  2392. double d = 1;
  2393. /* Handle negative exponent with a reciprocal at the end because
  2394. * 10 is exact whereas .1 is inexact in base 2
  2395. */
  2396. if (power < 0)
  2397. {
  2398. if (power < DBL_MIN_10_EXP) return 0;
  2399. recip = 1, power = -power;
  2400. }
  2401. if (power > 0)
  2402. {
  2403. /* Decompose power bitwise. */
  2404. double mult = 10;
  2405. do
  2406. {
  2407. if (power & 1) d *= mult;
  2408. mult *= mult;
  2409. power >>= 1;
  2410. }
  2411. while (power > 0);
  2412. if (recip) d = 1/d;
  2413. }
  2414. /* else power is 0 and d is 1 */
  2415. return d;
  2416. }
  2417. /* Function to format a floating point value in ASCII with a given
  2418. * precision.
  2419. */
  2420. void /* PRIVATE */
  2421. png_ascii_from_fp(png_const_structrp png_ptr, png_charp ascii, png_size_t size,
  2422. double fp, unsigned int precision)
  2423. {
  2424. /* We use standard functions from math.h, but not printf because
  2425. * that would require stdio. The caller must supply a buffer of
  2426. * sufficient size or we will png_error. The tests on size and
  2427. * the space in ascii[] consumed are indicated below.
  2428. */
  2429. if (precision < 1)
  2430. precision = DBL_DIG;
  2431. /* Enforce the limit of the implementation precision too. */
  2432. if (precision > DBL_DIG+1)
  2433. precision = DBL_DIG+1;
  2434. /* Basic sanity checks */
  2435. if (size >= precision+5) /* See the requirements below. */
  2436. {
  2437. if (fp < 0)
  2438. {
  2439. fp = -fp;
  2440. *ascii++ = 45; /* '-' PLUS 1 TOTAL 1 */
  2441. --size;
  2442. }
  2443. if (fp >= DBL_MIN && fp <= DBL_MAX)
  2444. {
  2445. int exp_b10; /* A base 10 exponent */
  2446. double base; /* 10^exp_b10 */
  2447. /* First extract a base 10 exponent of the number,
  2448. * the calculation below rounds down when converting
  2449. * from base 2 to base 10 (multiply by log10(2) -
  2450. * 0.3010, but 77/256 is 0.3008, so exp_b10 needs to
  2451. * be increased. Note that the arithmetic shift
  2452. * performs a floor() unlike C arithmetic - using a
  2453. * C multiply would break the following for negative
  2454. * exponents.
  2455. */
  2456. (void)frexp(fp, &exp_b10); /* exponent to base 2 */
  2457. exp_b10 = (exp_b10 * 77) >> 8; /* <= exponent to base 10 */
  2458. /* Avoid underflow here. */
  2459. base = png_pow10(exp_b10); /* May underflow */
  2460. while (base < DBL_MIN || base < fp)
  2461. {
  2462. /* And this may overflow. */
  2463. double test = png_pow10(exp_b10+1);
  2464. if (test <= DBL_MAX)
  2465. ++exp_b10, base = test;
  2466. else
  2467. break;
  2468. }
  2469. /* Normalize fp and correct exp_b10, after this fp is in the
  2470. * range [.1,1) and exp_b10 is both the exponent and the digit
  2471. * *before* which the decimal point should be inserted
  2472. * (starting with 0 for the first digit). Note that this
  2473. * works even if 10^exp_b10 is out of range because of the
  2474. * test on DBL_MAX above.
  2475. */
  2476. fp /= base;
  2477. while (fp >= 1) fp /= 10, ++exp_b10;
  2478. /* Because of the code above fp may, at this point, be
  2479. * less than .1, this is ok because the code below can
  2480. * handle the leading zeros this generates, so no attempt
  2481. * is made to correct that here.
  2482. */
  2483. {
  2484. int czero, clead, cdigits;
  2485. char exponent[10];
  2486. /* Allow up to two leading zeros - this will not lengthen
  2487. * the number compared to using E-n.
  2488. */
  2489. if (exp_b10 < 0 && exp_b10 > -3) /* PLUS 3 TOTAL 4 */
  2490. {
  2491. czero = -exp_b10; /* PLUS 2 digits: TOTAL 3 */
  2492. exp_b10 = 0; /* Dot added below before first output. */
  2493. }
  2494. else
  2495. czero = 0; /* No zeros to add */
  2496. /* Generate the digit list, stripping trailing zeros and
  2497. * inserting a '.' before a digit if the exponent is 0.
  2498. */
  2499. clead = czero; /* Count of leading zeros */
  2500. cdigits = 0; /* Count of digits in list. */
  2501. do
  2502. {
  2503. double d;
  2504. fp *= 10;
  2505. /* Use modf here, not floor and subtract, so that
  2506. * the separation is done in one step. At the end
  2507. * of the loop don't break the number into parts so
  2508. * that the final digit is rounded.
  2509. */
  2510. if (cdigits+czero-clead+1 < (int)precision)
  2511. fp = modf(fp, &d);
  2512. else
  2513. {
  2514. d = floor(fp + .5);
  2515. if (d > 9)
  2516. {
  2517. /* Rounding up to 10, handle that here. */
  2518. if (czero > 0)
  2519. {
  2520. --czero, d = 1;
  2521. if (cdigits == 0) --clead;
  2522. }
  2523. else
  2524. {
  2525. while (cdigits > 0 && d > 9)
  2526. {
  2527. int ch = *--ascii;
  2528. if (exp_b10 != (-1))
  2529. ++exp_b10;
  2530. else if (ch == 46)
  2531. {
  2532. ch = *--ascii, ++size;
  2533. /* Advance exp_b10 to '1', so that the
  2534. * decimal point happens after the
  2535. * previous digit.
  2536. */
  2537. exp_b10 = 1;
  2538. }
  2539. --cdigits;
  2540. d = ch - 47; /* I.e. 1+(ch-48) */
  2541. }
  2542. /* Did we reach the beginning? If so adjust the
  2543. * exponent but take into account the leading
  2544. * decimal point.
  2545. */
  2546. if (d > 9) /* cdigits == 0 */
  2547. {
  2548. if (exp_b10 == (-1))
  2549. {
  2550. /* Leading decimal point (plus zeros?), if
  2551. * we lose the decimal point here it must
  2552. * be reentered below.
  2553. */
  2554. int ch = *--ascii;
  2555. if (ch == 46)
  2556. ++size, exp_b10 = 1;
  2557. /* Else lost a leading zero, so 'exp_b10' is
  2558. * still ok at (-1)
  2559. */
  2560. }
  2561. else
  2562. ++exp_b10;
  2563. /* In all cases we output a '1' */
  2564. d = 1;
  2565. }
  2566. }
  2567. }
  2568. fp = 0; /* Guarantees termination below. */
  2569. }
  2570. if (d == 0)
  2571. {
  2572. ++czero;
  2573. if (cdigits == 0) ++clead;
  2574. }
  2575. else
  2576. {
  2577. /* Included embedded zeros in the digit count. */
  2578. cdigits += czero - clead;
  2579. clead = 0;
  2580. while (czero > 0)
  2581. {
  2582. /* exp_b10 == (-1) means we just output the decimal
  2583. * place - after the DP don't adjust 'exp_b10' any
  2584. * more!
  2585. */
  2586. if (exp_b10 != (-1))
  2587. {
  2588. if (exp_b10 == 0) *ascii++ = 46, --size;
  2589. /* PLUS 1: TOTAL 4 */
  2590. --exp_b10;
  2591. }
  2592. *ascii++ = 48, --czero;
  2593. }
  2594. if (exp_b10 != (-1))
  2595. {
  2596. if (exp_b10 == 0) *ascii++ = 46, --size; /* counted
  2597. above */
  2598. --exp_b10;
  2599. }
  2600. *ascii++ = (char)(48 + (int)d), ++cdigits;
  2601. }
  2602. }
  2603. while (cdigits+czero-clead < (int)precision && fp > DBL_MIN);
  2604. /* The total output count (max) is now 4+precision */
  2605. /* Check for an exponent, if we don't need one we are
  2606. * done and just need to terminate the string. At
  2607. * this point exp_b10==(-1) is effectively if flag - it got
  2608. * to '-1' because of the decrement after outputing
  2609. * the decimal point above (the exponent required is
  2610. * *not* -1!)
  2611. */
  2612. if (exp_b10 >= (-1) && exp_b10 <= 2)
  2613. {
  2614. /* The following only happens if we didn't output the
  2615. * leading zeros above for negative exponent, so this
  2616. * doest add to the digit requirement. Note that the
  2617. * two zeros here can only be output if the two leading
  2618. * zeros were *not* output, so this doesn't increase
  2619. * the output count.
  2620. */
  2621. while (--exp_b10 >= 0) *ascii++ = 48;
  2622. *ascii = 0;
  2623. /* Total buffer requirement (including the '\0') is
  2624. * 5+precision - see check at the start.
  2625. */
  2626. return;
  2627. }
  2628. /* Here if an exponent is required, adjust size for
  2629. * the digits we output but did not count. The total
  2630. * digit output here so far is at most 1+precision - no
  2631. * decimal point and no leading or trailing zeros have
  2632. * been output.
  2633. */
  2634. size -= cdigits;
  2635. *ascii++ = 69, --size; /* 'E': PLUS 1 TOTAL 2+precision */
  2636. /* The following use of an unsigned temporary avoids ambiguities in
  2637. * the signed arithmetic on exp_b10 and permits GCC at least to do
  2638. * better optimization.
  2639. */
  2640. {
  2641. unsigned int uexp_b10;
  2642. if (exp_b10 < 0)
  2643. {
  2644. *ascii++ = 45, --size; /* '-': PLUS 1 TOTAL 3+precision */
  2645. uexp_b10 = -exp_b10;
  2646. }
  2647. else
  2648. uexp_b10 = exp_b10;
  2649. cdigits = 0;
  2650. while (uexp_b10 > 0)
  2651. {
  2652. exponent[cdigits++] = (char)(48 + uexp_b10 % 10);
  2653. uexp_b10 /= 10;
  2654. }
  2655. }
  2656. /* Need another size check here for the exponent digits, so
  2657. * this need not be considered above.
  2658. */
  2659. if ((int)size > cdigits)
  2660. {
  2661. while (cdigits > 0) *ascii++ = exponent[--cdigits];
  2662. *ascii = 0;
  2663. return;
  2664. }
  2665. }
  2666. }
  2667. else if (!(fp >= DBL_MIN))
  2668. {
  2669. *ascii++ = 48; /* '0' */
  2670. *ascii = 0;
  2671. return;
  2672. }
  2673. else
  2674. {
  2675. *ascii++ = 105; /* 'i' */
  2676. *ascii++ = 110; /* 'n' */
  2677. *ascii++ = 102; /* 'f' */
  2678. *ascii = 0;
  2679. return;
  2680. }
  2681. }
  2682. /* Here on buffer too small. */
  2683. png_error(png_ptr, "ASCII conversion buffer too small");
  2684. }
  2685. # endif /* FLOATING_POINT */
  2686. # ifdef PNG_FIXED_POINT_SUPPORTED
  2687. /* Function to format a fixed point value in ASCII.
  2688. */
  2689. void /* PRIVATE */
  2690. png_ascii_from_fixed(png_const_structrp png_ptr, png_charp ascii,
  2691. png_size_t size, png_fixed_point fp)
  2692. {
  2693. /* Require space for 10 decimal digits, a decimal point, a minus sign and a
  2694. * trailing \0, 13 characters:
  2695. */
  2696. if (size > 12)
  2697. {
  2698. png_uint_32 num;
  2699. /* Avoid overflow here on the minimum integer. */
  2700. if (fp < 0)
  2701. *ascii++ = 45, --size, num = -fp;
  2702. else
  2703. num = fp;
  2704. if (num <= 0x80000000) /* else overflowed */
  2705. {
  2706. unsigned int ndigits = 0, first = 16 /* flag value */;
  2707. char digits[10];
  2708. while (num)
  2709. {
  2710. /* Split the low digit off num: */
  2711. unsigned int tmp = num/10;
  2712. num -= tmp*10;
  2713. digits[ndigits++] = (char)(48 + num);
  2714. /* Record the first non-zero digit, note that this is a number
  2715. * starting at 1, it's not actually the array index.
  2716. */
  2717. if (first == 16 && num > 0)
  2718. first = ndigits;
  2719. num = tmp;
  2720. }
  2721. if (ndigits > 0)
  2722. {
  2723. while (ndigits > 5) *ascii++ = digits[--ndigits];
  2724. /* The remaining digits are fractional digits, ndigits is '5' or
  2725. * smaller at this point. It is certainly not zero. Check for a
  2726. * non-zero fractional digit:
  2727. */
  2728. if (first <= 5)
  2729. {
  2730. unsigned int i;
  2731. *ascii++ = 46; /* decimal point */
  2732. /* ndigits may be <5 for small numbers, output leading zeros
  2733. * then ndigits digits to first:
  2734. */
  2735. i = 5;
  2736. while (ndigits < i) *ascii++ = 48, --i;
  2737. while (ndigits >= first) *ascii++ = digits[--ndigits];
  2738. /* Don't output the trailing zeros! */
  2739. }
  2740. }
  2741. else
  2742. *ascii++ = 48;
  2743. /* And null terminate the string: */
  2744. *ascii = 0;
  2745. return;
  2746. }
  2747. }
  2748. /* Here on buffer too small. */
  2749. png_error(png_ptr, "ASCII conversion buffer too small");
  2750. }
  2751. # endif /* FIXED_POINT */
  2752. #endif /* READ_SCAL */
  2753. #if defined(PNG_FLOATING_POINT_SUPPORTED) && \
  2754. !defined(PNG_FIXED_POINT_MACRO_SUPPORTED) && \
  2755. (defined(PNG_gAMA_SUPPORTED) || defined(PNG_cHRM_SUPPORTED) || \
  2756. defined(PNG_sCAL_SUPPORTED) || defined(PNG_READ_BACKGROUND_SUPPORTED) || \
  2757. defined(PNG_READ_RGB_TO_GRAY_SUPPORTED)) || \
  2758. (defined(PNG_sCAL_SUPPORTED) && \
  2759. defined(PNG_FLOATING_ARITHMETIC_SUPPORTED))
  2760. png_fixed_point
  2761. png_fixed(png_const_structrp png_ptr, double fp, png_const_charp text)
  2762. {
  2763. double r = floor(100000 * fp + .5);
  2764. if (r > 2147483647. || r < -2147483648.)
  2765. png_fixed_error(png_ptr, text);
  2766. # ifndef PNG_ERROR_TEXT_SUPPORTED
  2767. PNG_UNUSED(text)
  2768. # endif
  2769. return (png_fixed_point)r;
  2770. }
  2771. #endif
  2772. #if defined(PNG_GAMMA_SUPPORTED) || defined(PNG_COLORSPACE_SUPPORTED) ||\
  2773. defined(PNG_INCH_CONVERSIONS_SUPPORTED) || defined(PNG_READ_pHYs_SUPPORTED)
  2774. /* muldiv functions */
  2775. /* This API takes signed arguments and rounds the result to the nearest
  2776. * integer (or, for a fixed point number - the standard argument - to
  2777. * the nearest .00001). Overflow and divide by zero are signalled in
  2778. * the result, a boolean - true on success, false on overflow.
  2779. */
  2780. int
  2781. png_muldiv(png_fixed_point_p res, png_fixed_point a, png_int_32 times,
  2782. png_int_32 divisor)
  2783. {
  2784. /* Return a * times / divisor, rounded. */
  2785. if (divisor != 0)
  2786. {
  2787. if (a == 0 || times == 0)
  2788. {
  2789. *res = 0;
  2790. return 1;
  2791. }
  2792. else
  2793. {
  2794. #ifdef PNG_FLOATING_ARITHMETIC_SUPPORTED
  2795. double r = a;
  2796. r *= times;
  2797. r /= divisor;
  2798. r = floor(r+.5);
  2799. /* A png_fixed_point is a 32-bit integer. */
  2800. if (r <= 2147483647. && r >= -2147483648.)
  2801. {
  2802. *res = (png_fixed_point)r;
  2803. return 1;
  2804. }
  2805. #else
  2806. int negative = 0;
  2807. png_uint_32 A, T, D;
  2808. png_uint_32 s16, s32, s00;
  2809. if (a < 0)
  2810. negative = 1, A = -a;
  2811. else
  2812. A = a;
  2813. if (times < 0)
  2814. negative = !negative, T = -times;
  2815. else
  2816. T = times;
  2817. if (divisor < 0)
  2818. negative = !negative, D = -divisor;
  2819. else
  2820. D = divisor;
  2821. /* Following can't overflow because the arguments only
  2822. * have 31 bits each, however the result may be 32 bits.
  2823. */
  2824. s16 = (A >> 16) * (T & 0xffff) +
  2825. (A & 0xffff) * (T >> 16);
  2826. /* Can't overflow because the a*times bit is only 30
  2827. * bits at most.
  2828. */
  2829. s32 = (A >> 16) * (T >> 16) + (s16 >> 16);
  2830. s00 = (A & 0xffff) * (T & 0xffff);
  2831. s16 = (s16 & 0xffff) << 16;
  2832. s00 += s16;
  2833. if (s00 < s16)
  2834. ++s32; /* carry */
  2835. if (s32 < D) /* else overflow */
  2836. {
  2837. /* s32.s00 is now the 64-bit product, do a standard
  2838. * division, we know that s32 < D, so the maximum
  2839. * required shift is 31.
  2840. */
  2841. int bitshift = 32;
  2842. png_fixed_point result = 0; /* NOTE: signed */
  2843. while (--bitshift >= 0)
  2844. {
  2845. png_uint_32 d32, d00;
  2846. if (bitshift > 0)
  2847. d32 = D >> (32-bitshift), d00 = D << bitshift;
  2848. else
  2849. d32 = 0, d00 = D;
  2850. if (s32 > d32)
  2851. {
  2852. if (s00 < d00) --s32; /* carry */
  2853. s32 -= d32, s00 -= d00, result += 1<<bitshift;
  2854. }
  2855. else
  2856. if (s32 == d32 && s00 >= d00)
  2857. s32 = 0, s00 -= d00, result += 1<<bitshift;
  2858. }
  2859. /* Handle the rounding. */
  2860. if (s00 >= (D >> 1))
  2861. ++result;
  2862. if (negative)
  2863. result = -result;
  2864. /* Check for overflow. */
  2865. if ((negative && result <= 0) || (!negative && result >= 0))
  2866. {
  2867. *res = result;
  2868. return 1;
  2869. }
  2870. }
  2871. #endif
  2872. }
  2873. }
  2874. return 0;
  2875. }
  2876. #endif /* READ_GAMMA || INCH_CONVERSIONS */
  2877. #if defined(PNG_READ_GAMMA_SUPPORTED) || defined(PNG_INCH_CONVERSIONS_SUPPORTED)
  2878. /* The following is for when the caller doesn't much care about the
  2879. * result.
  2880. */
  2881. png_fixed_point
  2882. png_muldiv_warn(png_const_structrp png_ptr, png_fixed_point a, png_int_32 times,
  2883. png_int_32 divisor)
  2884. {
  2885. png_fixed_point result;
  2886. if (png_muldiv(&result, a, times, divisor))
  2887. return result;
  2888. png_warning(png_ptr, "fixed point overflow ignored");
  2889. return 0;
  2890. }
  2891. #endif
  2892. #ifdef PNG_GAMMA_SUPPORTED /* more fixed point functions for gamma */
  2893. /* Calculate a reciprocal, return 0 on div-by-zero or overflow. */
  2894. png_fixed_point
  2895. png_reciprocal(png_fixed_point a)
  2896. {
  2897. #ifdef PNG_FLOATING_ARITHMETIC_SUPPORTED
  2898. double r = floor(1E10/a+.5);
  2899. if (r <= 2147483647. && r >= -2147483648.)
  2900. return (png_fixed_point)r;
  2901. #else
  2902. png_fixed_point res;
  2903. if (png_muldiv(&res, 100000, 100000, a))
  2904. return res;
  2905. #endif
  2906. return 0; /* error/overflow */
  2907. }
  2908. /* This is the shared test on whether a gamma value is 'significant' - whether
  2909. * it is worth doing gamma correction.
  2910. */
  2911. int /* PRIVATE */
  2912. png_gamma_significant(png_fixed_point gamma_val)
  2913. {
  2914. return gamma_val < PNG_FP_1 - PNG_GAMMA_THRESHOLD_FIXED ||
  2915. gamma_val > PNG_FP_1 + PNG_GAMMA_THRESHOLD_FIXED;
  2916. }
  2917. #endif
  2918. #ifdef PNG_READ_GAMMA_SUPPORTED
  2919. # ifdef PNG_16BIT_SUPPORTED
  2920. /* A local convenience routine. */
  2921. static png_fixed_point
  2922. png_product2(png_fixed_point a, png_fixed_point b)
  2923. {
  2924. /* The required result is 1/a * 1/b; the following preserves accuracy. */
  2925. # ifdef PNG_FLOATING_ARITHMETIC_SUPPORTED
  2926. double r = a * 1E-5;
  2927. r *= b;
  2928. r = floor(r+.5);
  2929. if (r <= 2147483647. && r >= -2147483648.)
  2930. return (png_fixed_point)r;
  2931. # else
  2932. png_fixed_point res;
  2933. if (png_muldiv(&res, a, b, 100000))
  2934. return res;
  2935. # endif
  2936. return 0; /* overflow */
  2937. }
  2938. # endif /* 16BIT */
  2939. /* The inverse of the above. */
  2940. png_fixed_point
  2941. png_reciprocal2(png_fixed_point a, png_fixed_point b)
  2942. {
  2943. /* The required result is 1/a * 1/b; the following preserves accuracy. */
  2944. #ifdef PNG_FLOATING_ARITHMETIC_SUPPORTED
  2945. double r = 1E15/a;
  2946. r /= b;
  2947. r = floor(r+.5);
  2948. if (r <= 2147483647. && r >= -2147483648.)
  2949. return (png_fixed_point)r;
  2950. #else
  2951. /* This may overflow because the range of png_fixed_point isn't symmetric,
  2952. * but this API is only used for the product of file and screen gamma so it
  2953. * doesn't matter that the smallest number it can produce is 1/21474, not
  2954. * 1/100000
  2955. */
  2956. png_fixed_point res = png_product2(a, b);
  2957. if (res != 0)
  2958. return png_reciprocal(res);
  2959. #endif
  2960. return 0; /* overflow */
  2961. }
  2962. #endif /* READ_GAMMA */
  2963. #ifdef PNG_READ_GAMMA_SUPPORTED /* gamma table code */
  2964. #ifndef PNG_FLOATING_ARITHMETIC_SUPPORTED
  2965. /* Fixed point gamma.
  2966. *
  2967. * The code to calculate the tables used below can be found in the shell script
  2968. * contrib/tools/intgamma.sh
  2969. *
  2970. * To calculate gamma this code implements fast log() and exp() calls using only
  2971. * fixed point arithmetic. This code has sufficient precision for either 8-bit
  2972. * or 16-bit sample values.
  2973. *
  2974. * The tables used here were calculated using simple 'bc' programs, but C double
  2975. * precision floating point arithmetic would work fine.
  2976. *
  2977. * 8-bit log table
  2978. * This is a table of -log(value/255)/log(2) for 'value' in the range 128 to
  2979. * 255, so it's the base 2 logarithm of a normalized 8-bit floating point
  2980. * mantissa. The numbers are 32-bit fractions.
  2981. */
  2982. static const png_uint_32
  2983. png_8bit_l2[128] =
  2984. {
  2985. 4270715492U, 4222494797U, 4174646467U, 4127164793U, 4080044201U, 4033279239U,
  2986. 3986864580U, 3940795015U, 3895065449U, 3849670902U, 3804606499U, 3759867474U,
  2987. 3715449162U, 3671346997U, 3627556511U, 3584073329U, 3540893168U, 3498011834U,
  2988. 3455425220U, 3413129301U, 3371120137U, 3329393864U, 3287946700U, 3246774933U,
  2989. 3205874930U, 3165243125U, 3124876025U, 3084770202U, 3044922296U, 3005329011U,
  2990. 2965987113U, 2926893432U, 2888044853U, 2849438323U, 2811070844U, 2772939474U,
  2991. 2735041326U, 2697373562U, 2659933400U, 2622718104U, 2585724991U, 2548951424U,
  2992. 2512394810U, 2476052606U, 2439922311U, 2404001468U, 2368287663U, 2332778523U,
  2993. 2297471715U, 2262364947U, 2227455964U, 2192742551U, 2158222529U, 2123893754U,
  2994. 2089754119U, 2055801552U, 2022034013U, 1988449497U, 1955046031U, 1921821672U,
  2995. 1888774511U, 1855902668U, 1823204291U, 1790677560U, 1758320682U, 1726131893U,
  2996. 1694109454U, 1662251657U, 1630556815U, 1599023271U, 1567649391U, 1536433567U,
  2997. 1505374214U, 1474469770U, 1443718700U, 1413119487U, 1382670639U, 1352370686U,
  2998. 1322218179U, 1292211689U, 1262349810U, 1232631153U, 1203054352U, 1173618059U,
  2999. 1144320946U, 1115161701U, 1086139034U, 1057251672U, 1028498358U, 999877854U,
  3000. 971388940U, 943030410U, 914801076U, 886699767U, 858725327U, 830876614U,
  3001. 803152505U, 775551890U, 748073672U, 720716771U, 693480120U, 666362667U,
  3002. 639363374U, 612481215U, 585715177U, 559064263U, 532527486U, 506103872U,
  3003. 479792461U, 453592303U, 427502463U, 401522014U, 375650043U, 349885648U,
  3004. 324227938U, 298676034U, 273229066U, 247886176U, 222646516U, 197509248U,
  3005. 172473545U, 147538590U, 122703574U, 97967701U, 73330182U, 48790236U,
  3006. 24347096U, 0U
  3007. #if 0
  3008. /* The following are the values for 16-bit tables - these work fine for the
  3009. * 8-bit conversions but produce very slightly larger errors in the 16-bit
  3010. * log (about 1.2 as opposed to 0.7 absolute error in the final value). To
  3011. * use these all the shifts below must be adjusted appropriately.
  3012. */
  3013. 65166, 64430, 63700, 62976, 62257, 61543, 60835, 60132, 59434, 58741, 58054,
  3014. 57371, 56693, 56020, 55352, 54689, 54030, 53375, 52726, 52080, 51439, 50803,
  3015. 50170, 49542, 48918, 48298, 47682, 47070, 46462, 45858, 45257, 44661, 44068,
  3016. 43479, 42894, 42312, 41733, 41159, 40587, 40020, 39455, 38894, 38336, 37782,
  3017. 37230, 36682, 36137, 35595, 35057, 34521, 33988, 33459, 32932, 32408, 31887,
  3018. 31369, 30854, 30341, 29832, 29325, 28820, 28319, 27820, 27324, 26830, 26339,
  3019. 25850, 25364, 24880, 24399, 23920, 23444, 22970, 22499, 22029, 21562, 21098,
  3020. 20636, 20175, 19718, 19262, 18808, 18357, 17908, 17461, 17016, 16573, 16132,
  3021. 15694, 15257, 14822, 14390, 13959, 13530, 13103, 12678, 12255, 11834, 11415,
  3022. 10997, 10582, 10168, 9756, 9346, 8937, 8531, 8126, 7723, 7321, 6921, 6523,
  3023. 6127, 5732, 5339, 4947, 4557, 4169, 3782, 3397, 3014, 2632, 2251, 1872, 1495,
  3024. 1119, 744, 372
  3025. #endif
  3026. };
  3027. static png_int_32
  3028. png_log8bit(unsigned int x)
  3029. {
  3030. unsigned int lg2 = 0;
  3031. /* Each time 'x' is multiplied by 2, 1 must be subtracted off the final log,
  3032. * because the log is actually negate that means adding 1. The final
  3033. * returned value thus has the range 0 (for 255 input) to 7.994 (for 1
  3034. * input), return -1 for the overflow (log 0) case, - so the result is
  3035. * always at most 19 bits.
  3036. */
  3037. if ((x &= 0xff) == 0)
  3038. return -1;
  3039. if ((x & 0xf0) == 0)
  3040. lg2 = 4, x <<= 4;
  3041. if ((x & 0xc0) == 0)
  3042. lg2 += 2, x <<= 2;
  3043. if ((x & 0x80) == 0)
  3044. lg2 += 1, x <<= 1;
  3045. /* result is at most 19 bits, so this cast is safe: */
  3046. return (png_int_32)((lg2 << 16) + ((png_8bit_l2[x-128]+32768)>>16));
  3047. }
  3048. /* The above gives exact (to 16 binary places) log2 values for 8-bit images,
  3049. * for 16-bit images we use the most significant 8 bits of the 16-bit value to
  3050. * get an approximation then multiply the approximation by a correction factor
  3051. * determined by the remaining up to 8 bits. This requires an additional step
  3052. * in the 16-bit case.
  3053. *
  3054. * We want log2(value/65535), we have log2(v'/255), where:
  3055. *
  3056. * value = v' * 256 + v''
  3057. * = v' * f
  3058. *
  3059. * So f is value/v', which is equal to (256+v''/v') since v' is in the range 128
  3060. * to 255 and v'' is in the range 0 to 255 f will be in the range 256 to less
  3061. * than 258. The final factor also needs to correct for the fact that our 8-bit
  3062. * value is scaled by 255, whereas the 16-bit values must be scaled by 65535.
  3063. *
  3064. * This gives a final formula using a calculated value 'x' which is value/v' and
  3065. * scaling by 65536 to match the above table:
  3066. *
  3067. * log2(x/257) * 65536
  3068. *
  3069. * Since these numbers are so close to '1' we can use simple linear
  3070. * interpolation between the two end values 256/257 (result -368.61) and 258/257
  3071. * (result 367.179). The values used below are scaled by a further 64 to give
  3072. * 16-bit precision in the interpolation:
  3073. *
  3074. * Start (256): -23591
  3075. * Zero (257): 0
  3076. * End (258): 23499
  3077. */
  3078. static png_int_32
  3079. png_log16bit(png_uint_32 x)
  3080. {
  3081. unsigned int lg2 = 0;
  3082. /* As above, but now the input has 16 bits. */
  3083. if ((x &= 0xffff) == 0)
  3084. return -1;
  3085. if ((x & 0xff00) == 0)
  3086. lg2 = 8, x <<= 8;
  3087. if ((x & 0xf000) == 0)
  3088. lg2 += 4, x <<= 4;
  3089. if ((x & 0xc000) == 0)
  3090. lg2 += 2, x <<= 2;
  3091. if ((x & 0x8000) == 0)
  3092. lg2 += 1, x <<= 1;
  3093. /* Calculate the base logarithm from the top 8 bits as a 28-bit fractional
  3094. * value.
  3095. */
  3096. lg2 <<= 28;
  3097. lg2 += (png_8bit_l2[(x>>8)-128]+8) >> 4;
  3098. /* Now we need to interpolate the factor, this requires a division by the top
  3099. * 8 bits. Do this with maximum precision.
  3100. */
  3101. x = ((x << 16) + (x >> 9)) / (x >> 8);
  3102. /* Since we divided by the top 8 bits of 'x' there will be a '1' at 1<<24,
  3103. * the value at 1<<16 (ignoring this) will be 0 or 1; this gives us exactly
  3104. * 16 bits to interpolate to get the low bits of the result. Round the
  3105. * answer. Note that the end point values are scaled by 64 to retain overall
  3106. * precision and that 'lg2' is current scaled by an extra 12 bits, so adjust
  3107. * the overall scaling by 6-12. Round at every step.
  3108. */
  3109. x -= 1U << 24;
  3110. if (x <= 65536U) /* <= '257' */
  3111. lg2 += ((23591U * (65536U-x)) + (1U << (16+6-12-1))) >> (16+6-12);
  3112. else
  3113. lg2 -= ((23499U * (x-65536U)) + (1U << (16+6-12-1))) >> (16+6-12);
  3114. /* Safe, because the result can't have more than 20 bits: */
  3115. return (png_int_32)((lg2 + 2048) >> 12);
  3116. }
  3117. /* The 'exp()' case must invert the above, taking a 20-bit fixed point
  3118. * logarithmic value and returning a 16 or 8-bit number as appropriate. In
  3119. * each case only the low 16 bits are relevant - the fraction - since the
  3120. * integer bits (the top 4) simply determine a shift.
  3121. *
  3122. * The worst case is the 16-bit distinction between 65535 and 65534, this
  3123. * requires perhaps spurious accuracty in the decoding of the logarithm to
  3124. * distinguish log2(65535/65534.5) - 10^-5 or 17 bits. There is little chance
  3125. * of getting this accuracy in practice.
  3126. *
  3127. * To deal with this the following exp() function works out the exponent of the
  3128. * frational part of the logarithm by using an accurate 32-bit value from the
  3129. * top four fractional bits then multiplying in the remaining bits.
  3130. */
  3131. static const png_uint_32
  3132. png_32bit_exp[16] =
  3133. {
  3134. /* NOTE: the first entry is deliberately set to the maximum 32-bit value. */
  3135. 4294967295U, 4112874773U, 3938502376U, 3771522796U, 3611622603U, 3458501653U,
  3136. 3311872529U, 3171459999U, 3037000500U, 2908241642U, 2784941738U, 2666869345U,
  3137. 2553802834U, 2445529972U, 2341847524U, 2242560872U
  3138. };
  3139. /* Adjustment table; provided to explain the numbers in the code below. */
  3140. #if 0
  3141. for (i=11;i>=0;--i){ print i, " ", (1 - e(-(2^i)/65536*l(2))) * 2^(32-i), "\n"}
  3142. 11 44937.64284865548751208448
  3143. 10 45180.98734845585101160448
  3144. 9 45303.31936980687359311872
  3145. 8 45364.65110595323018870784
  3146. 7 45395.35850361789624614912
  3147. 6 45410.72259715102037508096
  3148. 5 45418.40724413220722311168
  3149. 4 45422.25021786898173001728
  3150. 3 45424.17186732298419044352
  3151. 2 45425.13273269940811464704
  3152. 1 45425.61317555035558641664
  3153. 0 45425.85339951654943850496
  3154. #endif
  3155. static png_uint_32
  3156. png_exp(png_fixed_point x)
  3157. {
  3158. if (x > 0 && x <= 0xfffff) /* Else overflow or zero (underflow) */
  3159. {
  3160. /* Obtain a 4-bit approximation */
  3161. png_uint_32 e = png_32bit_exp[(x >> 12) & 0xf];
  3162. /* Incorporate the low 12 bits - these decrease the returned value by
  3163. * multiplying by a number less than 1 if the bit is set. The multiplier
  3164. * is determined by the above table and the shift. Notice that the values
  3165. * converge on 45426 and this is used to allow linear interpolation of the
  3166. * low bits.
  3167. */
  3168. if (x & 0x800)
  3169. e -= (((e >> 16) * 44938U) + 16U) >> 5;
  3170. if (x & 0x400)
  3171. e -= (((e >> 16) * 45181U) + 32U) >> 6;
  3172. if (x & 0x200)
  3173. e -= (((e >> 16) * 45303U) + 64U) >> 7;
  3174. if (x & 0x100)
  3175. e -= (((e >> 16) * 45365U) + 128U) >> 8;
  3176. if (x & 0x080)
  3177. e -= (((e >> 16) * 45395U) + 256U) >> 9;
  3178. if (x & 0x040)
  3179. e -= (((e >> 16) * 45410U) + 512U) >> 10;
  3180. /* And handle the low 6 bits in a single block. */
  3181. e -= (((e >> 16) * 355U * (x & 0x3fU)) + 256U) >> 9;
  3182. /* Handle the upper bits of x. */
  3183. e >>= x >> 16;
  3184. return e;
  3185. }
  3186. /* Check for overflow */
  3187. if (x <= 0)
  3188. return png_32bit_exp[0];
  3189. /* Else underflow */
  3190. return 0;
  3191. }
  3192. static png_byte
  3193. png_exp8bit(png_fixed_point lg2)
  3194. {
  3195. /* Get a 32-bit value: */
  3196. png_uint_32 x = png_exp(lg2);
  3197. /* Convert the 32-bit value to 0..255 by multiplying by 256-1, note that the
  3198. * second, rounding, step can't overflow because of the first, subtraction,
  3199. * step.
  3200. */
  3201. x -= x >> 8;
  3202. return (png_byte)((x + 0x7fffffU) >> 24);
  3203. }
  3204. #ifdef PNG_16BIT_SUPPORTED
  3205. static png_uint_16
  3206. png_exp16bit(png_fixed_point lg2)
  3207. {
  3208. /* Get a 32-bit value: */
  3209. png_uint_32 x = png_exp(lg2);
  3210. /* Convert the 32-bit value to 0..65535 by multiplying by 65536-1: */
  3211. x -= x >> 16;
  3212. return (png_uint_16)((x + 32767U) >> 16);
  3213. }
  3214. #endif /* 16BIT */
  3215. #endif /* FLOATING_ARITHMETIC */
  3216. png_byte
  3217. png_gamma_8bit_correct(unsigned int value, png_fixed_point gamma_val)
  3218. {
  3219. if (value > 0 && value < 255)
  3220. {
  3221. # ifdef PNG_FLOATING_ARITHMETIC_SUPPORTED
  3222. double r = floor(255*pow(value/255.,gamma_val*.00001)+.5);
  3223. return (png_byte)r;
  3224. # else
  3225. png_int_32 lg2 = png_log8bit(value);
  3226. png_fixed_point res;
  3227. if (png_muldiv(&res, gamma_val, lg2, PNG_FP_1))
  3228. return png_exp8bit(res);
  3229. /* Overflow. */
  3230. value = 0;
  3231. # endif
  3232. }
  3233. return (png_byte)value;
  3234. }
  3235. #ifdef PNG_16BIT_SUPPORTED
  3236. png_uint_16
  3237. png_gamma_16bit_correct(unsigned int value, png_fixed_point gamma_val)
  3238. {
  3239. if (value > 0 && value < 65535)
  3240. {
  3241. # ifdef PNG_FLOATING_ARITHMETIC_SUPPORTED
  3242. double r = floor(65535*pow(value/65535.,gamma_val*.00001)+.5);
  3243. return (png_uint_16)r;
  3244. # else
  3245. png_int_32 lg2 = png_log16bit(value);
  3246. png_fixed_point res;
  3247. if (png_muldiv(&res, gamma_val, lg2, PNG_FP_1))
  3248. return png_exp16bit(res);
  3249. /* Overflow. */
  3250. value = 0;
  3251. # endif
  3252. }
  3253. return (png_uint_16)value;
  3254. }
  3255. #endif /* 16BIT */
  3256. /* This does the right thing based on the bit_depth field of the
  3257. * png_struct, interpreting values as 8-bit or 16-bit. While the result
  3258. * is nominally a 16-bit value if bit depth is 8 then the result is
  3259. * 8-bit (as are the arguments.)
  3260. */
  3261. png_uint_16 /* PRIVATE */
  3262. png_gamma_correct(png_structrp png_ptr, unsigned int value,
  3263. png_fixed_point gamma_val)
  3264. {
  3265. if (png_ptr->bit_depth == 8)
  3266. return png_gamma_8bit_correct(value, gamma_val);
  3267. #ifdef PNG_16BIT_SUPPORTED
  3268. else
  3269. return png_gamma_16bit_correct(value, gamma_val);
  3270. #else
  3271. /* should not reach this */
  3272. return 0;
  3273. #endif /* 16BIT */
  3274. }
  3275. #ifdef PNG_16BIT_SUPPORTED
  3276. /* Internal function to build a single 16-bit table - the table consists of
  3277. * 'num' 256 entry subtables, where 'num' is determined by 'shift' - the amount
  3278. * to shift the input values right (or 16-number_of_signifiant_bits).
  3279. *
  3280. * The caller is responsible for ensuring that the table gets cleaned up on
  3281. * png_error (i.e. if one of the mallocs below fails) - i.e. the *table argument
  3282. * should be somewhere that will be cleaned.
  3283. */
  3284. static void
  3285. png_build_16bit_table(png_structrp png_ptr, png_uint_16pp *ptable,
  3286. PNG_CONST unsigned int shift, PNG_CONST png_fixed_point gamma_val)
  3287. {
  3288. /* Various values derived from 'shift': */
  3289. PNG_CONST unsigned int num = 1U << (8U - shift);
  3290. PNG_CONST unsigned int max = (1U << (16U - shift))-1U;
  3291. PNG_CONST unsigned int max_by_2 = 1U << (15U-shift);
  3292. unsigned int i;
  3293. png_uint_16pp table = *ptable =
  3294. (png_uint_16pp)png_calloc(png_ptr, num * (sizeof (png_uint_16p)));
  3295. for (i = 0; i < num; i++)
  3296. {
  3297. png_uint_16p sub_table = table[i] =
  3298. (png_uint_16p)png_malloc(png_ptr, 256 * (sizeof (png_uint_16)));
  3299. /* The 'threshold' test is repeated here because it can arise for one of
  3300. * the 16-bit tables even if the others don't hit it.
  3301. */
  3302. if (png_gamma_significant(gamma_val))
  3303. {
  3304. /* The old code would overflow at the end and this would cause the
  3305. * 'pow' function to return a result >1, resulting in an
  3306. * arithmetic error. This code follows the spec exactly; ig is
  3307. * the recovered input sample, it always has 8-16 bits.
  3308. *
  3309. * We want input * 65535/max, rounded, the arithmetic fits in 32
  3310. * bits (unsigned) so long as max <= 32767.
  3311. */
  3312. unsigned int j;
  3313. for (j = 0; j < 256; j++)
  3314. {
  3315. png_uint_32 ig = (j << (8-shift)) + i;
  3316. # ifdef PNG_FLOATING_ARITHMETIC_SUPPORTED
  3317. /* Inline the 'max' scaling operation: */
  3318. double d = floor(65535*pow(ig/(double)max, gamma_val*.00001)+.5);
  3319. sub_table[j] = (png_uint_16)d;
  3320. # else
  3321. if (shift)
  3322. ig = (ig * 65535U + max_by_2)/max;
  3323. sub_table[j] = png_gamma_16bit_correct(ig, gamma_val);
  3324. # endif
  3325. }
  3326. }
  3327. else
  3328. {
  3329. /* We must still build a table, but do it the fast way. */
  3330. unsigned int j;
  3331. for (j = 0; j < 256; j++)
  3332. {
  3333. png_uint_32 ig = (j << (8-shift)) + i;
  3334. if (shift)
  3335. ig = (ig * 65535U + max_by_2)/max;
  3336. sub_table[j] = (png_uint_16)ig;
  3337. }
  3338. }
  3339. }
  3340. }
  3341. /* NOTE: this function expects the *inverse* of the overall gamma transformation
  3342. * required.
  3343. */
  3344. static void
  3345. png_build_16to8_table(png_structrp png_ptr, png_uint_16pp *ptable,
  3346. PNG_CONST unsigned int shift, PNG_CONST png_fixed_point gamma_val)
  3347. {
  3348. PNG_CONST unsigned int num = 1U << (8U - shift);
  3349. PNG_CONST unsigned int max = (1U << (16U - shift))-1U;
  3350. unsigned int i;
  3351. png_uint_32 last;
  3352. png_uint_16pp table = *ptable =
  3353. (png_uint_16pp)png_calloc(png_ptr, num * (sizeof (png_uint_16p)));
  3354. /* 'num' is the number of tables and also the number of low bits of low
  3355. * bits of the input 16-bit value used to select a table. Each table is
  3356. * itself index by the high 8 bits of the value.
  3357. */
  3358. for (i = 0; i < num; i++)
  3359. table[i] = (png_uint_16p)png_malloc(png_ptr,
  3360. 256 * (sizeof (png_uint_16)));
  3361. /* 'gamma_val' is set to the reciprocal of the value calculated above, so
  3362. * pow(out,g) is an *input* value. 'last' is the last input value set.
  3363. *
  3364. * In the loop 'i' is used to find output values. Since the output is
  3365. * 8-bit there are only 256 possible values. The tables are set up to
  3366. * select the closest possible output value for each input by finding
  3367. * the input value at the boundary between each pair of output values
  3368. * and filling the table up to that boundary with the lower output
  3369. * value.
  3370. *
  3371. * The boundary values are 0.5,1.5..253.5,254.5. Since these are 9-bit
  3372. * values the code below uses a 16-bit value in i; the values start at
  3373. * 128.5 (for 0.5) and step by 257, for a total of 254 values (the last
  3374. * entries are filled with 255). Start i at 128 and fill all 'last'
  3375. * table entries <= 'max'
  3376. */
  3377. last = 0;
  3378. for (i = 0; i < 255; ++i) /* 8-bit output value */
  3379. {
  3380. /* Find the corresponding maximum input value */
  3381. png_uint_16 out = (png_uint_16)(i * 257U); /* 16-bit output value */
  3382. /* Find the boundary value in 16 bits: */
  3383. png_uint_32 bound = png_gamma_16bit_correct(out+128U, gamma_val);
  3384. /* Adjust (round) to (16-shift) bits: */
  3385. bound = (bound * max + 32768U)/65535U + 1U;
  3386. while (last < bound)
  3387. {
  3388. table[last & (0xffU >> shift)][last >> (8U - shift)] = out;
  3389. last++;
  3390. }
  3391. }
  3392. /* And fill in the final entries. */
  3393. while (last < (num << 8))
  3394. {
  3395. table[last & (0xff >> shift)][last >> (8U - shift)] = 65535U;
  3396. last++;
  3397. }
  3398. }
  3399. #endif /* 16BIT */
  3400. /* Build a single 8-bit table: same as the 16-bit case but much simpler (and
  3401. * typically much faster). Note that libpng currently does no sBIT processing
  3402. * (apparently contrary to the spec) so a 256 entry table is always generated.
  3403. */
  3404. static void
  3405. png_build_8bit_table(png_structrp png_ptr, png_bytepp ptable,
  3406. PNG_CONST png_fixed_point gamma_val)
  3407. {
  3408. unsigned int i;
  3409. png_bytep table = *ptable = (png_bytep)png_malloc(png_ptr, 256);
  3410. if (png_gamma_significant(gamma_val)) for (i=0; i<256; i++)
  3411. table[i] = png_gamma_8bit_correct(i, gamma_val);
  3412. else for (i=0; i<256; ++i)
  3413. table[i] = (png_byte)i;
  3414. }
  3415. /* Used from png_read_destroy and below to release the memory used by the gamma
  3416. * tables.
  3417. */
  3418. void /* PRIVATE */
  3419. png_destroy_gamma_table(png_structrp png_ptr)
  3420. {
  3421. png_free(png_ptr, png_ptr->gamma_table);
  3422. png_ptr->gamma_table = NULL;
  3423. #ifdef PNG_16BIT_SUPPORTED
  3424. if (png_ptr->gamma_16_table != NULL)
  3425. {
  3426. int i;
  3427. int istop = (1 << (8 - png_ptr->gamma_shift));
  3428. for (i = 0; i < istop; i++)
  3429. {
  3430. png_free(png_ptr, png_ptr->gamma_16_table[i]);
  3431. }
  3432. png_free(png_ptr, png_ptr->gamma_16_table);
  3433. png_ptr->gamma_16_table = NULL;
  3434. }
  3435. #endif /* 16BIT */
  3436. #if defined(PNG_READ_BACKGROUND_SUPPORTED) || \
  3437. defined(PNG_READ_ALPHA_MODE_SUPPORTED) || \
  3438. defined(PNG_READ_RGB_TO_GRAY_SUPPORTED)
  3439. png_free(png_ptr, png_ptr->gamma_from_1);
  3440. png_ptr->gamma_from_1 = NULL;
  3441. png_free(png_ptr, png_ptr->gamma_to_1);
  3442. png_ptr->gamma_to_1 = NULL;
  3443. #ifdef PNG_16BIT_SUPPORTED
  3444. if (png_ptr->gamma_16_from_1 != NULL)
  3445. {
  3446. int i;
  3447. int istop = (1 << (8 - png_ptr->gamma_shift));
  3448. for (i = 0; i < istop; i++)
  3449. {
  3450. png_free(png_ptr, png_ptr->gamma_16_from_1[i]);
  3451. }
  3452. png_free(png_ptr, png_ptr->gamma_16_from_1);
  3453. png_ptr->gamma_16_from_1 = NULL;
  3454. }
  3455. if (png_ptr->gamma_16_to_1 != NULL)
  3456. {
  3457. int i;
  3458. int istop = (1 << (8 - png_ptr->gamma_shift));
  3459. for (i = 0; i < istop; i++)
  3460. {
  3461. png_free(png_ptr, png_ptr->gamma_16_to_1[i]);
  3462. }
  3463. png_free(png_ptr, png_ptr->gamma_16_to_1);
  3464. png_ptr->gamma_16_to_1 = NULL;
  3465. }
  3466. #endif /* 16BIT */
  3467. #endif /* READ_BACKGROUND || READ_ALPHA_MODE || RGB_TO_GRAY */
  3468. }
  3469. /* We build the 8- or 16-bit gamma tables here. Note that for 16-bit
  3470. * tables, we don't make a full table if we are reducing to 8-bit in
  3471. * the future. Note also how the gamma_16 tables are segmented so that
  3472. * we don't need to allocate > 64K chunks for a full 16-bit table.
  3473. */
  3474. void /* PRIVATE */
  3475. png_build_gamma_table(png_structrp png_ptr, int bit_depth)
  3476. {
  3477. png_debug(1, "in png_build_gamma_table");
  3478. /* Remove any existing table; this copes with multiple calls to
  3479. * png_read_update_info. The warning is because building the gamma tables
  3480. * multiple times is a performance hit - it's harmless but the ability to call
  3481. * png_read_update_info() multiple times is new in 1.5.6 so it seems sensible
  3482. * to warn if the app introduces such a hit.
  3483. */
  3484. if (png_ptr->gamma_table != NULL || png_ptr->gamma_16_table != NULL)
  3485. {
  3486. png_warning(png_ptr, "gamma table being rebuilt");
  3487. png_destroy_gamma_table(png_ptr);
  3488. }
  3489. if (bit_depth <= 8)
  3490. {
  3491. png_build_8bit_table(png_ptr, &png_ptr->gamma_table,
  3492. png_ptr->screen_gamma > 0 ? png_reciprocal2(png_ptr->colorspace.gamma,
  3493. png_ptr->screen_gamma) : PNG_FP_1);
  3494. #if defined(PNG_READ_BACKGROUND_SUPPORTED) || \
  3495. defined(PNG_READ_ALPHA_MODE_SUPPORTED) || \
  3496. defined(PNG_READ_RGB_TO_GRAY_SUPPORTED)
  3497. if (png_ptr->transformations & (PNG_COMPOSE | PNG_RGB_TO_GRAY))
  3498. {
  3499. png_build_8bit_table(png_ptr, &png_ptr->gamma_to_1,
  3500. png_reciprocal(png_ptr->colorspace.gamma));
  3501. png_build_8bit_table(png_ptr, &png_ptr->gamma_from_1,
  3502. png_ptr->screen_gamma > 0 ? png_reciprocal(png_ptr->screen_gamma) :
  3503. png_ptr->colorspace.gamma/* Probably doing rgb_to_gray */);
  3504. }
  3505. #endif /* READ_BACKGROUND || READ_ALPHA_MODE || RGB_TO_GRAY */
  3506. }
  3507. #ifdef PNG_16BIT_SUPPORTED
  3508. else
  3509. {
  3510. png_byte shift, sig_bit;
  3511. if (png_ptr->color_type & PNG_COLOR_MASK_COLOR)
  3512. {
  3513. sig_bit = png_ptr->sig_bit.red;
  3514. if (png_ptr->sig_bit.green > sig_bit)
  3515. sig_bit = png_ptr->sig_bit.green;
  3516. if (png_ptr->sig_bit.blue > sig_bit)
  3517. sig_bit = png_ptr->sig_bit.blue;
  3518. }
  3519. else
  3520. sig_bit = png_ptr->sig_bit.gray;
  3521. /* 16-bit gamma code uses this equation:
  3522. *
  3523. * ov = table[(iv & 0xff) >> gamma_shift][iv >> 8]
  3524. *
  3525. * Where 'iv' is the input color value and 'ov' is the output value -
  3526. * pow(iv, gamma).
  3527. *
  3528. * Thus the gamma table consists of up to 256 256 entry tables. The table
  3529. * is selected by the (8-gamma_shift) most significant of the low 8 bits of
  3530. * the color value then indexed by the upper 8 bits:
  3531. *
  3532. * table[low bits][high 8 bits]
  3533. *
  3534. * So the table 'n' corresponds to all those 'iv' of:
  3535. *
  3536. * <all high 8-bit values><n << gamma_shift>..<(n+1 << gamma_shift)-1>
  3537. *
  3538. */
  3539. if (sig_bit > 0 && sig_bit < 16U)
  3540. shift = (png_byte)(16U - sig_bit); /* shift == insignificant bits */
  3541. else
  3542. shift = 0; /* keep all 16 bits */
  3543. if (png_ptr->transformations & (PNG_16_TO_8 | PNG_SCALE_16_TO_8))
  3544. {
  3545. /* PNG_MAX_GAMMA_8 is the number of bits to keep - effectively
  3546. * the significant bits in the *input* when the output will
  3547. * eventually be 8 bits. By default it is 11.
  3548. */
  3549. if (shift < (16U - PNG_MAX_GAMMA_8))
  3550. shift = (16U - PNG_MAX_GAMMA_8);
  3551. }
  3552. if (shift > 8U)
  3553. shift = 8U; /* Guarantees at least one table! */
  3554. png_ptr->gamma_shift = shift;
  3555. /* NOTE: prior to 1.5.4 this test used to include PNG_BACKGROUND (now
  3556. * PNG_COMPOSE). This effectively smashed the background calculation for
  3557. * 16-bit output because the 8-bit table assumes the result will be reduced
  3558. * to 8 bits.
  3559. */
  3560. if (png_ptr->transformations & (PNG_16_TO_8 | PNG_SCALE_16_TO_8))
  3561. png_build_16to8_table(png_ptr, &png_ptr->gamma_16_table, shift,
  3562. png_ptr->screen_gamma > 0 ? png_product2(png_ptr->colorspace.gamma,
  3563. png_ptr->screen_gamma) : PNG_FP_1);
  3564. else
  3565. png_build_16bit_table(png_ptr, &png_ptr->gamma_16_table, shift,
  3566. png_ptr->screen_gamma > 0 ? png_reciprocal2(png_ptr->colorspace.gamma,
  3567. png_ptr->screen_gamma) : PNG_FP_1);
  3568. #if defined(PNG_READ_BACKGROUND_SUPPORTED) || \
  3569. defined(PNG_READ_ALPHA_MODE_SUPPORTED) || \
  3570. defined(PNG_READ_RGB_TO_GRAY_SUPPORTED)
  3571. if (png_ptr->transformations & (PNG_COMPOSE | PNG_RGB_TO_GRAY))
  3572. {
  3573. png_build_16bit_table(png_ptr, &png_ptr->gamma_16_to_1, shift,
  3574. png_reciprocal(png_ptr->colorspace.gamma));
  3575. /* Notice that the '16 from 1' table should be full precision, however
  3576. * the lookup on this table still uses gamma_shift, so it can't be.
  3577. * TODO: fix this.
  3578. */
  3579. png_build_16bit_table(png_ptr, &png_ptr->gamma_16_from_1, shift,
  3580. png_ptr->screen_gamma > 0 ? png_reciprocal(png_ptr->screen_gamma) :
  3581. png_ptr->colorspace.gamma/* Probably doing rgb_to_gray */);
  3582. }
  3583. #endif /* READ_BACKGROUND || READ_ALPHA_MODE || RGB_TO_GRAY */
  3584. }
  3585. #endif /* 16BIT */
  3586. }
  3587. #endif /* READ_GAMMA */
  3588. /* HARDWARE OPTION SUPPORT */
  3589. #ifdef PNG_SET_OPTION_SUPPORTED
  3590. int PNGAPI
  3591. png_set_option(png_structrp png_ptr, int option, int onoff)
  3592. {
  3593. if (png_ptr != NULL && option >= 0 && option < PNG_OPTION_NEXT &&
  3594. (option & 1) == 0)
  3595. {
  3596. int mask = 3 << option;
  3597. int setting = (2 + (onoff != 0)) << option;
  3598. int current = png_ptr->options;
  3599. png_ptr->options = (png_byte)((current & ~mask) | setting);
  3600. return (current & mask) >> option;
  3601. }
  3602. return PNG_OPTION_INVALID;
  3603. }
  3604. #endif
  3605. /* sRGB support */
  3606. #if defined(PNG_SIMPLIFIED_READ_SUPPORTED) ||\
  3607. defined(PNG_SIMPLIFIED_WRITE_SUPPORTED)
  3608. /* sRGB conversion tables; these are machine generated with the code in
  3609. * contrib/tools/makesRGB.c. The actual sRGB transfer curve defined in the
  3610. * specification (see the article at http://en.wikipedia.org/wiki/SRGB)
  3611. * is used, not the gamma=1/2.2 approximation use elsewhere in libpng.
  3612. * The sRGB to linear table is exact (to the nearest 16 bit linear fraction).
  3613. * The inverse (linear to sRGB) table has accuracies as follows:
  3614. *
  3615. * For all possible (255*65535+1) input values:
  3616. *
  3617. * error: -0.515566 - 0.625971, 79441 (0.475369%) of readings inexact
  3618. *
  3619. * For the input values corresponding to the 65536 16-bit values:
  3620. *
  3621. * error: -0.513727 - 0.607759, 308 (0.469978%) of readings inexact
  3622. *
  3623. * In all cases the inexact readings are off by one.
  3624. */
  3625. #ifdef PNG_SIMPLIFIED_READ_SUPPORTED
  3626. /* The convert-to-sRGB table is only currently required for read. */
  3627. const png_uint_16 png_sRGB_table[256] =
  3628. {
  3629. 0,20,40,60,80,99,119,139,
  3630. 159,179,199,219,241,264,288,313,
  3631. 340,367,396,427,458,491,526,562,
  3632. 599,637,677,718,761,805,851,898,
  3633. 947,997,1048,1101,1156,1212,1270,1330,
  3634. 1391,1453,1517,1583,1651,1720,1790,1863,
  3635. 1937,2013,2090,2170,2250,2333,2418,2504,
  3636. 2592,2681,2773,2866,2961,3058,3157,3258,
  3637. 3360,3464,3570,3678,3788,3900,4014,4129,
  3638. 4247,4366,4488,4611,4736,4864,4993,5124,
  3639. 5257,5392,5530,5669,5810,5953,6099,6246,
  3640. 6395,6547,6700,6856,7014,7174,7335,7500,
  3641. 7666,7834,8004,8177,8352,8528,8708,8889,
  3642. 9072,9258,9445,9635,9828,10022,10219,10417,
  3643. 10619,10822,11028,11235,11446,11658,11873,12090,
  3644. 12309,12530,12754,12980,13209,13440,13673,13909,
  3645. 14146,14387,14629,14874,15122,15371,15623,15878,
  3646. 16135,16394,16656,16920,17187,17456,17727,18001,
  3647. 18277,18556,18837,19121,19407,19696,19987,20281,
  3648. 20577,20876,21177,21481,21787,22096,22407,22721,
  3649. 23038,23357,23678,24002,24329,24658,24990,25325,
  3650. 25662,26001,26344,26688,27036,27386,27739,28094,
  3651. 28452,28813,29176,29542,29911,30282,30656,31033,
  3652. 31412,31794,32179,32567,32957,33350,33745,34143,
  3653. 34544,34948,35355,35764,36176,36591,37008,37429,
  3654. 37852,38278,38706,39138,39572,40009,40449,40891,
  3655. 41337,41785,42236,42690,43147,43606,44069,44534,
  3656. 45002,45473,45947,46423,46903,47385,47871,48359,
  3657. 48850,49344,49841,50341,50844,51349,51858,52369,
  3658. 52884,53401,53921,54445,54971,55500,56032,56567,
  3659. 57105,57646,58190,58737,59287,59840,60396,60955,
  3660. 61517,62082,62650,63221,63795,64372,64952,65535
  3661. };
  3662. #endif /* simplified read only */
  3663. /* The base/delta tables are required for both read and write (but currently
  3664. * only the simplified versions.)
  3665. */
  3666. const png_uint_16 png_sRGB_base[512] =
  3667. {
  3668. 128,1782,3383,4644,5675,6564,7357,8074,
  3669. 8732,9346,9921,10463,10977,11466,11935,12384,
  3670. 12816,13233,13634,14024,14402,14769,15125,15473,
  3671. 15812,16142,16466,16781,17090,17393,17690,17981,
  3672. 18266,18546,18822,19093,19359,19621,19879,20133,
  3673. 20383,20630,20873,21113,21349,21583,21813,22041,
  3674. 22265,22487,22707,22923,23138,23350,23559,23767,
  3675. 23972,24175,24376,24575,24772,24967,25160,25352,
  3676. 25542,25730,25916,26101,26284,26465,26645,26823,
  3677. 27000,27176,27350,27523,27695,27865,28034,28201,
  3678. 28368,28533,28697,28860,29021,29182,29341,29500,
  3679. 29657,29813,29969,30123,30276,30429,30580,30730,
  3680. 30880,31028,31176,31323,31469,31614,31758,31902,
  3681. 32045,32186,32327,32468,32607,32746,32884,33021,
  3682. 33158,33294,33429,33564,33697,33831,33963,34095,
  3683. 34226,34357,34486,34616,34744,34873,35000,35127,
  3684. 35253,35379,35504,35629,35753,35876,35999,36122,
  3685. 36244,36365,36486,36606,36726,36845,36964,37083,
  3686. 37201,37318,37435,37551,37668,37783,37898,38013,
  3687. 38127,38241,38354,38467,38580,38692,38803,38915,
  3688. 39026,39136,39246,39356,39465,39574,39682,39790,
  3689. 39898,40005,40112,40219,40325,40431,40537,40642,
  3690. 40747,40851,40955,41059,41163,41266,41369,41471,
  3691. 41573,41675,41777,41878,41979,42079,42179,42279,
  3692. 42379,42478,42577,42676,42775,42873,42971,43068,
  3693. 43165,43262,43359,43456,43552,43648,43743,43839,
  3694. 43934,44028,44123,44217,44311,44405,44499,44592,
  3695. 44685,44778,44870,44962,45054,45146,45238,45329,
  3696. 45420,45511,45601,45692,45782,45872,45961,46051,
  3697. 46140,46229,46318,46406,46494,46583,46670,46758,
  3698. 46846,46933,47020,47107,47193,47280,47366,47452,
  3699. 47538,47623,47709,47794,47879,47964,48048,48133,
  3700. 48217,48301,48385,48468,48552,48635,48718,48801,
  3701. 48884,48966,49048,49131,49213,49294,49376,49458,
  3702. 49539,49620,49701,49782,49862,49943,50023,50103,
  3703. 50183,50263,50342,50422,50501,50580,50659,50738,
  3704. 50816,50895,50973,51051,51129,51207,51285,51362,
  3705. 51439,51517,51594,51671,51747,51824,51900,51977,
  3706. 52053,52129,52205,52280,52356,52432,52507,52582,
  3707. 52657,52732,52807,52881,52956,53030,53104,53178,
  3708. 53252,53326,53400,53473,53546,53620,53693,53766,
  3709. 53839,53911,53984,54056,54129,54201,54273,54345,
  3710. 54417,54489,54560,54632,54703,54774,54845,54916,
  3711. 54987,55058,55129,55199,55269,55340,55410,55480,
  3712. 55550,55620,55689,55759,55828,55898,55967,56036,
  3713. 56105,56174,56243,56311,56380,56448,56517,56585,
  3714. 56653,56721,56789,56857,56924,56992,57059,57127,
  3715. 57194,57261,57328,57395,57462,57529,57595,57662,
  3716. 57728,57795,57861,57927,57993,58059,58125,58191,
  3717. 58256,58322,58387,58453,58518,58583,58648,58713,
  3718. 58778,58843,58908,58972,59037,59101,59165,59230,
  3719. 59294,59358,59422,59486,59549,59613,59677,59740,
  3720. 59804,59867,59930,59993,60056,60119,60182,60245,
  3721. 60308,60370,60433,60495,60558,60620,60682,60744,
  3722. 60806,60868,60930,60992,61054,61115,61177,61238,
  3723. 61300,61361,61422,61483,61544,61605,61666,61727,
  3724. 61788,61848,61909,61969,62030,62090,62150,62211,
  3725. 62271,62331,62391,62450,62510,62570,62630,62689,
  3726. 62749,62808,62867,62927,62986,63045,63104,63163,
  3727. 63222,63281,63340,63398,63457,63515,63574,63632,
  3728. 63691,63749,63807,63865,63923,63981,64039,64097,
  3729. 64155,64212,64270,64328,64385,64443,64500,64557,
  3730. 64614,64672,64729,64786,64843,64900,64956,65013,
  3731. 65070,65126,65183,65239,65296,65352,65409,65465
  3732. };
  3733. const png_byte png_sRGB_delta[512] =
  3734. {
  3735. 207,201,158,129,113,100,90,82,77,72,68,64,61,59,56,54,
  3736. 52,50,49,47,46,45,43,42,41,40,39,39,38,37,36,36,
  3737. 35,34,34,33,33,32,32,31,31,30,30,30,29,29,28,28,
  3738. 28,27,27,27,27,26,26,26,25,25,25,25,24,24,24,24,
  3739. 23,23,23,23,23,22,22,22,22,22,22,21,21,21,21,21,
  3740. 21,20,20,20,20,20,20,20,20,19,19,19,19,19,19,19,
  3741. 19,18,18,18,18,18,18,18,18,18,18,17,17,17,17,17,
  3742. 17,17,17,17,17,17,16,16,16,16,16,16,16,16,16,16,
  3743. 16,16,16,16,15,15,15,15,15,15,15,15,15,15,15,15,
  3744. 15,15,15,15,14,14,14,14,14,14,14,14,14,14,14,14,
  3745. 14,14,14,14,14,14,14,13,13,13,13,13,13,13,13,13,
  3746. 13,13,13,13,13,13,13,13,13,13,13,13,13,13,12,12,
  3747. 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,
  3748. 12,12,12,12,12,12,12,12,12,12,12,12,11,11,11,11,
  3749. 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,
  3750. 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,
  3751. 11,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,
  3752. 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,
  3753. 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,
  3754. 10,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,
  3755. 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,
  3756. 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,
  3757. 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,
  3758. 9,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,
  3759. 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,
  3760. 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,
  3761. 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,
  3762. 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,
  3763. 8,8,8,8,8,8,8,8,8,7,7,7,7,7,7,7,
  3764. 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
  3765. 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
  3766. 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7
  3767. };
  3768. #endif /* SIMPLIFIED READ/WRITE sRGB support */
  3769. /* SIMPLIFIED READ/WRITE SUPPORT */
  3770. #if defined(PNG_SIMPLIFIED_READ_SUPPORTED) ||\
  3771. defined(PNG_SIMPLIFIED_WRITE_SUPPORTED)
  3772. static int
  3773. png_image_free_function(png_voidp argument)
  3774. {
  3775. png_imagep image = png_voidcast(png_imagep, argument);
  3776. png_controlp cp = image->opaque;
  3777. png_control c;
  3778. /* Double check that we have a png_ptr - it should be impossible to get here
  3779. * without one.
  3780. */
  3781. if (cp->png_ptr == NULL)
  3782. return 0;
  3783. /* First free any data held in the control structure. */
  3784. # ifdef PNG_STDIO_SUPPORTED
  3785. if (cp->owned_file)
  3786. {
  3787. FILE *fp = png_voidcast(FILE*, cp->png_ptr->io_ptr);
  3788. cp->owned_file = 0;
  3789. /* Ignore errors here. */
  3790. if (fp != NULL)
  3791. {
  3792. cp->png_ptr->io_ptr = NULL;
  3793. (void)fclose(fp);
  3794. }
  3795. }
  3796. # endif
  3797. /* Copy the control structure so that the original, allocated, version can be
  3798. * safely freed. Notice that a png_error here stops the remainder of the
  3799. * cleanup, but this is probably fine because that would indicate bad memory
  3800. * problems anyway.
  3801. */
  3802. c = *cp;
  3803. image->opaque = &c;
  3804. png_free(c.png_ptr, cp);
  3805. /* Then the structures, calling the correct API. */
  3806. if (c.for_write)
  3807. {
  3808. # ifdef PNG_SIMPLIFIED_WRITE_SUPPORTED
  3809. png_destroy_write_struct(&c.png_ptr, &c.info_ptr);
  3810. # else
  3811. png_error(c.png_ptr, "simplified write not supported");
  3812. # endif
  3813. }
  3814. else
  3815. {
  3816. # ifdef PNG_SIMPLIFIED_READ_SUPPORTED
  3817. png_destroy_read_struct(&c.png_ptr, &c.info_ptr, NULL);
  3818. # else
  3819. png_error(c.png_ptr, "simplified read not supported");
  3820. # endif
  3821. }
  3822. /* Success. */
  3823. return 1;
  3824. }
  3825. void PNGAPI
  3826. png_image_free(png_imagep image)
  3827. {
  3828. /* Safely call the real function, but only if doing so is safe at this point
  3829. * (if not inside an error handling context). Otherwise assume
  3830. * png_safe_execute will call this API after the return.
  3831. */
  3832. if (image != NULL && image->opaque != NULL &&
  3833. image->opaque->error_buf == NULL)
  3834. {
  3835. /* Ignore errors here: */
  3836. (void)png_safe_execute(image, png_image_free_function, image);
  3837. image->opaque = NULL;
  3838. }
  3839. }
  3840. int /* PRIVATE */
  3841. png_image_error(png_imagep image, png_const_charp error_message)
  3842. {
  3843. /* Utility to log an error. */
  3844. png_safecat(image->message, (sizeof image->message), 0, error_message);
  3845. image->warning_or_error |= PNG_IMAGE_ERROR;
  3846. png_image_free(image);
  3847. return 0;
  3848. }
  3849. #endif /* SIMPLIFIED READ/WRITE */
  3850. #endif /* defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED) */