image.cpp 99 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228
  1. /*************************************************************************/
  2. /* image.cpp */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /*************************************************************************/
  30. #include "image.h"
  31. #include "core/error_macros.h"
  32. #include "core/hash_map.h"
  33. #include "core/io/image_loader.h"
  34. #include "core/io/resource_loader.h"
  35. #include "core/math/math_funcs.h"
  36. #include "core/os/copymem.h"
  37. #include "core/print_string.h"
  38. #include "thirdparty/misc/hq2x.h"
  39. #include <stdio.h>
  40. const char *Image::format_names[Image::FORMAT_MAX] = {
  41. "Lum8", //luminance
  42. "LumAlpha8", //luminance-alpha
  43. "Red8",
  44. "RedGreen",
  45. "RGB8",
  46. "RGBA8",
  47. "RGBA4444",
  48. "RGBA5551",
  49. "RFloat", //float
  50. "RGFloat",
  51. "RGBFloat",
  52. "RGBAFloat",
  53. "RHalf", //half float
  54. "RGHalf",
  55. "RGBHalf",
  56. "RGBAHalf",
  57. "RGBE9995",
  58. "DXT1 RGB8", //s3tc
  59. "DXT3 RGBA8",
  60. "DXT5 RGBA8",
  61. "RGTC Red8",
  62. "RGTC RedGreen8",
  63. "BPTC_RGBA",
  64. "BPTC_RGBF",
  65. "BPTC_RGBFU",
  66. "PVRTC2", //pvrtc
  67. "PVRTC2A",
  68. "PVRTC4",
  69. "PVRTC4A",
  70. "ETC", //etc1
  71. "ETC2_R11", //etc2
  72. "ETC2_R11S", //signed", NOT srgb.
  73. "ETC2_RG11",
  74. "ETC2_RG11S",
  75. "ETC2_RGB8",
  76. "ETC2_RGBA8",
  77. "ETC2_RGB8A1",
  78. };
  79. SavePNGFunc Image::save_png_func = NULL;
  80. SaveEXRFunc Image::save_exr_func = NULL;
  81. SavePNGBufferFunc Image::save_png_buffer_func = NULL;
  82. void Image::_put_pixelb(int p_x, int p_y, uint32_t p_pixelsize, uint8_t *p_data, const uint8_t *p_pixel) {
  83. uint32_t ofs = (p_y * width + p_x) * p_pixelsize;
  84. for (uint32_t i = 0; i < p_pixelsize; i++) {
  85. p_data[ofs + i] = p_pixel[i];
  86. }
  87. }
  88. void Image::_get_pixelb(int p_x, int p_y, uint32_t p_pixelsize, const uint8_t *p_data, uint8_t *p_pixel) {
  89. uint32_t ofs = (p_y * width + p_x) * p_pixelsize;
  90. for (uint32_t i = 0; i < p_pixelsize; i++) {
  91. p_pixel[i] = p_data[ofs + i];
  92. }
  93. }
  94. int Image::get_format_pixel_size(Format p_format) {
  95. switch (p_format) {
  96. case FORMAT_L8:
  97. return 1; //luminance
  98. case FORMAT_LA8:
  99. return 2; //luminance-alpha
  100. case FORMAT_R8: return 1;
  101. case FORMAT_RG8: return 2;
  102. case FORMAT_RGB8: return 3;
  103. case FORMAT_RGBA8: return 4;
  104. case FORMAT_RGBA4444: return 2;
  105. case FORMAT_RGBA5551: return 2;
  106. case FORMAT_RF:
  107. return 4; //float
  108. case FORMAT_RGF: return 8;
  109. case FORMAT_RGBF: return 12;
  110. case FORMAT_RGBAF: return 16;
  111. case FORMAT_RH:
  112. return 2; //half float
  113. case FORMAT_RGH: return 4;
  114. case FORMAT_RGBH: return 6;
  115. case FORMAT_RGBAH: return 8;
  116. case FORMAT_RGBE9995: return 4;
  117. case FORMAT_DXT1:
  118. return 1; //s3tc bc1
  119. case FORMAT_DXT3:
  120. return 1; //bc2
  121. case FORMAT_DXT5:
  122. return 1; //bc3
  123. case FORMAT_RGTC_R:
  124. return 1; //bc4
  125. case FORMAT_RGTC_RG:
  126. return 1; //bc5
  127. case FORMAT_BPTC_RGBA:
  128. return 1; //btpc bc6h
  129. case FORMAT_BPTC_RGBF:
  130. return 1; //float /
  131. case FORMAT_BPTC_RGBFU:
  132. return 1; //unsigned float
  133. case FORMAT_PVRTC2:
  134. return 1; //pvrtc
  135. case FORMAT_PVRTC2A: return 1;
  136. case FORMAT_PVRTC4: return 1;
  137. case FORMAT_PVRTC4A: return 1;
  138. case FORMAT_ETC:
  139. return 1; //etc1
  140. case FORMAT_ETC2_R11:
  141. return 1; //etc2
  142. case FORMAT_ETC2_R11S:
  143. return 1; //signed: return 1; NOT srgb.
  144. case FORMAT_ETC2_RG11: return 1;
  145. case FORMAT_ETC2_RG11S: return 1;
  146. case FORMAT_ETC2_RGB8: return 1;
  147. case FORMAT_ETC2_RGBA8: return 1;
  148. case FORMAT_ETC2_RGB8A1: return 1;
  149. case FORMAT_MAX: {
  150. }
  151. }
  152. return 0;
  153. }
  154. void Image::get_format_min_pixel_size(Format p_format, int &r_w, int &r_h) {
  155. switch (p_format) {
  156. case FORMAT_DXT1: //s3tc bc1
  157. case FORMAT_DXT3: //bc2
  158. case FORMAT_DXT5: //bc3
  159. case FORMAT_RGTC_R: //bc4
  160. case FORMAT_RGTC_RG: { //bc5 case case FORMAT_DXT1:
  161. r_w = 4;
  162. r_h = 4;
  163. } break;
  164. case FORMAT_PVRTC2:
  165. case FORMAT_PVRTC2A: {
  166. r_w = 16;
  167. r_h = 8;
  168. } break;
  169. case FORMAT_PVRTC4A:
  170. case FORMAT_PVRTC4: {
  171. r_w = 8;
  172. r_h = 8;
  173. } break;
  174. case FORMAT_ETC: {
  175. r_w = 4;
  176. r_h = 4;
  177. } break;
  178. case FORMAT_BPTC_RGBA:
  179. case FORMAT_BPTC_RGBF:
  180. case FORMAT_BPTC_RGBFU: {
  181. r_w = 4;
  182. r_h = 4;
  183. } break;
  184. case FORMAT_ETC2_R11: //etc2
  185. case FORMAT_ETC2_R11S: //signed: NOT srgb.
  186. case FORMAT_ETC2_RG11:
  187. case FORMAT_ETC2_RG11S:
  188. case FORMAT_ETC2_RGB8:
  189. case FORMAT_ETC2_RGBA8:
  190. case FORMAT_ETC2_RGB8A1: {
  191. r_w = 4;
  192. r_h = 4;
  193. } break;
  194. default: {
  195. r_w = 1;
  196. r_h = 1;
  197. } break;
  198. }
  199. }
  200. int Image::get_format_pixel_rshift(Format p_format) {
  201. if (p_format == FORMAT_DXT1 || p_format == FORMAT_RGTC_R || p_format == FORMAT_PVRTC4 || p_format == FORMAT_PVRTC4A || p_format == FORMAT_ETC || p_format == FORMAT_ETC2_R11 || p_format == FORMAT_ETC2_R11S || p_format == FORMAT_ETC2_RGB8 || p_format == FORMAT_ETC2_RGB8A1)
  202. return 1;
  203. else if (p_format == FORMAT_PVRTC2 || p_format == FORMAT_PVRTC2A)
  204. return 2;
  205. else
  206. return 0;
  207. }
  208. int Image::get_format_block_size(Format p_format) {
  209. switch (p_format) {
  210. case FORMAT_DXT1: //s3tc bc1
  211. case FORMAT_DXT3: //bc2
  212. case FORMAT_DXT5: //bc3
  213. case FORMAT_RGTC_R: //bc4
  214. case FORMAT_RGTC_RG: { //bc5 case case FORMAT_DXT1:
  215. return 4;
  216. }
  217. case FORMAT_PVRTC2:
  218. case FORMAT_PVRTC2A: {
  219. return 4;
  220. }
  221. case FORMAT_PVRTC4A:
  222. case FORMAT_PVRTC4: {
  223. return 4;
  224. }
  225. case FORMAT_ETC: {
  226. return 4;
  227. }
  228. case FORMAT_BPTC_RGBA:
  229. case FORMAT_BPTC_RGBF:
  230. case FORMAT_BPTC_RGBFU: {
  231. return 4;
  232. }
  233. case FORMAT_ETC2_R11: //etc2
  234. case FORMAT_ETC2_R11S: //signed: NOT srgb.
  235. case FORMAT_ETC2_RG11:
  236. case FORMAT_ETC2_RG11S:
  237. case FORMAT_ETC2_RGB8:
  238. case FORMAT_ETC2_RGBA8:
  239. case FORMAT_ETC2_RGB8A1: {
  240. return 4;
  241. }
  242. default: {
  243. }
  244. }
  245. return 1;
  246. }
  247. void Image::_get_mipmap_offset_and_size(int p_mipmap, int &r_offset, int &r_width, int &r_height) const {
  248. int w = width;
  249. int h = height;
  250. int ofs = 0;
  251. int pixel_size = get_format_pixel_size(format);
  252. int pixel_rshift = get_format_pixel_rshift(format);
  253. int block = get_format_block_size(format);
  254. int minw, minh;
  255. get_format_min_pixel_size(format, minw, minh);
  256. for (int i = 0; i < p_mipmap; i++) {
  257. int bw = w % block != 0 ? w + (block - w % block) : w;
  258. int bh = h % block != 0 ? h + (block - h % block) : h;
  259. int s = bw * bh;
  260. s *= pixel_size;
  261. s >>= pixel_rshift;
  262. ofs += s;
  263. w = MAX(minw, w >> 1);
  264. h = MAX(minh, h >> 1);
  265. }
  266. r_offset = ofs;
  267. r_width = w;
  268. r_height = h;
  269. }
  270. int Image::get_mipmap_offset(int p_mipmap) const {
  271. ERR_FAIL_INDEX_V(p_mipmap, get_mipmap_count() + 1, -1);
  272. int ofs, w, h;
  273. _get_mipmap_offset_and_size(p_mipmap, ofs, w, h);
  274. return ofs;
  275. }
  276. void Image::get_mipmap_offset_and_size(int p_mipmap, int &r_ofs, int &r_size) const {
  277. int ofs, w, h;
  278. _get_mipmap_offset_and_size(p_mipmap, ofs, w, h);
  279. int ofs2;
  280. _get_mipmap_offset_and_size(p_mipmap + 1, ofs2, w, h);
  281. r_ofs = ofs;
  282. r_size = ofs2 - ofs;
  283. }
  284. void Image::get_mipmap_offset_size_and_dimensions(int p_mipmap, int &r_ofs, int &r_size, int &w, int &h) const {
  285. int ofs;
  286. _get_mipmap_offset_and_size(p_mipmap, ofs, w, h);
  287. int ofs2, w2, h2;
  288. _get_mipmap_offset_and_size(p_mipmap + 1, ofs2, w2, h2);
  289. r_ofs = ofs;
  290. r_size = ofs2 - ofs;
  291. }
  292. int Image::get_width() const {
  293. return width;
  294. }
  295. int Image::get_height() const {
  296. return height;
  297. }
  298. Vector2 Image::get_size() const {
  299. return Vector2(width, height);
  300. }
  301. bool Image::has_mipmaps() const {
  302. return mipmaps;
  303. }
  304. int Image::get_mipmap_count() const {
  305. if (mipmaps)
  306. return get_image_required_mipmaps(width, height, format);
  307. else
  308. return 0;
  309. }
  310. //using template generates perfectly optimized code due to constant expression reduction and unused variable removal present in all compilers
  311. template <uint32_t read_bytes, bool read_alpha, uint32_t write_bytes, bool write_alpha, bool read_gray, bool write_gray>
  312. static void _convert(int p_width, int p_height, const uint8_t *p_src, uint8_t *p_dst) {
  313. uint32_t max_bytes = MAX(read_bytes, write_bytes);
  314. for (int y = 0; y < p_height; y++) {
  315. for (int x = 0; x < p_width; x++) {
  316. const uint8_t *rofs = &p_src[((y * p_width) + x) * (read_bytes + (read_alpha ? 1 : 0))];
  317. uint8_t *wofs = &p_dst[((y * p_width) + x) * (write_bytes + (write_alpha ? 1 : 0))];
  318. uint8_t rgba[4];
  319. if (read_gray) {
  320. rgba[0] = rofs[0];
  321. rgba[1] = rofs[0];
  322. rgba[2] = rofs[0];
  323. } else {
  324. for (uint32_t i = 0; i < max_bytes; i++) {
  325. rgba[i] = (i < read_bytes) ? rofs[i] : 0;
  326. }
  327. }
  328. if (read_alpha || write_alpha) {
  329. rgba[3] = read_alpha ? rofs[read_bytes] : 255;
  330. }
  331. if (write_gray) {
  332. //TODO: not correct grayscale, should use fixed point version of actual weights
  333. wofs[0] = uint8_t((uint16_t(rofs[0]) + uint16_t(rofs[1]) + uint16_t(rofs[2])) / 3);
  334. } else {
  335. for (uint32_t i = 0; i < write_bytes; i++) {
  336. wofs[i] = rgba[i];
  337. }
  338. }
  339. if (write_alpha) {
  340. wofs[write_bytes] = rgba[3];
  341. }
  342. }
  343. }
  344. }
  345. void Image::convert(Format p_new_format) {
  346. if (data.size() == 0)
  347. return;
  348. if (p_new_format == format)
  349. return;
  350. ERR_FAIL_COND_MSG(write_lock.ptr(), "Cannot convert image when it is locked.");
  351. if (format > FORMAT_RGBE9995 || p_new_format > FORMAT_RGBE9995) {
  352. ERR_FAIL_MSG("Cannot convert to <-> from compressed formats. Use compress() and decompress() instead.");
  353. } else if (format > FORMAT_RGBA8 || p_new_format > FORMAT_RGBA8) {
  354. //use put/set pixel which is slower but works with non byte formats
  355. Image new_img(width, height, 0, p_new_format);
  356. lock();
  357. new_img.lock();
  358. for (int i = 0; i < width; i++) {
  359. for (int j = 0; j < height; j++) {
  360. new_img.set_pixel(i, j, get_pixel(i, j));
  361. }
  362. }
  363. unlock();
  364. new_img.unlock();
  365. if (has_mipmaps()) {
  366. new_img.generate_mipmaps();
  367. }
  368. _copy_internals_from(new_img);
  369. return;
  370. }
  371. Image new_img(width, height, 0, p_new_format);
  372. PoolVector<uint8_t>::Read r = data.read();
  373. PoolVector<uint8_t>::Write w = new_img.data.write();
  374. const uint8_t *rptr = r.ptr();
  375. uint8_t *wptr = w.ptr();
  376. int conversion_type = format | p_new_format << 8;
  377. switch (conversion_type) {
  378. case FORMAT_L8 | (FORMAT_LA8 << 8): _convert<1, false, 1, true, true, true>(width, height, rptr, wptr); break;
  379. case FORMAT_L8 | (FORMAT_R8 << 8): _convert<1, false, 1, false, true, false>(width, height, rptr, wptr); break;
  380. case FORMAT_L8 | (FORMAT_RG8 << 8): _convert<1, false, 2, false, true, false>(width, height, rptr, wptr); break;
  381. case FORMAT_L8 | (FORMAT_RGB8 << 8): _convert<1, false, 3, false, true, false>(width, height, rptr, wptr); break;
  382. case FORMAT_L8 | (FORMAT_RGBA8 << 8): _convert<1, false, 3, true, true, false>(width, height, rptr, wptr); break;
  383. case FORMAT_LA8 | (FORMAT_L8 << 8): _convert<1, true, 1, false, true, true>(width, height, rptr, wptr); break;
  384. case FORMAT_LA8 | (FORMAT_R8 << 8): _convert<1, true, 1, false, true, false>(width, height, rptr, wptr); break;
  385. case FORMAT_LA8 | (FORMAT_RG8 << 8): _convert<1, true, 2, false, true, false>(width, height, rptr, wptr); break;
  386. case FORMAT_LA8 | (FORMAT_RGB8 << 8): _convert<1, true, 3, false, true, false>(width, height, rptr, wptr); break;
  387. case FORMAT_LA8 | (FORMAT_RGBA8 << 8): _convert<1, true, 3, true, true, false>(width, height, rptr, wptr); break;
  388. case FORMAT_R8 | (FORMAT_L8 << 8): _convert<1, false, 1, false, false, true>(width, height, rptr, wptr); break;
  389. case FORMAT_R8 | (FORMAT_LA8 << 8): _convert<1, false, 1, true, false, true>(width, height, rptr, wptr); break;
  390. case FORMAT_R8 | (FORMAT_RG8 << 8): _convert<1, false, 2, false, false, false>(width, height, rptr, wptr); break;
  391. case FORMAT_R8 | (FORMAT_RGB8 << 8): _convert<1, false, 3, false, false, false>(width, height, rptr, wptr); break;
  392. case FORMAT_R8 | (FORMAT_RGBA8 << 8): _convert<1, false, 3, true, false, false>(width, height, rptr, wptr); break;
  393. case FORMAT_RG8 | (FORMAT_L8 << 8): _convert<2, false, 1, false, false, true>(width, height, rptr, wptr); break;
  394. case FORMAT_RG8 | (FORMAT_LA8 << 8): _convert<2, false, 1, true, false, true>(width, height, rptr, wptr); break;
  395. case FORMAT_RG8 | (FORMAT_R8 << 8): _convert<2, false, 1, false, false, false>(width, height, rptr, wptr); break;
  396. case FORMAT_RG8 | (FORMAT_RGB8 << 8): _convert<2, false, 3, false, false, false>(width, height, rptr, wptr); break;
  397. case FORMAT_RG8 | (FORMAT_RGBA8 << 8): _convert<2, false, 3, true, false, false>(width, height, rptr, wptr); break;
  398. case FORMAT_RGB8 | (FORMAT_L8 << 8): _convert<3, false, 1, false, false, true>(width, height, rptr, wptr); break;
  399. case FORMAT_RGB8 | (FORMAT_LA8 << 8): _convert<3, false, 1, true, false, true>(width, height, rptr, wptr); break;
  400. case FORMAT_RGB8 | (FORMAT_R8 << 8): _convert<3, false, 1, false, false, false>(width, height, rptr, wptr); break;
  401. case FORMAT_RGB8 | (FORMAT_RG8 << 8): _convert<3, false, 2, false, false, false>(width, height, rptr, wptr); break;
  402. case FORMAT_RGB8 | (FORMAT_RGBA8 << 8): _convert<3, false, 3, true, false, false>(width, height, rptr, wptr); break;
  403. case FORMAT_RGBA8 | (FORMAT_L8 << 8): _convert<3, true, 1, false, false, true>(width, height, rptr, wptr); break;
  404. case FORMAT_RGBA8 | (FORMAT_LA8 << 8): _convert<3, true, 1, true, false, true>(width, height, rptr, wptr); break;
  405. case FORMAT_RGBA8 | (FORMAT_R8 << 8): _convert<3, true, 1, false, false, false>(width, height, rptr, wptr); break;
  406. case FORMAT_RGBA8 | (FORMAT_RG8 << 8): _convert<3, true, 2, false, false, false>(width, height, rptr, wptr); break;
  407. case FORMAT_RGBA8 | (FORMAT_RGB8 << 8): _convert<3, true, 3, false, false, false>(width, height, rptr, wptr); break;
  408. }
  409. r.release();
  410. w.release();
  411. bool gen_mipmaps = mipmaps;
  412. _copy_internals_from(new_img);
  413. if (gen_mipmaps)
  414. generate_mipmaps();
  415. }
  416. Image::Format Image::get_format() const {
  417. return format;
  418. }
  419. static double _bicubic_interp_kernel(double x) {
  420. x = ABS(x);
  421. double bc = 0;
  422. if (x <= 1)
  423. bc = (1.5 * x - 2.5) * x * x + 1;
  424. else if (x < 2)
  425. bc = ((-0.5 * x + 2.5) * x - 4) * x + 2;
  426. return bc;
  427. }
  428. template <int CC, class T>
  429. static void _scale_cubic(const uint8_t *__restrict p_src, uint8_t *__restrict p_dst, uint32_t p_src_width, uint32_t p_src_height, uint32_t p_dst_width, uint32_t p_dst_height) {
  430. // get source image size
  431. int width = p_src_width;
  432. int height = p_src_height;
  433. double xfac = (double)width / p_dst_width;
  434. double yfac = (double)height / p_dst_height;
  435. // coordinates of source points and coefficients
  436. double ox, oy, dx, dy, k1, k2;
  437. int ox1, oy1, ox2, oy2;
  438. // destination pixel values
  439. // width and height decreased by 1
  440. int ymax = height - 1;
  441. int xmax = width - 1;
  442. // temporary pointer
  443. for (uint32_t y = 0; y < p_dst_height; y++) {
  444. // Y coordinates
  445. oy = (double)y * yfac - 0.5f;
  446. oy1 = (int)oy;
  447. dy = oy - (double)oy1;
  448. for (uint32_t x = 0; x < p_dst_width; x++) {
  449. // X coordinates
  450. ox = (double)x * xfac - 0.5f;
  451. ox1 = (int)ox;
  452. dx = ox - (double)ox1;
  453. // initial pixel value
  454. T *__restrict dst = ((T *)p_dst) + (y * p_dst_width + x) * CC;
  455. double color[CC];
  456. for (int i = 0; i < CC; i++) {
  457. color[i] = 0;
  458. }
  459. for (int n = -1; n < 3; n++) {
  460. // get Y coefficient
  461. k1 = _bicubic_interp_kernel(dy - (double)n);
  462. oy2 = oy1 + n;
  463. if (oy2 < 0)
  464. oy2 = 0;
  465. if (oy2 > ymax)
  466. oy2 = ymax;
  467. for (int m = -1; m < 3; m++) {
  468. // get X coefficient
  469. k2 = k1 * _bicubic_interp_kernel((double)m - dx);
  470. ox2 = ox1 + m;
  471. if (ox2 < 0)
  472. ox2 = 0;
  473. if (ox2 > xmax)
  474. ox2 = xmax;
  475. // get pixel of original image
  476. const T *__restrict p = ((T *)p_src) + (oy2 * p_src_width + ox2) * CC;
  477. for (int i = 0; i < CC; i++) {
  478. if (sizeof(T) == 2) { //half float
  479. color[i] = Math::half_to_float(p[i]);
  480. } else {
  481. color[i] += p[i] * k2;
  482. }
  483. }
  484. }
  485. }
  486. for (int i = 0; i < CC; i++) {
  487. if (sizeof(T) == 1) { //byte
  488. dst[i] = CLAMP(Math::fast_ftoi(color[i]), 0, 255);
  489. } else if (sizeof(T) == 2) { //half float
  490. dst[i] = Math::make_half_float(color[i]);
  491. } else {
  492. dst[i] = color[i];
  493. }
  494. }
  495. }
  496. }
  497. }
  498. template <int CC, class T>
  499. static void _scale_bilinear(const uint8_t *__restrict p_src, uint8_t *__restrict p_dst, uint32_t p_src_width, uint32_t p_src_height, uint32_t p_dst_width, uint32_t p_dst_height) {
  500. enum {
  501. FRAC_BITS = 8,
  502. FRAC_LEN = (1 << FRAC_BITS),
  503. FRAC_HALF = (FRAC_LEN >> 1),
  504. FRAC_MASK = FRAC_LEN - 1
  505. };
  506. for (uint32_t i = 0; i < p_dst_height; i++) {
  507. // Add 0.5 in order to interpolate based on pixel center
  508. uint32_t src_yofs_up_fp = (i + 0.5) * p_src_height * FRAC_LEN / p_dst_height;
  509. // Calculate nearest src pixel center above current, and truncate to get y index
  510. uint32_t src_yofs_up = src_yofs_up_fp >= FRAC_HALF ? (src_yofs_up_fp - FRAC_HALF) >> FRAC_BITS : 0;
  511. uint32_t src_yofs_down = (src_yofs_up_fp + FRAC_HALF) >> FRAC_BITS;
  512. if (src_yofs_down >= p_src_height) {
  513. src_yofs_down = p_src_height - 1;
  514. }
  515. // Calculate distance to pixel center of src_yofs_up
  516. uint32_t src_yofs_frac = src_yofs_up_fp & FRAC_MASK;
  517. src_yofs_frac = src_yofs_frac >= FRAC_HALF ? src_yofs_frac - FRAC_HALF : src_yofs_frac + FRAC_HALF;
  518. uint32_t y_ofs_up = src_yofs_up * p_src_width * CC;
  519. uint32_t y_ofs_down = src_yofs_down * p_src_width * CC;
  520. for (uint32_t j = 0; j < p_dst_width; j++) {
  521. uint32_t src_xofs_left_fp = (j + 0.5) * p_src_width * FRAC_LEN / p_dst_width;
  522. uint32_t src_xofs_left = src_xofs_left_fp >= FRAC_HALF ? (src_xofs_left_fp - FRAC_HALF) >> FRAC_BITS : 0;
  523. uint32_t src_xofs_right = (src_xofs_left_fp + FRAC_HALF) >> FRAC_BITS;
  524. if (src_xofs_right >= p_src_width) {
  525. src_xofs_right = p_src_width - 1;
  526. }
  527. uint32_t src_xofs_frac = src_xofs_left_fp & FRAC_MASK;
  528. src_xofs_frac = src_xofs_frac >= FRAC_HALF ? src_xofs_frac - FRAC_HALF : src_xofs_frac + FRAC_HALF;
  529. src_xofs_left *= CC;
  530. src_xofs_right *= CC;
  531. for (uint32_t l = 0; l < CC; l++) {
  532. if (sizeof(T) == 1) { //uint8
  533. uint32_t p00 = p_src[y_ofs_up + src_xofs_left + l] << FRAC_BITS;
  534. uint32_t p10 = p_src[y_ofs_up + src_xofs_right + l] << FRAC_BITS;
  535. uint32_t p01 = p_src[y_ofs_down + src_xofs_left + l] << FRAC_BITS;
  536. uint32_t p11 = p_src[y_ofs_down + src_xofs_right + l] << FRAC_BITS;
  537. uint32_t interp_up = p00 + (((p10 - p00) * src_xofs_frac) >> FRAC_BITS);
  538. uint32_t interp_down = p01 + (((p11 - p01) * src_xofs_frac) >> FRAC_BITS);
  539. uint32_t interp = interp_up + (((interp_down - interp_up) * src_yofs_frac) >> FRAC_BITS);
  540. interp >>= FRAC_BITS;
  541. p_dst[i * p_dst_width * CC + j * CC + l] = interp;
  542. } else if (sizeof(T) == 2) { //half float
  543. float xofs_frac = float(src_xofs_frac) / (1 << FRAC_BITS);
  544. float yofs_frac = float(src_yofs_frac) / (1 << FRAC_BITS);
  545. const T *src = ((const T *)p_src);
  546. T *dst = ((T *)p_dst);
  547. float p00 = Math::half_to_float(src[y_ofs_up + src_xofs_left + l]);
  548. float p10 = Math::half_to_float(src[y_ofs_up + src_xofs_right + l]);
  549. float p01 = Math::half_to_float(src[y_ofs_down + src_xofs_left + l]);
  550. float p11 = Math::half_to_float(src[y_ofs_down + src_xofs_right + l]);
  551. float interp_up = p00 + (p10 - p00) * xofs_frac;
  552. float interp_down = p01 + (p11 - p01) * xofs_frac;
  553. float interp = interp_up + ((interp_down - interp_up) * yofs_frac);
  554. dst[i * p_dst_width * CC + j * CC + l] = Math::make_half_float(interp);
  555. } else if (sizeof(T) == 4) { //float
  556. float xofs_frac = float(src_xofs_frac) / (1 << FRAC_BITS);
  557. float yofs_frac = float(src_yofs_frac) / (1 << FRAC_BITS);
  558. const T *src = ((const T *)p_src);
  559. T *dst = ((T *)p_dst);
  560. float p00 = src[y_ofs_up + src_xofs_left + l];
  561. float p10 = src[y_ofs_up + src_xofs_right + l];
  562. float p01 = src[y_ofs_down + src_xofs_left + l];
  563. float p11 = src[y_ofs_down + src_xofs_right + l];
  564. float interp_up = p00 + (p10 - p00) * xofs_frac;
  565. float interp_down = p01 + (p11 - p01) * xofs_frac;
  566. float interp = interp_up + ((interp_down - interp_up) * yofs_frac);
  567. dst[i * p_dst_width * CC + j * CC + l] = interp;
  568. }
  569. }
  570. }
  571. }
  572. }
  573. template <int CC, class T>
  574. static void _scale_nearest(const uint8_t *__restrict p_src, uint8_t *__restrict p_dst, uint32_t p_src_width, uint32_t p_src_height, uint32_t p_dst_width, uint32_t p_dst_height) {
  575. for (uint32_t i = 0; i < p_dst_height; i++) {
  576. uint32_t src_yofs = i * p_src_height / p_dst_height;
  577. uint32_t y_ofs = src_yofs * p_src_width * CC;
  578. for (uint32_t j = 0; j < p_dst_width; j++) {
  579. uint32_t src_xofs = j * p_src_width / p_dst_width;
  580. src_xofs *= CC;
  581. for (uint32_t l = 0; l < CC; l++) {
  582. const T *src = ((const T *)p_src);
  583. T *dst = ((T *)p_dst);
  584. T p = src[y_ofs + src_xofs + l];
  585. dst[i * p_dst_width * CC + j * CC + l] = p;
  586. }
  587. }
  588. }
  589. }
  590. #define LANCZOS_TYPE 3
  591. static float _lanczos(float p_x) {
  592. return Math::abs(p_x) >= LANCZOS_TYPE ? 0 : Math::sincn(p_x) * Math::sincn(p_x / LANCZOS_TYPE);
  593. }
  594. template <int CC, class T>
  595. static void _scale_lanczos(const uint8_t *__restrict p_src, uint8_t *__restrict p_dst, uint32_t p_src_width, uint32_t p_src_height, uint32_t p_dst_width, uint32_t p_dst_height) {
  596. int32_t src_width = p_src_width;
  597. int32_t src_height = p_src_height;
  598. int32_t dst_height = p_dst_height;
  599. int32_t dst_width = p_dst_width;
  600. uint32_t buffer_size = src_height * dst_width * CC;
  601. float *buffer = memnew_arr(float, buffer_size); // Store the first pass in a buffer
  602. { // FIRST PASS (horizontal)
  603. float x_scale = float(src_width) / float(dst_width);
  604. float scale_factor = MAX(x_scale, 1); // A larger kernel is required only when downscaling
  605. int32_t half_kernel = LANCZOS_TYPE * scale_factor;
  606. float *kernel = memnew_arr(float, half_kernel * 2);
  607. for (int32_t buffer_x = 0; buffer_x < dst_width; buffer_x++) {
  608. // The corresponding point on the source image
  609. float src_x = (buffer_x + 0.5f) * x_scale; // Offset by 0.5 so it uses the pixel's center
  610. int32_t start_x = MAX(0, int32_t(src_x) - half_kernel + 1);
  611. int32_t end_x = MIN(src_width - 1, int32_t(src_x) + half_kernel);
  612. // Create the kernel used by all the pixels of the column
  613. for (int32_t target_x = start_x; target_x <= end_x; target_x++)
  614. kernel[target_x - start_x] = _lanczos((target_x + 0.5f - src_x) / scale_factor);
  615. for (int32_t buffer_y = 0; buffer_y < src_height; buffer_y++) {
  616. float pixel[CC] = { 0 };
  617. float weight = 0;
  618. for (int32_t target_x = start_x; target_x <= end_x; target_x++) {
  619. float lanczos_val = kernel[target_x - start_x];
  620. weight += lanczos_val;
  621. const T *__restrict src_data = ((const T *)p_src) + (buffer_y * src_width + target_x) * CC;
  622. for (uint32_t i = 0; i < CC; i++) {
  623. if (sizeof(T) == 2) //half float
  624. pixel[i] += Math::half_to_float(src_data[i]) * lanczos_val;
  625. else
  626. pixel[i] += src_data[i] * lanczos_val;
  627. }
  628. }
  629. float *dst_data = ((float *)buffer) + (buffer_y * dst_width + buffer_x) * CC;
  630. for (uint32_t i = 0; i < CC; i++)
  631. dst_data[i] = pixel[i] / weight; // Normalize the sum of all the samples
  632. }
  633. }
  634. memdelete_arr(kernel);
  635. } // End of first pass
  636. { // SECOND PASS (vertical + result)
  637. float y_scale = float(src_height) / float(dst_height);
  638. float scale_factor = MAX(y_scale, 1);
  639. int32_t half_kernel = LANCZOS_TYPE * scale_factor;
  640. float *kernel = memnew_arr(float, half_kernel * 2);
  641. for (int32_t dst_y = 0; dst_y < dst_height; dst_y++) {
  642. float buffer_y = (dst_y + 0.5f) * y_scale;
  643. int32_t start_y = MAX(0, int32_t(buffer_y) - half_kernel + 1);
  644. int32_t end_y = MIN(src_height - 1, int32_t(buffer_y) + half_kernel);
  645. for (int32_t target_y = start_y; target_y <= end_y; target_y++)
  646. kernel[target_y - start_y] = _lanczos((target_y + 0.5f - buffer_y) / scale_factor);
  647. for (int32_t dst_x = 0; dst_x < dst_width; dst_x++) {
  648. float pixel[CC] = { 0 };
  649. float weight = 0;
  650. for (int32_t target_y = start_y; target_y <= end_y; target_y++) {
  651. float lanczos_val = kernel[target_y - start_y];
  652. weight += lanczos_val;
  653. float *buffer_data = ((float *)buffer) + (target_y * dst_width + dst_x) * CC;
  654. for (uint32_t i = 0; i < CC; i++)
  655. pixel[i] += buffer_data[i] * lanczos_val;
  656. }
  657. T *dst_data = ((T *)p_dst) + (dst_y * dst_width + dst_x) * CC;
  658. for (uint32_t i = 0; i < CC; i++) {
  659. pixel[i] /= weight;
  660. if (sizeof(T) == 1) //byte
  661. dst_data[i] = CLAMP(Math::fast_ftoi(pixel[i]), 0, 255);
  662. else if (sizeof(T) == 2) //half float
  663. dst_data[i] = Math::make_half_float(pixel[i]);
  664. else // float
  665. dst_data[i] = pixel[i];
  666. }
  667. }
  668. }
  669. memdelete_arr(kernel);
  670. } // End of second pass
  671. memdelete_arr(buffer);
  672. }
  673. static void _overlay(const uint8_t *__restrict p_src, uint8_t *__restrict p_dst, float p_alpha, uint32_t p_width, uint32_t p_height, uint32_t p_pixel_size) {
  674. uint16_t alpha = MIN((uint16_t)(p_alpha * 256.0f), 256);
  675. for (uint32_t i = 0; i < p_width * p_height * p_pixel_size; i++) {
  676. p_dst[i] = (p_dst[i] * (256 - alpha) + p_src[i] * alpha) >> 8;
  677. }
  678. }
  679. bool Image::is_size_po2() const {
  680. return uint32_t(width) == next_power_of_2(width) && uint32_t(height) == next_power_of_2(height);
  681. }
  682. void Image::resize_to_po2(bool p_square, Interpolation p_interpolation) {
  683. ERR_FAIL_COND_MSG(!_can_modify(format), "Cannot resize in compressed or custom image formats.");
  684. int w = next_power_of_2(width);
  685. int h = next_power_of_2(height);
  686. if (p_square) {
  687. w = h = MAX(w, h);
  688. }
  689. if (w == width && h == height) {
  690. if (!p_square || w == h)
  691. return; //nothing to do
  692. }
  693. resize(w, h, p_interpolation);
  694. }
  695. void Image::resize(int p_width, int p_height, Interpolation p_interpolation) {
  696. ERR_FAIL_COND_MSG(data.size() == 0, "Cannot resize image before creating it, use create() or create_from_data() first.");
  697. ERR_FAIL_COND_MSG(!_can_modify(format), "Cannot resize in compressed or custom image formats.");
  698. ERR_FAIL_COND_MSG(write_lock.ptr(), "Cannot resize image when it is locked.");
  699. bool mipmap_aware = p_interpolation == INTERPOLATE_TRILINEAR /* || p_interpolation == INTERPOLATE_TRICUBIC */;
  700. ERR_FAIL_COND_MSG(p_width <= 0, "Image width must be greater than 0.");
  701. ERR_FAIL_COND_MSG(p_height <= 0, "Image height must be greater than 0.");
  702. ERR_FAIL_COND_MSG(p_width > MAX_WIDTH, "Image width cannot be greater than " + itos(MAX_WIDTH) + ".");
  703. ERR_FAIL_COND_MSG(p_height > MAX_HEIGHT, "Image height cannot be greater than " + itos(MAX_HEIGHT) + ".");
  704. if (p_width == width && p_height == height)
  705. return;
  706. Image dst(p_width, p_height, 0, format);
  707. // Setup mipmap-aware scaling
  708. Image dst2;
  709. int mip1 = 0;
  710. int mip2 = 0;
  711. float mip1_weight = 0;
  712. if (mipmap_aware) {
  713. float avg_scale = ((float)p_width / width + (float)p_height / height) * 0.5f;
  714. if (avg_scale >= 1.0f) {
  715. mipmap_aware = false;
  716. } else {
  717. float level = Math::log(1.0f / avg_scale) / Math::log(2.0f);
  718. mip1 = CLAMP((int)Math::floor(level), 0, get_mipmap_count());
  719. mip2 = CLAMP((int)Math::ceil(level), 0, get_mipmap_count());
  720. mip1_weight = 1.0f - (level - mip1);
  721. }
  722. }
  723. bool interpolate_mipmaps = mipmap_aware && mip1 != mip2;
  724. if (interpolate_mipmaps) {
  725. dst2.create(p_width, p_height, 0, format);
  726. }
  727. bool had_mipmaps = mipmaps;
  728. if (interpolate_mipmaps && !had_mipmaps) {
  729. generate_mipmaps();
  730. }
  731. // --
  732. PoolVector<uint8_t>::Read r = data.read();
  733. const unsigned char *r_ptr = r.ptr();
  734. PoolVector<uint8_t>::Write w = dst.data.write();
  735. unsigned char *w_ptr = w.ptr();
  736. switch (p_interpolation) {
  737. case INTERPOLATE_NEAREST: {
  738. if (format >= FORMAT_L8 && format <= FORMAT_RGBA8) {
  739. switch (get_format_pixel_size(format)) {
  740. case 1: _scale_nearest<1, uint8_t>(r_ptr, w_ptr, width, height, p_width, p_height); break;
  741. case 2: _scale_nearest<2, uint8_t>(r_ptr, w_ptr, width, height, p_width, p_height); break;
  742. case 3: _scale_nearest<3, uint8_t>(r_ptr, w_ptr, width, height, p_width, p_height); break;
  743. case 4: _scale_nearest<4, uint8_t>(r_ptr, w_ptr, width, height, p_width, p_height); break;
  744. }
  745. } else if (format >= FORMAT_RF && format <= FORMAT_RGBAF) {
  746. switch (get_format_pixel_size(format)) {
  747. case 4: _scale_nearest<1, float>(r_ptr, w_ptr, width, height, p_width, p_height); break;
  748. case 8: _scale_nearest<2, float>(r_ptr, w_ptr, width, height, p_width, p_height); break;
  749. case 12: _scale_nearest<3, float>(r_ptr, w_ptr, width, height, p_width, p_height); break;
  750. case 16: _scale_nearest<4, float>(r_ptr, w_ptr, width, height, p_width, p_height); break;
  751. }
  752. } else if (format >= FORMAT_RH && format <= FORMAT_RGBAH) {
  753. switch (get_format_pixel_size(format)) {
  754. case 2: _scale_nearest<1, uint16_t>(r_ptr, w_ptr, width, height, p_width, p_height); break;
  755. case 4: _scale_nearest<2, uint16_t>(r_ptr, w_ptr, width, height, p_width, p_height); break;
  756. case 6: _scale_nearest<3, uint16_t>(r_ptr, w_ptr, width, height, p_width, p_height); break;
  757. case 8: _scale_nearest<4, uint16_t>(r_ptr, w_ptr, width, height, p_width, p_height); break;
  758. }
  759. }
  760. } break;
  761. case INTERPOLATE_BILINEAR:
  762. case INTERPOLATE_TRILINEAR: {
  763. for (int i = 0; i < 2; ++i) {
  764. int src_width;
  765. int src_height;
  766. const unsigned char *src_ptr;
  767. if (!mipmap_aware) {
  768. if (i == 0) {
  769. // Standard behavior
  770. src_width = width;
  771. src_height = height;
  772. src_ptr = r_ptr;
  773. } else {
  774. // No need for a second iteration
  775. break;
  776. }
  777. } else {
  778. if (i == 0) {
  779. // Read from the first mipmap that will be interpolated
  780. // (if both levels are the same, we will not interpolate, but at least we'll sample from the right level)
  781. int offs;
  782. _get_mipmap_offset_and_size(mip1, offs, src_width, src_height);
  783. src_ptr = r_ptr + offs;
  784. } else if (!interpolate_mipmaps) {
  785. // No need generate a second image
  786. break;
  787. } else {
  788. // Switch to read from the second mipmap that will be interpolated
  789. int offs;
  790. _get_mipmap_offset_and_size(mip2, offs, src_width, src_height);
  791. src_ptr = r_ptr + offs;
  792. // Switch to write to the second destination image
  793. w = dst2.data.write();
  794. w_ptr = w.ptr();
  795. }
  796. }
  797. if (format >= FORMAT_L8 && format <= FORMAT_RGBA8) {
  798. switch (get_format_pixel_size(format)) {
  799. case 1: _scale_bilinear<1, uint8_t>(src_ptr, w_ptr, src_width, src_height, p_width, p_height); break;
  800. case 2: _scale_bilinear<2, uint8_t>(src_ptr, w_ptr, src_width, src_height, p_width, p_height); break;
  801. case 3: _scale_bilinear<3, uint8_t>(src_ptr, w_ptr, src_width, src_height, p_width, p_height); break;
  802. case 4: _scale_bilinear<4, uint8_t>(src_ptr, w_ptr, src_width, src_height, p_width, p_height); break;
  803. }
  804. } else if (format >= FORMAT_RF && format <= FORMAT_RGBAF) {
  805. switch (get_format_pixel_size(format)) {
  806. case 4: _scale_bilinear<1, float>(src_ptr, w_ptr, src_width, src_height, p_width, p_height); break;
  807. case 8: _scale_bilinear<2, float>(src_ptr, w_ptr, src_width, src_height, p_width, p_height); break;
  808. case 12: _scale_bilinear<3, float>(src_ptr, w_ptr, src_width, src_height, p_width, p_height); break;
  809. case 16: _scale_bilinear<4, float>(src_ptr, w_ptr, src_width, src_height, p_width, p_height); break;
  810. }
  811. } else if (format >= FORMAT_RH && format <= FORMAT_RGBAH) {
  812. switch (get_format_pixel_size(format)) {
  813. case 2: _scale_bilinear<1, uint16_t>(src_ptr, w_ptr, src_width, src_height, p_width, p_height); break;
  814. case 4: _scale_bilinear<2, uint16_t>(src_ptr, w_ptr, src_width, src_height, p_width, p_height); break;
  815. case 6: _scale_bilinear<3, uint16_t>(src_ptr, w_ptr, src_width, src_height, p_width, p_height); break;
  816. case 8: _scale_bilinear<4, uint16_t>(src_ptr, w_ptr, src_width, src_height, p_width, p_height); break;
  817. }
  818. }
  819. }
  820. if (interpolate_mipmaps) {
  821. // Switch to read again from the first scaled mipmap to overlay it over the second
  822. r = dst.data.read();
  823. _overlay(r.ptr(), w.ptr(), mip1_weight, p_width, p_height, get_format_pixel_size(format));
  824. }
  825. } break;
  826. case INTERPOLATE_CUBIC: {
  827. if (format >= FORMAT_L8 && format <= FORMAT_RGBA8) {
  828. switch (get_format_pixel_size(format)) {
  829. case 1: _scale_cubic<1, uint8_t>(r_ptr, w_ptr, width, height, p_width, p_height); break;
  830. case 2: _scale_cubic<2, uint8_t>(r_ptr, w_ptr, width, height, p_width, p_height); break;
  831. case 3: _scale_cubic<3, uint8_t>(r_ptr, w_ptr, width, height, p_width, p_height); break;
  832. case 4: _scale_cubic<4, uint8_t>(r_ptr, w_ptr, width, height, p_width, p_height); break;
  833. }
  834. } else if (format >= FORMAT_RF && format <= FORMAT_RGBAF) {
  835. switch (get_format_pixel_size(format)) {
  836. case 4: _scale_cubic<1, float>(r_ptr, w_ptr, width, height, p_width, p_height); break;
  837. case 8: _scale_cubic<2, float>(r_ptr, w_ptr, width, height, p_width, p_height); break;
  838. case 12: _scale_cubic<3, float>(r_ptr, w_ptr, width, height, p_width, p_height); break;
  839. case 16: _scale_cubic<4, float>(r_ptr, w_ptr, width, height, p_width, p_height); break;
  840. }
  841. } else if (format >= FORMAT_RH && format <= FORMAT_RGBAH) {
  842. switch (get_format_pixel_size(format)) {
  843. case 2: _scale_cubic<1, uint16_t>(r_ptr, w_ptr, width, height, p_width, p_height); break;
  844. case 4: _scale_cubic<2, uint16_t>(r_ptr, w_ptr, width, height, p_width, p_height); break;
  845. case 6: _scale_cubic<3, uint16_t>(r_ptr, w_ptr, width, height, p_width, p_height); break;
  846. case 8: _scale_cubic<4, uint16_t>(r_ptr, w_ptr, width, height, p_width, p_height); break;
  847. }
  848. }
  849. } break;
  850. case INTERPOLATE_LANCZOS: {
  851. if (format >= FORMAT_L8 && format <= FORMAT_RGBA8) {
  852. switch (get_format_pixel_size(format)) {
  853. case 1: _scale_lanczos<1, uint8_t>(r_ptr, w_ptr, width, height, p_width, p_height); break;
  854. case 2: _scale_lanczos<2, uint8_t>(r_ptr, w_ptr, width, height, p_width, p_height); break;
  855. case 3: _scale_lanczos<3, uint8_t>(r_ptr, w_ptr, width, height, p_width, p_height); break;
  856. case 4: _scale_lanczos<4, uint8_t>(r_ptr, w_ptr, width, height, p_width, p_height); break;
  857. }
  858. } else if (format >= FORMAT_RF && format <= FORMAT_RGBAF) {
  859. switch (get_format_pixel_size(format)) {
  860. case 4: _scale_lanczos<1, float>(r_ptr, w_ptr, width, height, p_width, p_height); break;
  861. case 8: _scale_lanczos<2, float>(r_ptr, w_ptr, width, height, p_width, p_height); break;
  862. case 12: _scale_lanczos<3, float>(r_ptr, w_ptr, width, height, p_width, p_height); break;
  863. case 16: _scale_lanczos<4, float>(r_ptr, w_ptr, width, height, p_width, p_height); break;
  864. }
  865. } else if (format >= FORMAT_RH && format <= FORMAT_RGBAH) {
  866. switch (get_format_pixel_size(format)) {
  867. case 2: _scale_lanczos<1, uint16_t>(r_ptr, w_ptr, width, height, p_width, p_height); break;
  868. case 4: _scale_lanczos<2, uint16_t>(r_ptr, w_ptr, width, height, p_width, p_height); break;
  869. case 6: _scale_lanczos<3, uint16_t>(r_ptr, w_ptr, width, height, p_width, p_height); break;
  870. case 8: _scale_lanczos<4, uint16_t>(r_ptr, w_ptr, width, height, p_width, p_height); break;
  871. }
  872. }
  873. } break;
  874. }
  875. r.release();
  876. w.release();
  877. if (interpolate_mipmaps) {
  878. dst._copy_internals_from(dst2);
  879. }
  880. if (had_mipmaps)
  881. dst.generate_mipmaps();
  882. _copy_internals_from(dst);
  883. }
  884. void Image::crop_from_point(int p_x, int p_y, int p_width, int p_height) {
  885. ERR_FAIL_COND_MSG(!_can_modify(format), "Cannot crop in compressed or custom image formats.");
  886. ERR_FAIL_COND_MSG(write_lock.ptr(), "Cannot modify image when it is locked.");
  887. ERR_FAIL_COND_MSG(p_x < 0, "Start x position cannot be smaller than 0.");
  888. ERR_FAIL_COND_MSG(p_y < 0, "Start y position cannot be smaller than 0.");
  889. ERR_FAIL_COND_MSG(p_width <= 0, "Width of image must be greater than 0.");
  890. ERR_FAIL_COND_MSG(p_height <= 0, "Height of image must be greater than 0.");
  891. ERR_FAIL_COND_MSG(p_x + p_width > MAX_WIDTH, "End x position cannot be greater than " + itos(MAX_WIDTH) + ".");
  892. ERR_FAIL_COND_MSG(p_y + p_height > MAX_HEIGHT, "End y position cannot be greater than " + itos(MAX_HEIGHT) + ".");
  893. /* to save memory, cropping should be done in-place, however, since this function
  894. will most likely either not be used much, or in critical areas, for now it won't, because
  895. it's a waste of time. */
  896. if (p_width == width && p_height == height && p_x == 0 && p_y == 0)
  897. return;
  898. uint8_t pdata[16]; //largest is 16
  899. uint32_t pixel_size = get_format_pixel_size(format);
  900. Image dst(p_width, p_height, 0, format);
  901. {
  902. PoolVector<uint8_t>::Read r = data.read();
  903. PoolVector<uint8_t>::Write w = dst.data.write();
  904. int m_h = p_y + p_height;
  905. int m_w = p_x + p_width;
  906. for (int y = p_y; y < m_h; y++) {
  907. for (int x = p_x; x < m_w; x++) {
  908. if ((x >= width || y >= height)) {
  909. for (uint32_t i = 0; i < pixel_size; i++)
  910. pdata[i] = 0;
  911. } else {
  912. _get_pixelb(x, y, pixel_size, r.ptr(), pdata);
  913. }
  914. dst._put_pixelb(x - p_x, y - p_y, pixel_size, w.ptr(), pdata);
  915. }
  916. }
  917. }
  918. if (has_mipmaps())
  919. dst.generate_mipmaps();
  920. _copy_internals_from(dst);
  921. }
  922. void Image::crop(int p_width, int p_height) {
  923. crop_from_point(0, 0, p_width, p_height);
  924. }
  925. void Image::flip_y() {
  926. ERR_FAIL_COND_MSG(!_can_modify(format), "Cannot flip_y in compressed or custom image formats.");
  927. bool used_mipmaps = has_mipmaps();
  928. if (used_mipmaps) {
  929. clear_mipmaps();
  930. }
  931. {
  932. PoolVector<uint8_t>::Write w = data.write();
  933. uint8_t up[16];
  934. uint8_t down[16];
  935. uint32_t pixel_size = get_format_pixel_size(format);
  936. for (int y = 0; y < height / 2; y++) {
  937. for (int x = 0; x < width; x++) {
  938. _get_pixelb(x, y, pixel_size, w.ptr(), up);
  939. _get_pixelb(x, height - y - 1, pixel_size, w.ptr(), down);
  940. _put_pixelb(x, height - y - 1, pixel_size, w.ptr(), up);
  941. _put_pixelb(x, y, pixel_size, w.ptr(), down);
  942. }
  943. }
  944. }
  945. if (used_mipmaps) {
  946. generate_mipmaps();
  947. }
  948. }
  949. void Image::flip_x() {
  950. ERR_FAIL_COND_MSG(!_can_modify(format), "Cannot flip_x in compressed or custom image formats.");
  951. bool used_mipmaps = has_mipmaps();
  952. if (used_mipmaps) {
  953. clear_mipmaps();
  954. }
  955. {
  956. PoolVector<uint8_t>::Write w = data.write();
  957. uint8_t up[16];
  958. uint8_t down[16];
  959. uint32_t pixel_size = get_format_pixel_size(format);
  960. for (int y = 0; y < height; y++) {
  961. for (int x = 0; x < width / 2; x++) {
  962. _get_pixelb(x, y, pixel_size, w.ptr(), up);
  963. _get_pixelb(width - x - 1, y, pixel_size, w.ptr(), down);
  964. _put_pixelb(width - x - 1, y, pixel_size, w.ptr(), up);
  965. _put_pixelb(x, y, pixel_size, w.ptr(), down);
  966. }
  967. }
  968. }
  969. if (used_mipmaps) {
  970. generate_mipmaps();
  971. }
  972. }
  973. int Image::_get_dst_image_size(int p_width, int p_height, Format p_format, int &r_mipmaps, int p_mipmaps) {
  974. int size = 0;
  975. int w = p_width;
  976. int h = p_height;
  977. int mm = 0;
  978. int pixsize = get_format_pixel_size(p_format);
  979. int pixshift = get_format_pixel_rshift(p_format);
  980. int block = get_format_block_size(p_format);
  981. //technically, you can still compress up to 1 px no matter the format, so commenting this
  982. //int minw, minh;
  983. //get_format_min_pixel_size(p_format, minw, minh);
  984. int minw = 1, minh = 1;
  985. while (true) {
  986. int bw = w % block != 0 ? w + (block - w % block) : w;
  987. int bh = h % block != 0 ? h + (block - h % block) : h;
  988. int s = bw * bh;
  989. s *= pixsize;
  990. s >>= pixshift;
  991. size += s;
  992. if (p_mipmaps >= 0 && mm == p_mipmaps)
  993. break;
  994. if (p_mipmaps >= 0) {
  995. w = MAX(minw, w >> 1);
  996. h = MAX(minh, h >> 1);
  997. } else {
  998. if (w == minw && h == minh)
  999. break;
  1000. w = MAX(minw, w >> 1);
  1001. h = MAX(minh, h >> 1);
  1002. }
  1003. mm++;
  1004. };
  1005. r_mipmaps = mm;
  1006. return size;
  1007. }
  1008. bool Image::_can_modify(Format p_format) const {
  1009. return p_format <= FORMAT_RGBE9995;
  1010. }
  1011. template <class Component, int CC, bool renormalize,
  1012. void (*average_func)(Component &, const Component &, const Component &, const Component &, const Component &),
  1013. void (*renormalize_func)(Component *)>
  1014. static void _generate_po2_mipmap(const Component *p_src, Component *p_dst, uint32_t p_width, uint32_t p_height) {
  1015. //fast power of 2 mipmap generation
  1016. uint32_t dst_w = MAX(p_width >> 1, 1);
  1017. uint32_t dst_h = MAX(p_height >> 1, 1);
  1018. int right_step = (p_width == 1) ? 0 : CC;
  1019. int down_step = (p_height == 1) ? 0 : (p_width * CC);
  1020. for (uint32_t i = 0; i < dst_h; i++) {
  1021. const Component *rup_ptr = &p_src[i * 2 * down_step];
  1022. const Component *rdown_ptr = rup_ptr + down_step;
  1023. Component *dst_ptr = &p_dst[i * dst_w * CC];
  1024. uint32_t count = dst_w;
  1025. while (count) {
  1026. count--;
  1027. for (int j = 0; j < CC; j++) {
  1028. average_func(dst_ptr[j], rup_ptr[j], rup_ptr[j + right_step], rdown_ptr[j], rdown_ptr[j + right_step]);
  1029. }
  1030. if (renormalize) {
  1031. renormalize_func(dst_ptr);
  1032. }
  1033. dst_ptr += CC;
  1034. rup_ptr += right_step * 2;
  1035. rdown_ptr += right_step * 2;
  1036. }
  1037. }
  1038. }
  1039. void Image::expand_x2_hq2x() {
  1040. ERR_FAIL_COND(!_can_modify(format));
  1041. ERR_FAIL_COND_MSG(write_lock.ptr(), "Cannot modify image when it is locked.");
  1042. bool used_mipmaps = has_mipmaps();
  1043. if (used_mipmaps) {
  1044. clear_mipmaps();
  1045. }
  1046. Format current = format;
  1047. if (current != FORMAT_RGBA8)
  1048. convert(FORMAT_RGBA8);
  1049. PoolVector<uint8_t> dest;
  1050. dest.resize(width * 2 * height * 2 * 4);
  1051. {
  1052. PoolVector<uint8_t>::Read r = data.read();
  1053. PoolVector<uint8_t>::Write w = dest.write();
  1054. ERR_FAIL_COND(!r.ptr());
  1055. hq2x_resize((const uint32_t *)r.ptr(), width, height, (uint32_t *)w.ptr());
  1056. }
  1057. width *= 2;
  1058. height *= 2;
  1059. data = dest;
  1060. if (current != FORMAT_RGBA8)
  1061. convert(current);
  1062. // FIXME: This is likely meant to use "used_mipmaps" as defined above, but if we do,
  1063. // we end up with a regression: GH-22747
  1064. if (mipmaps) {
  1065. generate_mipmaps();
  1066. }
  1067. }
  1068. void Image::shrink_x2() {
  1069. ERR_FAIL_COND(!_can_modify(format));
  1070. ERR_FAIL_COND_MSG(write_lock.ptr(), "Cannot modify image when it is locked.");
  1071. ERR_FAIL_COND(data.size() == 0);
  1072. if (mipmaps) {
  1073. //just use the lower mipmap as base and copy all
  1074. PoolVector<uint8_t> new_img;
  1075. int ofs = get_mipmap_offset(1);
  1076. int new_size = data.size() - ofs;
  1077. new_img.resize(new_size);
  1078. ERR_FAIL_COND(new_img.size() == 0);
  1079. {
  1080. PoolVector<uint8_t>::Write w = new_img.write();
  1081. PoolVector<uint8_t>::Read r = data.read();
  1082. copymem(w.ptr(), &r[ofs], new_size);
  1083. }
  1084. width = MAX(width / 2, 1);
  1085. height = MAX(height / 2, 1);
  1086. data = new_img;
  1087. } else {
  1088. PoolVector<uint8_t> new_img;
  1089. ERR_FAIL_COND(!_can_modify(format));
  1090. int ps = get_format_pixel_size(format);
  1091. new_img.resize((width / 2) * (height / 2) * ps);
  1092. ERR_FAIL_COND(new_img.size() == 0);
  1093. ERR_FAIL_COND(data.size() == 0);
  1094. {
  1095. PoolVector<uint8_t>::Write w = new_img.write();
  1096. PoolVector<uint8_t>::Read r = data.read();
  1097. switch (format) {
  1098. case FORMAT_L8:
  1099. case FORMAT_R8: _generate_po2_mipmap<uint8_t, 1, false, Image::average_4_uint8, Image::renormalize_uint8>(r.ptr(), w.ptr(), width, height); break;
  1100. case FORMAT_LA8: _generate_po2_mipmap<uint8_t, 2, false, Image::average_4_uint8, Image::renormalize_uint8>(r.ptr(), w.ptr(), width, height); break;
  1101. case FORMAT_RG8: _generate_po2_mipmap<uint8_t, 2, false, Image::average_4_uint8, Image::renormalize_uint8>(r.ptr(), w.ptr(), width, height); break;
  1102. case FORMAT_RGB8: _generate_po2_mipmap<uint8_t, 3, false, Image::average_4_uint8, Image::renormalize_uint8>(r.ptr(), w.ptr(), width, height); break;
  1103. case FORMAT_RGBA8: _generate_po2_mipmap<uint8_t, 4, false, Image::average_4_uint8, Image::renormalize_uint8>(r.ptr(), w.ptr(), width, height); break;
  1104. case FORMAT_RF: _generate_po2_mipmap<float, 1, false, Image::average_4_float, Image::renormalize_float>(reinterpret_cast<const float *>(r.ptr()), reinterpret_cast<float *>(w.ptr()), width, height); break;
  1105. case FORMAT_RGF: _generate_po2_mipmap<float, 2, false, Image::average_4_float, Image::renormalize_float>(reinterpret_cast<const float *>(r.ptr()), reinterpret_cast<float *>(w.ptr()), width, height); break;
  1106. case FORMAT_RGBF: _generate_po2_mipmap<float, 3, false, Image::average_4_float, Image::renormalize_float>(reinterpret_cast<const float *>(r.ptr()), reinterpret_cast<float *>(w.ptr()), width, height); break;
  1107. case FORMAT_RGBAF: _generate_po2_mipmap<float, 4, false, Image::average_4_float, Image::renormalize_float>(reinterpret_cast<const float *>(r.ptr()), reinterpret_cast<float *>(w.ptr()), width, height); break;
  1108. case FORMAT_RH: _generate_po2_mipmap<uint16_t, 1, false, Image::average_4_half, Image::renormalize_half>(reinterpret_cast<const uint16_t *>(r.ptr()), reinterpret_cast<uint16_t *>(w.ptr()), width, height); break;
  1109. case FORMAT_RGH: _generate_po2_mipmap<uint16_t, 2, false, Image::average_4_half, Image::renormalize_half>(reinterpret_cast<const uint16_t *>(r.ptr()), reinterpret_cast<uint16_t *>(w.ptr()), width, height); break;
  1110. case FORMAT_RGBH: _generate_po2_mipmap<uint16_t, 3, false, Image::average_4_half, Image::renormalize_half>(reinterpret_cast<const uint16_t *>(r.ptr()), reinterpret_cast<uint16_t *>(w.ptr()), width, height); break;
  1111. case FORMAT_RGBAH: _generate_po2_mipmap<uint16_t, 4, false, Image::average_4_half, Image::renormalize_half>(reinterpret_cast<const uint16_t *>(r.ptr()), reinterpret_cast<uint16_t *>(w.ptr()), width, height); break;
  1112. case FORMAT_RGBE9995: _generate_po2_mipmap<uint32_t, 1, false, Image::average_4_rgbe9995, Image::renormalize_rgbe9995>(reinterpret_cast<const uint32_t *>(r.ptr()), reinterpret_cast<uint32_t *>(w.ptr()), width, height); break;
  1113. default: {
  1114. }
  1115. }
  1116. }
  1117. width /= 2;
  1118. height /= 2;
  1119. data = new_img;
  1120. }
  1121. }
  1122. void Image::normalize() {
  1123. bool used_mipmaps = has_mipmaps();
  1124. if (used_mipmaps) {
  1125. clear_mipmaps();
  1126. }
  1127. lock();
  1128. for (int y = 0; y < height; y++) {
  1129. for (int x = 0; x < width; x++) {
  1130. Color c = get_pixel(x, y);
  1131. Vector3 v(c.r * 2.0 - 1.0, c.g * 2.0 - 1.0, c.b * 2.0 - 1.0);
  1132. v.normalize();
  1133. c.r = v.x * 0.5 + 0.5;
  1134. c.g = v.y * 0.5 + 0.5;
  1135. c.b = v.z * 0.5 + 0.5;
  1136. set_pixel(x, y, c);
  1137. }
  1138. }
  1139. unlock();
  1140. if (used_mipmaps) {
  1141. generate_mipmaps(true);
  1142. }
  1143. }
  1144. Error Image::generate_mipmaps(bool p_renormalize) {
  1145. ERR_FAIL_COND_V_MSG(!_can_modify(format), ERR_UNAVAILABLE, "Cannot generate mipmaps in compressed or custom image formats.");
  1146. ERR_FAIL_COND_V_MSG(write_lock.ptr(), ERR_UNAVAILABLE, "Cannot modify image when it is locked.");
  1147. ERR_FAIL_COND_V_MSG(format == FORMAT_RGBA4444 || format == FORMAT_RGBA5551, ERR_UNAVAILABLE, "Cannot generate mipmaps in custom image formats.");
  1148. ERR_FAIL_COND_V_MSG(width == 0 || height == 0, ERR_UNCONFIGURED, "Cannot generate mipmaps with width or height equal to 0.");
  1149. int mmcount;
  1150. int size = _get_dst_image_size(width, height, format, mmcount);
  1151. data.resize(size);
  1152. PoolVector<uint8_t>::Write wp = data.write();
  1153. int prev_ofs = 0;
  1154. int prev_h = height;
  1155. int prev_w = width;
  1156. for (int i = 1; i <= mmcount; i++) {
  1157. int ofs, w, h;
  1158. _get_mipmap_offset_and_size(i, ofs, w, h);
  1159. switch (format) {
  1160. case FORMAT_L8:
  1161. case FORMAT_R8: _generate_po2_mipmap<uint8_t, 1, false, Image::average_4_uint8, Image::renormalize_uint8>(&wp[prev_ofs], &wp[ofs], prev_w, prev_h); break;
  1162. case FORMAT_LA8:
  1163. case FORMAT_RG8: _generate_po2_mipmap<uint8_t, 2, false, Image::average_4_uint8, Image::renormalize_uint8>(&wp[prev_ofs], &wp[ofs], prev_w, prev_h); break;
  1164. case FORMAT_RGB8:
  1165. if (p_renormalize)
  1166. _generate_po2_mipmap<uint8_t, 3, true, Image::average_4_uint8, Image::renormalize_uint8>(&wp[prev_ofs], &wp[ofs], prev_w, prev_h);
  1167. else
  1168. _generate_po2_mipmap<uint8_t, 3, false, Image::average_4_uint8, Image::renormalize_uint8>(&wp[prev_ofs], &wp[ofs], prev_w, prev_h);
  1169. break;
  1170. case FORMAT_RGBA8:
  1171. if (p_renormalize)
  1172. _generate_po2_mipmap<uint8_t, 4, true, Image::average_4_uint8, Image::renormalize_uint8>(&wp[prev_ofs], &wp[ofs], prev_w, prev_h);
  1173. else
  1174. _generate_po2_mipmap<uint8_t, 4, false, Image::average_4_uint8, Image::renormalize_uint8>(&wp[prev_ofs], &wp[ofs], prev_w, prev_h);
  1175. break;
  1176. case FORMAT_RF:
  1177. _generate_po2_mipmap<float, 1, false, Image::average_4_float, Image::renormalize_float>(reinterpret_cast<const float *>(&wp[prev_ofs]), reinterpret_cast<float *>(&wp[ofs]), prev_w, prev_h);
  1178. break;
  1179. case FORMAT_RGF:
  1180. _generate_po2_mipmap<float, 2, false, Image::average_4_float, Image::renormalize_float>(reinterpret_cast<const float *>(&wp[prev_ofs]), reinterpret_cast<float *>(&wp[ofs]), prev_w, prev_h);
  1181. break;
  1182. case FORMAT_RGBF:
  1183. if (p_renormalize)
  1184. _generate_po2_mipmap<float, 3, true, Image::average_4_float, Image::renormalize_float>(reinterpret_cast<const float *>(&wp[prev_ofs]), reinterpret_cast<float *>(&wp[ofs]), prev_w, prev_h);
  1185. else
  1186. _generate_po2_mipmap<float, 3, false, Image::average_4_float, Image::renormalize_float>(reinterpret_cast<const float *>(&wp[prev_ofs]), reinterpret_cast<float *>(&wp[ofs]), prev_w, prev_h);
  1187. break;
  1188. case FORMAT_RGBAF:
  1189. if (p_renormalize)
  1190. _generate_po2_mipmap<float, 4, true, Image::average_4_float, Image::renormalize_float>(reinterpret_cast<const float *>(&wp[prev_ofs]), reinterpret_cast<float *>(&wp[ofs]), prev_w, prev_h);
  1191. else
  1192. _generate_po2_mipmap<float, 4, false, Image::average_4_float, Image::renormalize_float>(reinterpret_cast<const float *>(&wp[prev_ofs]), reinterpret_cast<float *>(&wp[ofs]), prev_w, prev_h);
  1193. break;
  1194. case FORMAT_RH:
  1195. _generate_po2_mipmap<uint16_t, 1, false, Image::average_4_half, Image::renormalize_half>(reinterpret_cast<const uint16_t *>(&wp[prev_ofs]), reinterpret_cast<uint16_t *>(&wp[ofs]), prev_w, prev_h);
  1196. break;
  1197. case FORMAT_RGH:
  1198. _generate_po2_mipmap<uint16_t, 2, false, Image::average_4_half, Image::renormalize_half>(reinterpret_cast<const uint16_t *>(&wp[prev_ofs]), reinterpret_cast<uint16_t *>(&wp[ofs]), prev_w, prev_h);
  1199. break;
  1200. case FORMAT_RGBH:
  1201. if (p_renormalize)
  1202. _generate_po2_mipmap<uint16_t, 3, true, Image::average_4_half, Image::renormalize_half>(reinterpret_cast<const uint16_t *>(&wp[prev_ofs]), reinterpret_cast<uint16_t *>(&wp[ofs]), prev_w, prev_h);
  1203. else
  1204. _generate_po2_mipmap<uint16_t, 3, false, Image::average_4_half, Image::renormalize_half>(reinterpret_cast<const uint16_t *>(&wp[prev_ofs]), reinterpret_cast<uint16_t *>(&wp[ofs]), prev_w, prev_h);
  1205. break;
  1206. case FORMAT_RGBAH:
  1207. if (p_renormalize)
  1208. _generate_po2_mipmap<uint16_t, 4, true, Image::average_4_half, Image::renormalize_half>(reinterpret_cast<const uint16_t *>(&wp[prev_ofs]), reinterpret_cast<uint16_t *>(&wp[ofs]), prev_w, prev_h);
  1209. else
  1210. _generate_po2_mipmap<uint16_t, 4, false, Image::average_4_half, Image::renormalize_half>(reinterpret_cast<const uint16_t *>(&wp[prev_ofs]), reinterpret_cast<uint16_t *>(&wp[ofs]), prev_w, prev_h);
  1211. break;
  1212. case FORMAT_RGBE9995:
  1213. if (p_renormalize)
  1214. _generate_po2_mipmap<uint32_t, 1, true, Image::average_4_rgbe9995, Image::renormalize_rgbe9995>(reinterpret_cast<const uint32_t *>(&wp[prev_ofs]), reinterpret_cast<uint32_t *>(&wp[ofs]), prev_w, prev_h);
  1215. else
  1216. _generate_po2_mipmap<uint32_t, 1, false, Image::average_4_rgbe9995, Image::renormalize_rgbe9995>(reinterpret_cast<const uint32_t *>(&wp[prev_ofs]), reinterpret_cast<uint32_t *>(&wp[ofs]), prev_w, prev_h);
  1217. break;
  1218. default: {
  1219. }
  1220. }
  1221. prev_ofs = ofs;
  1222. prev_w = w;
  1223. prev_h = h;
  1224. }
  1225. mipmaps = true;
  1226. return OK;
  1227. }
  1228. void Image::clear_mipmaps() {
  1229. if (!mipmaps)
  1230. return;
  1231. if (empty())
  1232. return;
  1233. int ofs, w, h;
  1234. _get_mipmap_offset_and_size(1, ofs, w, h);
  1235. data.resize(ofs);
  1236. mipmaps = false;
  1237. }
  1238. bool Image::empty() const {
  1239. return (data.size() == 0);
  1240. }
  1241. PoolVector<uint8_t> Image::get_data() const {
  1242. return data;
  1243. }
  1244. void Image::create(int p_width, int p_height, bool p_use_mipmaps, Format p_format) {
  1245. ERR_FAIL_COND_MSG(p_width <= 0, "Image width must be greater than 0.");
  1246. ERR_FAIL_COND_MSG(p_height <= 0, "Image height must be greater than 0.");
  1247. ERR_FAIL_COND_MSG(p_width > MAX_WIDTH, "Image width cannot be greater than " + itos(MAX_WIDTH) + ".");
  1248. ERR_FAIL_COND_MSG(p_height > MAX_HEIGHT, "Image height cannot be greater than " + itos(MAX_HEIGHT) + ".");
  1249. ERR_FAIL_COND_MSG(write_lock.ptr(), "Cannot create image when it is locked.");
  1250. ERR_FAIL_INDEX_MSG(p_format, FORMAT_MAX, "Image format out of range, please see Image's Format enum.");
  1251. int mm = 0;
  1252. int size = _get_dst_image_size(p_width, p_height, p_format, mm, p_use_mipmaps ? -1 : 0);
  1253. data.resize(size);
  1254. {
  1255. PoolVector<uint8_t>::Write w = data.write();
  1256. zeromem(w.ptr(), size);
  1257. }
  1258. width = p_width;
  1259. height = p_height;
  1260. mipmaps = p_use_mipmaps;
  1261. format = p_format;
  1262. }
  1263. void Image::create(int p_width, int p_height, bool p_use_mipmaps, Format p_format, const PoolVector<uint8_t> &p_data) {
  1264. ERR_FAIL_COND_MSG(p_width <= 0, "Image width must be greater than 0.");
  1265. ERR_FAIL_COND_MSG(p_height <= 0, "Image height must be greater than 0.");
  1266. ERR_FAIL_COND_MSG(p_width > MAX_WIDTH, "Image width cannot be greater than " + itos(MAX_WIDTH) + ".");
  1267. ERR_FAIL_COND_MSG(p_height > MAX_HEIGHT, "Image height cannot be greater than " + itos(MAX_HEIGHT) + ".");
  1268. ERR_FAIL_INDEX_MSG(p_format, FORMAT_MAX, "Image format out of range, please see Image's Format enum.");
  1269. int mm;
  1270. int size = _get_dst_image_size(p_width, p_height, p_format, mm, p_use_mipmaps ? -1 : 0);
  1271. ERR_FAIL_COND_MSG(p_data.size() != size, "Expected data size of " + itos(size) + " bytes in Image::create(), got instead " + itos(p_data.size()) + " bytes.");
  1272. height = p_height;
  1273. width = p_width;
  1274. format = p_format;
  1275. data = p_data;
  1276. mipmaps = p_use_mipmaps;
  1277. }
  1278. void Image::create(const char **p_xpm) {
  1279. int size_width = 0;
  1280. int size_height = 0;
  1281. int pixelchars = 0;
  1282. mipmaps = false;
  1283. bool has_alpha = false;
  1284. enum Status {
  1285. READING_HEADER,
  1286. READING_COLORS,
  1287. READING_PIXELS,
  1288. DONE
  1289. };
  1290. Status status = READING_HEADER;
  1291. int line = 0;
  1292. HashMap<String, Color> colormap;
  1293. int colormap_size = 0;
  1294. uint32_t pixel_size = 0;
  1295. PoolVector<uint8_t>::Write w;
  1296. while (status != DONE) {
  1297. const char *line_ptr = p_xpm[line];
  1298. switch (status) {
  1299. case READING_HEADER: {
  1300. String line_str = line_ptr;
  1301. line_str.replace("\t", " ");
  1302. size_width = line_str.get_slicec(' ', 0).to_int();
  1303. size_height = line_str.get_slicec(' ', 1).to_int();
  1304. colormap_size = line_str.get_slicec(' ', 2).to_int();
  1305. pixelchars = line_str.get_slicec(' ', 3).to_int();
  1306. ERR_FAIL_COND(colormap_size > 32766);
  1307. ERR_FAIL_COND(pixelchars > 5);
  1308. ERR_FAIL_COND(size_width > 32767);
  1309. ERR_FAIL_COND(size_height > 32767);
  1310. status = READING_COLORS;
  1311. } break;
  1312. case READING_COLORS: {
  1313. String colorstring;
  1314. for (int i = 0; i < pixelchars; i++) {
  1315. colorstring += *line_ptr;
  1316. line_ptr++;
  1317. }
  1318. //skip spaces
  1319. while (*line_ptr == ' ' || *line_ptr == '\t' || *line_ptr == 0) {
  1320. if (*line_ptr == 0)
  1321. break;
  1322. line_ptr++;
  1323. }
  1324. if (*line_ptr == 'c') {
  1325. line_ptr++;
  1326. while (*line_ptr == ' ' || *line_ptr == '\t' || *line_ptr == 0) {
  1327. if (*line_ptr == 0)
  1328. break;
  1329. line_ptr++;
  1330. }
  1331. if (*line_ptr == '#') {
  1332. line_ptr++;
  1333. uint8_t col_r = 0;
  1334. uint8_t col_g = 0;
  1335. uint8_t col_b = 0;
  1336. //uint8_t col_a=255;
  1337. for (int i = 0; i < 6; i++) {
  1338. char v = line_ptr[i];
  1339. if (v >= '0' && v <= '9')
  1340. v -= '0';
  1341. else if (v >= 'A' && v <= 'F')
  1342. v = (v - 'A') + 10;
  1343. else if (v >= 'a' && v <= 'f')
  1344. v = (v - 'a') + 10;
  1345. else
  1346. break;
  1347. switch (i) {
  1348. case 0: col_r = v << 4; break;
  1349. case 1: col_r |= v; break;
  1350. case 2: col_g = v << 4; break;
  1351. case 3: col_g |= v; break;
  1352. case 4: col_b = v << 4; break;
  1353. case 5: col_b |= v; break;
  1354. };
  1355. }
  1356. // magenta mask
  1357. if (col_r == 255 && col_g == 0 && col_b == 255) {
  1358. colormap[colorstring] = Color(0, 0, 0, 0);
  1359. has_alpha = true;
  1360. } else {
  1361. colormap[colorstring] = Color(col_r / 255.0, col_g / 255.0, col_b / 255.0, 1.0);
  1362. }
  1363. }
  1364. }
  1365. if (line == colormap_size) {
  1366. status = READING_PIXELS;
  1367. create(size_width, size_height, 0, has_alpha ? FORMAT_RGBA8 : FORMAT_RGB8);
  1368. w = data.write();
  1369. pixel_size = has_alpha ? 4 : 3;
  1370. }
  1371. } break;
  1372. case READING_PIXELS: {
  1373. int y = line - colormap_size - 1;
  1374. for (int x = 0; x < size_width; x++) {
  1375. char pixelstr[6] = { 0, 0, 0, 0, 0, 0 };
  1376. for (int i = 0; i < pixelchars; i++)
  1377. pixelstr[i] = line_ptr[x * pixelchars + i];
  1378. Color *colorptr = colormap.getptr(pixelstr);
  1379. ERR_FAIL_COND(!colorptr);
  1380. uint8_t pixel[4];
  1381. for (uint32_t i = 0; i < pixel_size; i++) {
  1382. pixel[i] = CLAMP((*colorptr)[i] * 255, 0, 255);
  1383. }
  1384. _put_pixelb(x, y, pixel_size, w.ptr(), pixel);
  1385. }
  1386. if (y == (size_height - 1))
  1387. status = DONE;
  1388. } break;
  1389. default: {
  1390. }
  1391. }
  1392. line++;
  1393. }
  1394. }
  1395. #define DETECT_ALPHA_MAX_THRESHOLD 254
  1396. #define DETECT_ALPHA_MIN_THRESHOLD 2
  1397. #define DETECT_ALPHA(m_value) \
  1398. { \
  1399. uint8_t value = m_value; \
  1400. if (value < DETECT_ALPHA_MIN_THRESHOLD) \
  1401. bit = true; \
  1402. else if (value < DETECT_ALPHA_MAX_THRESHOLD) { \
  1403. \
  1404. detected = true; \
  1405. break; \
  1406. } \
  1407. }
  1408. #define DETECT_NON_ALPHA(m_value) \
  1409. { \
  1410. uint8_t value = m_value; \
  1411. if (value > 0) { \
  1412. \
  1413. detected = true; \
  1414. break; \
  1415. } \
  1416. }
  1417. bool Image::is_invisible() const {
  1418. if (format == FORMAT_L8 ||
  1419. format == FORMAT_RGB8 || format == FORMAT_RG8)
  1420. return false;
  1421. int len = data.size();
  1422. if (len == 0)
  1423. return true;
  1424. int w, h;
  1425. _get_mipmap_offset_and_size(1, len, w, h);
  1426. PoolVector<uint8_t>::Read r = data.read();
  1427. const unsigned char *data_ptr = r.ptr();
  1428. bool detected = false;
  1429. switch (format) {
  1430. case FORMAT_LA8: {
  1431. for (int i = 0; i < (len >> 1); i++) {
  1432. DETECT_NON_ALPHA(data_ptr[(i << 1) + 1]);
  1433. }
  1434. } break;
  1435. case FORMAT_RGBA8: {
  1436. for (int i = 0; i < (len >> 2); i++) {
  1437. DETECT_NON_ALPHA(data_ptr[(i << 2) + 3])
  1438. }
  1439. } break;
  1440. case FORMAT_PVRTC2A:
  1441. case FORMAT_PVRTC4A:
  1442. case FORMAT_DXT3:
  1443. case FORMAT_DXT5: {
  1444. detected = true;
  1445. } break;
  1446. default: {
  1447. }
  1448. }
  1449. return !detected;
  1450. }
  1451. Image::AlphaMode Image::detect_alpha() const {
  1452. int len = data.size();
  1453. if (len == 0)
  1454. return ALPHA_NONE;
  1455. int w, h;
  1456. _get_mipmap_offset_and_size(1, len, w, h);
  1457. PoolVector<uint8_t>::Read r = data.read();
  1458. const unsigned char *data_ptr = r.ptr();
  1459. bool bit = false;
  1460. bool detected = false;
  1461. switch (format) {
  1462. case FORMAT_LA8: {
  1463. for (int i = 0; i < (len >> 1); i++) {
  1464. DETECT_ALPHA(data_ptr[(i << 1) + 1]);
  1465. }
  1466. } break;
  1467. case FORMAT_RGBA8: {
  1468. for (int i = 0; i < (len >> 2); i++) {
  1469. DETECT_ALPHA(data_ptr[(i << 2) + 3])
  1470. }
  1471. } break;
  1472. case FORMAT_PVRTC2A:
  1473. case FORMAT_PVRTC4A:
  1474. case FORMAT_DXT3:
  1475. case FORMAT_DXT5: {
  1476. detected = true;
  1477. } break;
  1478. default: {
  1479. }
  1480. }
  1481. if (detected)
  1482. return ALPHA_BLEND;
  1483. else if (bit)
  1484. return ALPHA_BIT;
  1485. else
  1486. return ALPHA_NONE;
  1487. }
  1488. Error Image::load(const String &p_path) {
  1489. #ifdef DEBUG_ENABLED
  1490. if (p_path.begins_with("res://") && ResourceLoader::exists(p_path)) {
  1491. WARN_PRINTS("Loaded resource as image file, this will not work on export: '" + p_path + "'. Instead, import the image file as an Image resource and load it normally as a resource.");
  1492. }
  1493. #endif
  1494. return ImageLoader::load_image(p_path, this);
  1495. }
  1496. Error Image::save_png(const String &p_path) const {
  1497. if (save_png_func == NULL)
  1498. return ERR_UNAVAILABLE;
  1499. return save_png_func(p_path, Ref<Image>((Image *)this));
  1500. }
  1501. PoolVector<uint8_t> Image::save_png_to_buffer() const {
  1502. if (save_png_buffer_func == NULL) {
  1503. return PoolVector<uint8_t>();
  1504. }
  1505. return save_png_buffer_func(Ref<Image>((Image *)this));
  1506. }
  1507. Error Image::save_exr(const String &p_path, bool p_grayscale) const {
  1508. if (save_exr_func == NULL)
  1509. return ERR_UNAVAILABLE;
  1510. return save_exr_func(p_path, Ref<Image>((Image *)this), p_grayscale);
  1511. }
  1512. int Image::get_image_data_size(int p_width, int p_height, Format p_format, bool p_mipmaps) {
  1513. int mm;
  1514. return _get_dst_image_size(p_width, p_height, p_format, mm, p_mipmaps ? -1 : 0);
  1515. }
  1516. int Image::get_image_required_mipmaps(int p_width, int p_height, Format p_format) {
  1517. int mm;
  1518. _get_dst_image_size(p_width, p_height, p_format, mm, -1);
  1519. return mm;
  1520. }
  1521. int Image::get_image_mipmap_offset(int p_width, int p_height, Format p_format, int p_mipmap) {
  1522. if (p_mipmap <= 0) {
  1523. return 0;
  1524. }
  1525. int mm;
  1526. return _get_dst_image_size(p_width, p_height, p_format, mm, p_mipmap - 1);
  1527. }
  1528. bool Image::is_compressed() const {
  1529. return format > FORMAT_RGBE9995;
  1530. }
  1531. Error Image::decompress() {
  1532. if (format >= FORMAT_DXT1 && format <= FORMAT_RGTC_RG && _image_decompress_bc)
  1533. _image_decompress_bc(this);
  1534. else if (format >= FORMAT_BPTC_RGBA && format <= FORMAT_BPTC_RGBFU && _image_decompress_bptc)
  1535. _image_decompress_bptc(this);
  1536. else if (format >= FORMAT_PVRTC2 && format <= FORMAT_PVRTC4A && _image_decompress_pvrtc)
  1537. _image_decompress_pvrtc(this);
  1538. else if (format == FORMAT_ETC && _image_decompress_etc1)
  1539. _image_decompress_etc1(this);
  1540. else if (format >= FORMAT_ETC2_R11 && format <= FORMAT_ETC2_RGB8A1 && _image_decompress_etc2)
  1541. _image_decompress_etc2(this);
  1542. else
  1543. return ERR_UNAVAILABLE;
  1544. return OK;
  1545. }
  1546. Error Image::compress(CompressMode p_mode, CompressSource p_source, float p_lossy_quality) {
  1547. switch (p_mode) {
  1548. case COMPRESS_S3TC: {
  1549. ERR_FAIL_COND_V(!_image_compress_bc_func, ERR_UNAVAILABLE);
  1550. _image_compress_bc_func(this, p_lossy_quality, p_source);
  1551. } break;
  1552. case COMPRESS_PVRTC2: {
  1553. ERR_FAIL_COND_V(!_image_compress_pvrtc2_func, ERR_UNAVAILABLE);
  1554. _image_compress_pvrtc2_func(this);
  1555. } break;
  1556. case COMPRESS_PVRTC4: {
  1557. ERR_FAIL_COND_V(!_image_compress_pvrtc4_func, ERR_UNAVAILABLE);
  1558. _image_compress_pvrtc4_func(this);
  1559. } break;
  1560. case COMPRESS_ETC: {
  1561. ERR_FAIL_COND_V(!_image_compress_etc1_func, ERR_UNAVAILABLE);
  1562. _image_compress_etc1_func(this, p_lossy_quality);
  1563. } break;
  1564. case COMPRESS_ETC2: {
  1565. ERR_FAIL_COND_V(!_image_compress_etc2_func, ERR_UNAVAILABLE);
  1566. _image_compress_etc2_func(this, p_lossy_quality, p_source);
  1567. } break;
  1568. case COMPRESS_BPTC: {
  1569. ERR_FAIL_COND_V(!_image_compress_bptc_func, ERR_UNAVAILABLE);
  1570. _image_compress_bptc_func(this, p_lossy_quality, p_source);
  1571. } break;
  1572. }
  1573. return OK;
  1574. }
  1575. Image::Image(const char **p_xpm) {
  1576. width = 0;
  1577. height = 0;
  1578. mipmaps = false;
  1579. format = FORMAT_L8;
  1580. create(p_xpm);
  1581. }
  1582. Image::Image(int p_width, int p_height, bool p_use_mipmaps, Format p_format) {
  1583. width = 0;
  1584. height = 0;
  1585. mipmaps = p_use_mipmaps;
  1586. format = FORMAT_L8;
  1587. create(p_width, p_height, p_use_mipmaps, p_format);
  1588. }
  1589. Image::Image(int p_width, int p_height, bool p_mipmaps, Format p_format, const PoolVector<uint8_t> &p_data) {
  1590. width = 0;
  1591. height = 0;
  1592. mipmaps = p_mipmaps;
  1593. format = FORMAT_L8;
  1594. create(p_width, p_height, p_mipmaps, p_format, p_data);
  1595. }
  1596. Rect2 Image::get_used_rect() const {
  1597. if (format != FORMAT_LA8 && format != FORMAT_RGBA8 && format != FORMAT_RGBAF && format != FORMAT_RGBAH && format != FORMAT_RGBA4444 && format != FORMAT_RGBA5551)
  1598. return Rect2(Point2(), Size2(width, height));
  1599. int len = data.size();
  1600. if (len == 0)
  1601. return Rect2();
  1602. const_cast<Image *>(this)->lock();
  1603. int minx = 0xFFFFFF, miny = 0xFFFFFFF;
  1604. int maxx = -1, maxy = -1;
  1605. for (int j = 0; j < height; j++) {
  1606. for (int i = 0; i < width; i++) {
  1607. if (!(get_pixel(i, j).a > 0))
  1608. continue;
  1609. if (i > maxx)
  1610. maxx = i;
  1611. if (j > maxy)
  1612. maxy = j;
  1613. if (i < minx)
  1614. minx = i;
  1615. if (j < miny)
  1616. miny = j;
  1617. }
  1618. }
  1619. const_cast<Image *>(this)->unlock();
  1620. if (maxx == -1)
  1621. return Rect2();
  1622. else
  1623. return Rect2(minx, miny, maxx - minx + 1, maxy - miny + 1);
  1624. }
  1625. Ref<Image> Image::get_rect(const Rect2 &p_area) const {
  1626. Ref<Image> img = memnew(Image(p_area.size.x, p_area.size.y, mipmaps, format));
  1627. img->blit_rect(Ref<Image>((Image *)this), p_area, Point2(0, 0));
  1628. return img;
  1629. }
  1630. void Image::blit_rect(const Ref<Image> &p_src, const Rect2 &p_src_rect, const Point2 &p_dest) {
  1631. ERR_FAIL_COND_MSG(p_src.is_null(), "It's not a reference to a valid Image object.");
  1632. int dsize = data.size();
  1633. int srcdsize = p_src->data.size();
  1634. ERR_FAIL_COND(dsize == 0);
  1635. ERR_FAIL_COND(srcdsize == 0);
  1636. ERR_FAIL_COND(format != p_src->format);
  1637. ERR_FAIL_COND_MSG(!_can_modify(format), "Cannot blit_rect in compressed or custom image formats.");
  1638. Rect2i clipped_src_rect = Rect2i(0, 0, p_src->width, p_src->height).clip(p_src_rect);
  1639. if (p_dest.x < 0)
  1640. clipped_src_rect.position.x = ABS(p_dest.x);
  1641. if (p_dest.y < 0)
  1642. clipped_src_rect.position.y = ABS(p_dest.y);
  1643. if (clipped_src_rect.size.x <= 0 || clipped_src_rect.size.y <= 0)
  1644. return;
  1645. Point2 src_underscan = Point2(MIN(0, p_src_rect.position.x), MIN(0, p_src_rect.position.y));
  1646. Rect2i dest_rect = Rect2i(0, 0, width, height).clip(Rect2i(p_dest - src_underscan, clipped_src_rect.size));
  1647. PoolVector<uint8_t>::Write wp = data.write();
  1648. uint8_t *dst_data_ptr = wp.ptr();
  1649. PoolVector<uint8_t>::Read rp = p_src->data.read();
  1650. const uint8_t *src_data_ptr = rp.ptr();
  1651. int pixel_size = get_format_pixel_size(format);
  1652. for (int i = 0; i < dest_rect.size.y; i++) {
  1653. for (int j = 0; j < dest_rect.size.x; j++) {
  1654. int src_x = clipped_src_rect.position.x + j;
  1655. int src_y = clipped_src_rect.position.y + i;
  1656. int dst_x = dest_rect.position.x + j;
  1657. int dst_y = dest_rect.position.y + i;
  1658. const uint8_t *src = &src_data_ptr[(src_y * p_src->width + src_x) * pixel_size];
  1659. uint8_t *dst = &dst_data_ptr[(dst_y * width + dst_x) * pixel_size];
  1660. for (int k = 0; k < pixel_size; k++) {
  1661. dst[k] = src[k];
  1662. }
  1663. }
  1664. }
  1665. }
  1666. void Image::blit_rect_mask(const Ref<Image> &p_src, const Ref<Image> &p_mask, const Rect2 &p_src_rect, const Point2 &p_dest) {
  1667. ERR_FAIL_COND_MSG(p_src.is_null(), "It's not a reference to a valid Image object.");
  1668. ERR_FAIL_COND_MSG(p_mask.is_null(), "It's not a reference to a valid Image object.");
  1669. int dsize = data.size();
  1670. int srcdsize = p_src->data.size();
  1671. int maskdsize = p_mask->data.size();
  1672. ERR_FAIL_COND(dsize == 0);
  1673. ERR_FAIL_COND(srcdsize == 0);
  1674. ERR_FAIL_COND(maskdsize == 0);
  1675. ERR_FAIL_COND_MSG(p_src->width != p_mask->width, "Source image width is different from mask width.");
  1676. ERR_FAIL_COND_MSG(p_src->height != p_mask->height, "Source image height is different from mask height.");
  1677. ERR_FAIL_COND(format != p_src->format);
  1678. Rect2i clipped_src_rect = Rect2i(0, 0, p_src->width, p_src->height).clip(p_src_rect);
  1679. if (p_dest.x < 0)
  1680. clipped_src_rect.position.x = ABS(p_dest.x);
  1681. if (p_dest.y < 0)
  1682. clipped_src_rect.position.y = ABS(p_dest.y);
  1683. if (clipped_src_rect.size.x <= 0 || clipped_src_rect.size.y <= 0)
  1684. return;
  1685. Point2 src_underscan = Point2(MIN(0, p_src_rect.position.x), MIN(0, p_src_rect.position.y));
  1686. Rect2i dest_rect = Rect2i(0, 0, width, height).clip(Rect2i(p_dest - src_underscan, clipped_src_rect.size));
  1687. PoolVector<uint8_t>::Write wp = data.write();
  1688. uint8_t *dst_data_ptr = wp.ptr();
  1689. PoolVector<uint8_t>::Read rp = p_src->data.read();
  1690. const uint8_t *src_data_ptr = rp.ptr();
  1691. int pixel_size = get_format_pixel_size(format);
  1692. Ref<Image> msk = p_mask;
  1693. msk->lock();
  1694. for (int i = 0; i < dest_rect.size.y; i++) {
  1695. for (int j = 0; j < dest_rect.size.x; j++) {
  1696. int src_x = clipped_src_rect.position.x + j;
  1697. int src_y = clipped_src_rect.position.y + i;
  1698. if (msk->get_pixel(src_x, src_y).a != 0) {
  1699. int dst_x = dest_rect.position.x + j;
  1700. int dst_y = dest_rect.position.y + i;
  1701. const uint8_t *src = &src_data_ptr[(src_y * p_src->width + src_x) * pixel_size];
  1702. uint8_t *dst = &dst_data_ptr[(dst_y * width + dst_x) * pixel_size];
  1703. for (int k = 0; k < pixel_size; k++) {
  1704. dst[k] = src[k];
  1705. }
  1706. }
  1707. }
  1708. }
  1709. msk->unlock();
  1710. }
  1711. void Image::blend_rect(const Ref<Image> &p_src, const Rect2 &p_src_rect, const Point2 &p_dest) {
  1712. ERR_FAIL_COND_MSG(p_src.is_null(), "It's not a reference to a valid Image object.");
  1713. int dsize = data.size();
  1714. int srcdsize = p_src->data.size();
  1715. ERR_FAIL_COND(dsize == 0);
  1716. ERR_FAIL_COND(srcdsize == 0);
  1717. ERR_FAIL_COND(format != p_src->format);
  1718. Rect2i clipped_src_rect = Rect2i(0, 0, p_src->width, p_src->height).clip(p_src_rect);
  1719. if (p_dest.x < 0)
  1720. clipped_src_rect.position.x = ABS(p_dest.x);
  1721. if (p_dest.y < 0)
  1722. clipped_src_rect.position.y = ABS(p_dest.y);
  1723. if (clipped_src_rect.size.x <= 0 || clipped_src_rect.size.y <= 0)
  1724. return;
  1725. Point2 src_underscan = Point2(MIN(0, p_src_rect.position.x), MIN(0, p_src_rect.position.y));
  1726. Rect2i dest_rect = Rect2i(0, 0, width, height).clip(Rect2i(p_dest - src_underscan, clipped_src_rect.size));
  1727. lock();
  1728. Ref<Image> img = p_src;
  1729. img->lock();
  1730. for (int i = 0; i < dest_rect.size.y; i++) {
  1731. for (int j = 0; j < dest_rect.size.x; j++) {
  1732. int src_x = clipped_src_rect.position.x + j;
  1733. int src_y = clipped_src_rect.position.y + i;
  1734. int dst_x = dest_rect.position.x + j;
  1735. int dst_y = dest_rect.position.y + i;
  1736. Color sc = img->get_pixel(src_x, src_y);
  1737. if (sc.a != 0) {
  1738. Color dc = get_pixel(dst_x, dst_y);
  1739. dc = dc.blend(sc);
  1740. set_pixel(dst_x, dst_y, dc);
  1741. }
  1742. }
  1743. }
  1744. img->unlock();
  1745. unlock();
  1746. }
  1747. void Image::blend_rect_mask(const Ref<Image> &p_src, const Ref<Image> &p_mask, const Rect2 &p_src_rect, const Point2 &p_dest) {
  1748. ERR_FAIL_COND_MSG(p_src.is_null(), "It's not a reference to a valid Image object.");
  1749. ERR_FAIL_COND_MSG(p_mask.is_null(), "It's not a reference to a valid Image object.");
  1750. int dsize = data.size();
  1751. int srcdsize = p_src->data.size();
  1752. int maskdsize = p_mask->data.size();
  1753. ERR_FAIL_COND(dsize == 0);
  1754. ERR_FAIL_COND(srcdsize == 0);
  1755. ERR_FAIL_COND(maskdsize == 0);
  1756. ERR_FAIL_COND_MSG(p_src->width != p_mask->width, "Source image width is different from mask width.");
  1757. ERR_FAIL_COND_MSG(p_src->height != p_mask->height, "Source image height is different from mask height.");
  1758. ERR_FAIL_COND(format != p_src->format);
  1759. Rect2i clipped_src_rect = Rect2i(0, 0, p_src->width, p_src->height).clip(p_src_rect);
  1760. if (p_dest.x < 0)
  1761. clipped_src_rect.position.x = ABS(p_dest.x);
  1762. if (p_dest.y < 0)
  1763. clipped_src_rect.position.y = ABS(p_dest.y);
  1764. if (clipped_src_rect.size.x <= 0 || clipped_src_rect.size.y <= 0)
  1765. return;
  1766. Point2 src_underscan = Point2(MIN(0, p_src_rect.position.x), MIN(0, p_src_rect.position.y));
  1767. Rect2i dest_rect = Rect2i(0, 0, width, height).clip(Rect2i(p_dest - src_underscan, clipped_src_rect.size));
  1768. lock();
  1769. Ref<Image> img = p_src;
  1770. Ref<Image> msk = p_mask;
  1771. img->lock();
  1772. msk->lock();
  1773. for (int i = 0; i < dest_rect.size.y; i++) {
  1774. for (int j = 0; j < dest_rect.size.x; j++) {
  1775. int src_x = clipped_src_rect.position.x + j;
  1776. int src_y = clipped_src_rect.position.y + i;
  1777. // If the mask's pixel is transparent then we skip it
  1778. //Color c = msk->get_pixel(src_x, src_y);
  1779. //if (c.a == 0) continue;
  1780. if (msk->get_pixel(src_x, src_y).a != 0) {
  1781. int dst_x = dest_rect.position.x + j;
  1782. int dst_y = dest_rect.position.y + i;
  1783. Color sc = img->get_pixel(src_x, src_y);
  1784. if (sc.a != 0) {
  1785. Color dc = get_pixel(dst_x, dst_y);
  1786. dc = dc.blend(sc);
  1787. set_pixel(dst_x, dst_y, dc);
  1788. }
  1789. }
  1790. }
  1791. }
  1792. msk->unlock();
  1793. img->unlock();
  1794. unlock();
  1795. }
  1796. void Image::fill(const Color &c) {
  1797. ERR_FAIL_COND_MSG(!_can_modify(format), "Cannot fill in compressed or custom image formats.");
  1798. lock();
  1799. PoolVector<uint8_t>::Write wp = data.write();
  1800. uint8_t *dst_data_ptr = wp.ptr();
  1801. int pixel_size = get_format_pixel_size(format);
  1802. // put first pixel with the format-aware API
  1803. set_pixel(0, 0, c);
  1804. for (int y = 0; y < height; y++) {
  1805. for (int x = 0; x < width; x++) {
  1806. uint8_t *dst = &dst_data_ptr[(y * width + x) * pixel_size];
  1807. for (int k = 0; k < pixel_size; k++) {
  1808. dst[k] = dst_data_ptr[k];
  1809. }
  1810. }
  1811. }
  1812. unlock();
  1813. }
  1814. ImageMemLoadFunc Image::_png_mem_loader_func = NULL;
  1815. ImageMemLoadFunc Image::_jpg_mem_loader_func = NULL;
  1816. ImageMemLoadFunc Image::_webp_mem_loader_func = NULL;
  1817. ImageMemLoadFunc Image::_tga_mem_loader_func = NULL;
  1818. ImageMemLoadFunc Image::_bmp_mem_loader_func = NULL;
  1819. void (*Image::_image_compress_bc_func)(Image *, float, Image::CompressSource) = NULL;
  1820. void (*Image::_image_compress_bptc_func)(Image *, float, Image::CompressSource) = NULL;
  1821. void (*Image::_image_compress_pvrtc2_func)(Image *) = NULL;
  1822. void (*Image::_image_compress_pvrtc4_func)(Image *) = NULL;
  1823. void (*Image::_image_compress_etc1_func)(Image *, float) = NULL;
  1824. void (*Image::_image_compress_etc2_func)(Image *, float, Image::CompressSource) = NULL;
  1825. void (*Image::_image_decompress_pvrtc)(Image *) = NULL;
  1826. void (*Image::_image_decompress_bc)(Image *) = NULL;
  1827. void (*Image::_image_decompress_bptc)(Image *) = NULL;
  1828. void (*Image::_image_decompress_etc1)(Image *) = NULL;
  1829. void (*Image::_image_decompress_etc2)(Image *) = NULL;
  1830. PoolVector<uint8_t> (*Image::lossy_packer)(const Ref<Image> &, float) = NULL;
  1831. Ref<Image> (*Image::lossy_unpacker)(const PoolVector<uint8_t> &) = NULL;
  1832. PoolVector<uint8_t> (*Image::lossless_packer)(const Ref<Image> &) = NULL;
  1833. Ref<Image> (*Image::lossless_unpacker)(const PoolVector<uint8_t> &) = NULL;
  1834. void Image::_set_data(const Dictionary &p_data) {
  1835. ERR_FAIL_COND(!p_data.has("width"));
  1836. ERR_FAIL_COND(!p_data.has("height"));
  1837. ERR_FAIL_COND(!p_data.has("format"));
  1838. ERR_FAIL_COND(!p_data.has("mipmaps"));
  1839. ERR_FAIL_COND(!p_data.has("data"));
  1840. int dwidth = p_data["width"];
  1841. int dheight = p_data["height"];
  1842. String dformat = p_data["format"];
  1843. bool dmipmaps = p_data["mipmaps"];
  1844. PoolVector<uint8_t> ddata = p_data["data"];
  1845. Format ddformat = FORMAT_MAX;
  1846. for (int i = 0; i < FORMAT_MAX; i++) {
  1847. if (dformat == get_format_name(Format(i))) {
  1848. ddformat = Format(i);
  1849. break;
  1850. }
  1851. }
  1852. ERR_FAIL_COND(ddformat == FORMAT_MAX);
  1853. create(dwidth, dheight, dmipmaps, ddformat, ddata);
  1854. }
  1855. Dictionary Image::_get_data() const {
  1856. Dictionary d;
  1857. d["width"] = width;
  1858. d["height"] = height;
  1859. d["format"] = get_format_name(format);
  1860. d["mipmaps"] = mipmaps;
  1861. d["data"] = data;
  1862. return d;
  1863. }
  1864. void Image::lock() {
  1865. ERR_FAIL_COND(data.size() == 0);
  1866. write_lock = data.write();
  1867. }
  1868. void Image::unlock() {
  1869. write_lock.release();
  1870. }
  1871. Color Image::get_pixelv(const Point2 &p_src) const {
  1872. return get_pixel(p_src.x, p_src.y);
  1873. }
  1874. Color Image::get_pixel(int p_x, int p_y) const {
  1875. uint8_t *ptr = write_lock.ptr();
  1876. #ifdef DEBUG_ENABLED
  1877. ERR_FAIL_COND_V_MSG(!ptr, Color(), "Image must be locked with 'lock()' before using get_pixel().");
  1878. ERR_FAIL_INDEX_V(p_x, width, Color());
  1879. ERR_FAIL_INDEX_V(p_y, height, Color());
  1880. #endif
  1881. uint32_t ofs = p_y * width + p_x;
  1882. switch (format) {
  1883. case FORMAT_L8: {
  1884. float l = ptr[ofs] / 255.0;
  1885. return Color(l, l, l, 1);
  1886. }
  1887. case FORMAT_LA8: {
  1888. float l = ptr[ofs * 2 + 0] / 255.0;
  1889. float a = ptr[ofs * 2 + 1] / 255.0;
  1890. return Color(l, l, l, a);
  1891. }
  1892. case FORMAT_R8: {
  1893. float r = ptr[ofs] / 255.0;
  1894. return Color(r, 0, 0, 1);
  1895. }
  1896. case FORMAT_RG8: {
  1897. float r = ptr[ofs * 2 + 0] / 255.0;
  1898. float g = ptr[ofs * 2 + 1] / 255.0;
  1899. return Color(r, g, 0, 1);
  1900. }
  1901. case FORMAT_RGB8: {
  1902. float r = ptr[ofs * 3 + 0] / 255.0;
  1903. float g = ptr[ofs * 3 + 1] / 255.0;
  1904. float b = ptr[ofs * 3 + 2] / 255.0;
  1905. return Color(r, g, b, 1);
  1906. }
  1907. case FORMAT_RGBA8: {
  1908. float r = ptr[ofs * 4 + 0] / 255.0;
  1909. float g = ptr[ofs * 4 + 1] / 255.0;
  1910. float b = ptr[ofs * 4 + 2] / 255.0;
  1911. float a = ptr[ofs * 4 + 3] / 255.0;
  1912. return Color(r, g, b, a);
  1913. }
  1914. case FORMAT_RGBA4444: {
  1915. uint16_t u = ((uint16_t *)ptr)[ofs];
  1916. float r = ((u >> 12) & 0xF) / 15.0;
  1917. float g = ((u >> 8) & 0xF) / 15.0;
  1918. float b = ((u >> 4) & 0xF) / 15.0;
  1919. float a = (u & 0xF) / 15.0;
  1920. return Color(r, g, b, a);
  1921. }
  1922. case FORMAT_RGBA5551: {
  1923. uint16_t u = ((uint16_t *)ptr)[ofs];
  1924. float r = ((u >> 11) & 0x1F) / 15.0;
  1925. float g = ((u >> 6) & 0x1F) / 15.0;
  1926. float b = ((u >> 1) & 0x1F) / 15.0;
  1927. float a = (u & 0x1) / 1.0;
  1928. return Color(r, g, b, a);
  1929. }
  1930. case FORMAT_RF: {
  1931. float r = ((float *)ptr)[ofs];
  1932. return Color(r, 0, 0, 1);
  1933. }
  1934. case FORMAT_RGF: {
  1935. float r = ((float *)ptr)[ofs * 2 + 0];
  1936. float g = ((float *)ptr)[ofs * 2 + 1];
  1937. return Color(r, g, 0, 1);
  1938. }
  1939. case FORMAT_RGBF: {
  1940. float r = ((float *)ptr)[ofs * 3 + 0];
  1941. float g = ((float *)ptr)[ofs * 3 + 1];
  1942. float b = ((float *)ptr)[ofs * 3 + 2];
  1943. return Color(r, g, b, 1);
  1944. }
  1945. case FORMAT_RGBAF: {
  1946. float r = ((float *)ptr)[ofs * 4 + 0];
  1947. float g = ((float *)ptr)[ofs * 4 + 1];
  1948. float b = ((float *)ptr)[ofs * 4 + 2];
  1949. float a = ((float *)ptr)[ofs * 4 + 3];
  1950. return Color(r, g, b, a);
  1951. }
  1952. case FORMAT_RH: {
  1953. uint16_t r = ((uint16_t *)ptr)[ofs];
  1954. return Color(Math::half_to_float(r), 0, 0, 1);
  1955. }
  1956. case FORMAT_RGH: {
  1957. uint16_t r = ((uint16_t *)ptr)[ofs * 2 + 0];
  1958. uint16_t g = ((uint16_t *)ptr)[ofs * 2 + 1];
  1959. return Color(Math::half_to_float(r), Math::half_to_float(g), 0, 1);
  1960. }
  1961. case FORMAT_RGBH: {
  1962. uint16_t r = ((uint16_t *)ptr)[ofs * 3 + 0];
  1963. uint16_t g = ((uint16_t *)ptr)[ofs * 3 + 1];
  1964. uint16_t b = ((uint16_t *)ptr)[ofs * 3 + 2];
  1965. return Color(Math::half_to_float(r), Math::half_to_float(g), Math::half_to_float(b), 1);
  1966. }
  1967. case FORMAT_RGBAH: {
  1968. uint16_t r = ((uint16_t *)ptr)[ofs * 4 + 0];
  1969. uint16_t g = ((uint16_t *)ptr)[ofs * 4 + 1];
  1970. uint16_t b = ((uint16_t *)ptr)[ofs * 4 + 2];
  1971. uint16_t a = ((uint16_t *)ptr)[ofs * 4 + 3];
  1972. return Color(Math::half_to_float(r), Math::half_to_float(g), Math::half_to_float(b), Math::half_to_float(a));
  1973. }
  1974. case FORMAT_RGBE9995: {
  1975. return Color::from_rgbe9995(((uint32_t *)ptr)[ofs]);
  1976. }
  1977. default: {
  1978. ERR_FAIL_V_MSG(Color(), "Can't get_pixel() on compressed image, sorry.");
  1979. }
  1980. }
  1981. }
  1982. void Image::set_pixelv(const Point2 &p_dst, const Color &p_color) {
  1983. set_pixel(p_dst.x, p_dst.y, p_color);
  1984. }
  1985. void Image::set_pixel(int p_x, int p_y, const Color &p_color) {
  1986. uint8_t *ptr = write_lock.ptr();
  1987. #ifdef DEBUG_ENABLED
  1988. ERR_FAIL_COND_MSG(!ptr, "Image must be locked with 'lock()' before using set_pixel().");
  1989. ERR_FAIL_INDEX(p_x, width);
  1990. ERR_FAIL_INDEX(p_y, height);
  1991. #endif
  1992. uint32_t ofs = p_y * width + p_x;
  1993. switch (format) {
  1994. case FORMAT_L8: {
  1995. ptr[ofs] = uint8_t(CLAMP(p_color.get_v() * 255.0, 0, 255));
  1996. } break;
  1997. case FORMAT_LA8: {
  1998. ptr[ofs * 2 + 0] = uint8_t(CLAMP(p_color.get_v() * 255.0, 0, 255));
  1999. ptr[ofs * 2 + 1] = uint8_t(CLAMP(p_color.a * 255.0, 0, 255));
  2000. } break;
  2001. case FORMAT_R8: {
  2002. ptr[ofs] = uint8_t(CLAMP(p_color.r * 255.0, 0, 255));
  2003. } break;
  2004. case FORMAT_RG8: {
  2005. ptr[ofs * 2 + 0] = uint8_t(CLAMP(p_color.r * 255.0, 0, 255));
  2006. ptr[ofs * 2 + 1] = uint8_t(CLAMP(p_color.g * 255.0, 0, 255));
  2007. } break;
  2008. case FORMAT_RGB8: {
  2009. ptr[ofs * 3 + 0] = uint8_t(CLAMP(p_color.r * 255.0, 0, 255));
  2010. ptr[ofs * 3 + 1] = uint8_t(CLAMP(p_color.g * 255.0, 0, 255));
  2011. ptr[ofs * 3 + 2] = uint8_t(CLAMP(p_color.b * 255.0, 0, 255));
  2012. } break;
  2013. case FORMAT_RGBA8: {
  2014. ptr[ofs * 4 + 0] = uint8_t(CLAMP(p_color.r * 255.0, 0, 255));
  2015. ptr[ofs * 4 + 1] = uint8_t(CLAMP(p_color.g * 255.0, 0, 255));
  2016. ptr[ofs * 4 + 2] = uint8_t(CLAMP(p_color.b * 255.0, 0, 255));
  2017. ptr[ofs * 4 + 3] = uint8_t(CLAMP(p_color.a * 255.0, 0, 255));
  2018. } break;
  2019. case FORMAT_RGBA4444: {
  2020. uint16_t rgba = 0;
  2021. rgba = uint16_t(CLAMP(p_color.r * 15.0, 0, 15)) << 12;
  2022. rgba |= uint16_t(CLAMP(p_color.g * 15.0, 0, 15)) << 8;
  2023. rgba |= uint16_t(CLAMP(p_color.b * 15.0, 0, 15)) << 4;
  2024. rgba |= uint16_t(CLAMP(p_color.a * 15.0, 0, 15));
  2025. ((uint16_t *)ptr)[ofs] = rgba;
  2026. } break;
  2027. case FORMAT_RGBA5551: {
  2028. uint16_t rgba = 0;
  2029. rgba = uint16_t(CLAMP(p_color.r * 31.0, 0, 31)) << 11;
  2030. rgba |= uint16_t(CLAMP(p_color.g * 31.0, 0, 31)) << 6;
  2031. rgba |= uint16_t(CLAMP(p_color.b * 31.0, 0, 31)) << 1;
  2032. rgba |= uint16_t(p_color.a > 0.5 ? 1 : 0);
  2033. ((uint16_t *)ptr)[ofs] = rgba;
  2034. } break;
  2035. case FORMAT_RF: {
  2036. ((float *)ptr)[ofs] = p_color.r;
  2037. } break;
  2038. case FORMAT_RGF: {
  2039. ((float *)ptr)[ofs * 2 + 0] = p_color.r;
  2040. ((float *)ptr)[ofs * 2 + 1] = p_color.g;
  2041. } break;
  2042. case FORMAT_RGBF: {
  2043. ((float *)ptr)[ofs * 3 + 0] = p_color.r;
  2044. ((float *)ptr)[ofs * 3 + 1] = p_color.g;
  2045. ((float *)ptr)[ofs * 3 + 2] = p_color.b;
  2046. } break;
  2047. case FORMAT_RGBAF: {
  2048. ((float *)ptr)[ofs * 4 + 0] = p_color.r;
  2049. ((float *)ptr)[ofs * 4 + 1] = p_color.g;
  2050. ((float *)ptr)[ofs * 4 + 2] = p_color.b;
  2051. ((float *)ptr)[ofs * 4 + 3] = p_color.a;
  2052. } break;
  2053. case FORMAT_RH: {
  2054. ((uint16_t *)ptr)[ofs] = Math::make_half_float(p_color.r);
  2055. } break;
  2056. case FORMAT_RGH: {
  2057. ((uint16_t *)ptr)[ofs * 2 + 0] = Math::make_half_float(p_color.r);
  2058. ((uint16_t *)ptr)[ofs * 2 + 1] = Math::make_half_float(p_color.g);
  2059. } break;
  2060. case FORMAT_RGBH: {
  2061. ((uint16_t *)ptr)[ofs * 3 + 0] = Math::make_half_float(p_color.r);
  2062. ((uint16_t *)ptr)[ofs * 3 + 1] = Math::make_half_float(p_color.g);
  2063. ((uint16_t *)ptr)[ofs * 3 + 2] = Math::make_half_float(p_color.b);
  2064. } break;
  2065. case FORMAT_RGBAH: {
  2066. ((uint16_t *)ptr)[ofs * 4 + 0] = Math::make_half_float(p_color.r);
  2067. ((uint16_t *)ptr)[ofs * 4 + 1] = Math::make_half_float(p_color.g);
  2068. ((uint16_t *)ptr)[ofs * 4 + 2] = Math::make_half_float(p_color.b);
  2069. ((uint16_t *)ptr)[ofs * 4 + 3] = Math::make_half_float(p_color.a);
  2070. } break;
  2071. case FORMAT_RGBE9995: {
  2072. ((uint32_t *)ptr)[ofs] = p_color.to_rgbe9995();
  2073. } break;
  2074. default: {
  2075. ERR_FAIL_MSG("Can't set_pixel() on compressed image, sorry.");
  2076. }
  2077. }
  2078. }
  2079. Image::DetectChannels Image::get_detected_channels() {
  2080. ERR_FAIL_COND_V(data.size() == 0, DETECTED_RGBA);
  2081. ERR_FAIL_COND_V(is_compressed(), DETECTED_RGBA);
  2082. bool r = false, g = false, b = false, a = false, c = false;
  2083. lock();
  2084. for (int i = 0; i < width; i++) {
  2085. for (int j = 0; j < height; j++) {
  2086. Color col = get_pixel(i, j);
  2087. if (col.r > 0.001)
  2088. r = true;
  2089. if (col.g > 0.001)
  2090. g = true;
  2091. if (col.b > 0.001)
  2092. b = true;
  2093. if (col.a < 0.999)
  2094. a = true;
  2095. if (col.r != col.b || col.r != col.g || col.b != col.g) {
  2096. c = true;
  2097. }
  2098. }
  2099. }
  2100. unlock();
  2101. if (!c && !a)
  2102. return DETECTED_L;
  2103. if (!c && a)
  2104. return DETECTED_LA;
  2105. if (r && !g && !b && !a)
  2106. return DETECTED_R;
  2107. if (r && g && !b && !a)
  2108. return DETECTED_RG;
  2109. if (r && g && b && !a)
  2110. return DETECTED_RGB;
  2111. return DETECTED_RGBA;
  2112. }
  2113. void Image::optimize_channels() {
  2114. switch (get_detected_channels()) {
  2115. case DETECTED_L: convert(FORMAT_L8); break;
  2116. case DETECTED_LA: convert(FORMAT_LA8); break;
  2117. case DETECTED_R: convert(FORMAT_R8); break;
  2118. case DETECTED_RG: convert(FORMAT_RG8); break;
  2119. case DETECTED_RGB: convert(FORMAT_RGB8); break;
  2120. case DETECTED_RGBA: convert(FORMAT_RGBA8); break;
  2121. }
  2122. }
  2123. void Image::_bind_methods() {
  2124. ClassDB::bind_method(D_METHOD("get_width"), &Image::get_width);
  2125. ClassDB::bind_method(D_METHOD("get_height"), &Image::get_height);
  2126. ClassDB::bind_method(D_METHOD("get_size"), &Image::get_size);
  2127. ClassDB::bind_method(D_METHOD("has_mipmaps"), &Image::has_mipmaps);
  2128. ClassDB::bind_method(D_METHOD("get_format"), &Image::get_format);
  2129. ClassDB::bind_method(D_METHOD("get_data"), &Image::get_data);
  2130. ClassDB::bind_method(D_METHOD("convert", "format"), &Image::convert);
  2131. ClassDB::bind_method(D_METHOD("get_mipmap_offset", "mipmap"), &Image::get_mipmap_offset);
  2132. ClassDB::bind_method(D_METHOD("resize_to_po2", "square", "interpolation"), &Image::resize_to_po2, DEFVAL(false), DEFVAL(INTERPOLATE_BILINEAR));
  2133. ClassDB::bind_method(D_METHOD("resize", "width", "height", "interpolation"), &Image::resize, DEFVAL(INTERPOLATE_BILINEAR));
  2134. ClassDB::bind_method(D_METHOD("shrink_x2"), &Image::shrink_x2);
  2135. ClassDB::bind_method(D_METHOD("expand_x2_hq2x"), &Image::expand_x2_hq2x);
  2136. ClassDB::bind_method(D_METHOD("crop", "width", "height"), &Image::crop);
  2137. ClassDB::bind_method(D_METHOD("flip_x"), &Image::flip_x);
  2138. ClassDB::bind_method(D_METHOD("flip_y"), &Image::flip_y);
  2139. ClassDB::bind_method(D_METHOD("generate_mipmaps", "renormalize"), &Image::generate_mipmaps, DEFVAL(false));
  2140. ClassDB::bind_method(D_METHOD("clear_mipmaps"), &Image::clear_mipmaps);
  2141. ClassDB::bind_method(D_METHOD("create", "width", "height", "use_mipmaps", "format"), &Image::_create_empty);
  2142. ClassDB::bind_method(D_METHOD("create_from_data", "width", "height", "use_mipmaps", "format", "data"), &Image::_create_from_data);
  2143. ClassDB::bind_method(D_METHOD("is_empty"), &Image::empty);
  2144. ClassDB::bind_method(D_METHOD("load", "path"), &Image::load);
  2145. ClassDB::bind_method(D_METHOD("save_png", "path"), &Image::save_png);
  2146. ClassDB::bind_method(D_METHOD("save_png_to_buffer"), &Image::save_png_to_buffer);
  2147. ClassDB::bind_method(D_METHOD("save_exr", "path", "grayscale"), &Image::save_exr, DEFVAL(false));
  2148. ClassDB::bind_method(D_METHOD("detect_alpha"), &Image::detect_alpha);
  2149. ClassDB::bind_method(D_METHOD("is_invisible"), &Image::is_invisible);
  2150. ClassDB::bind_method(D_METHOD("compress", "mode", "source", "lossy_quality"), &Image::compress);
  2151. ClassDB::bind_method(D_METHOD("decompress"), &Image::decompress);
  2152. ClassDB::bind_method(D_METHOD("is_compressed"), &Image::is_compressed);
  2153. ClassDB::bind_method(D_METHOD("fix_alpha_edges"), &Image::fix_alpha_edges);
  2154. ClassDB::bind_method(D_METHOD("premultiply_alpha"), &Image::premultiply_alpha);
  2155. ClassDB::bind_method(D_METHOD("srgb_to_linear"), &Image::srgb_to_linear);
  2156. ClassDB::bind_method(D_METHOD("normalmap_to_xy"), &Image::normalmap_to_xy);
  2157. ClassDB::bind_method(D_METHOD("rgbe_to_srgb"), &Image::rgbe_to_srgb);
  2158. ClassDB::bind_method(D_METHOD("bumpmap_to_normalmap", "bump_scale"), &Image::bumpmap_to_normalmap, DEFVAL(1.0));
  2159. ClassDB::bind_method(D_METHOD("blit_rect", "src", "src_rect", "dst"), &Image::blit_rect);
  2160. ClassDB::bind_method(D_METHOD("blit_rect_mask", "src", "mask", "src_rect", "dst"), &Image::blit_rect_mask);
  2161. ClassDB::bind_method(D_METHOD("blend_rect", "src", "src_rect", "dst"), &Image::blend_rect);
  2162. ClassDB::bind_method(D_METHOD("blend_rect_mask", "src", "mask", "src_rect", "dst"), &Image::blend_rect_mask);
  2163. ClassDB::bind_method(D_METHOD("fill", "color"), &Image::fill);
  2164. ClassDB::bind_method(D_METHOD("get_used_rect"), &Image::get_used_rect);
  2165. ClassDB::bind_method(D_METHOD("get_rect", "rect"), &Image::get_rect);
  2166. ClassDB::bind_method(D_METHOD("copy_from", "src"), &Image::copy_internals_from);
  2167. ClassDB::bind_method(D_METHOD("_set_data", "data"), &Image::_set_data);
  2168. ClassDB::bind_method(D_METHOD("_get_data"), &Image::_get_data);
  2169. ClassDB::bind_method(D_METHOD("lock"), &Image::lock);
  2170. ClassDB::bind_method(D_METHOD("unlock"), &Image::unlock);
  2171. ClassDB::bind_method(D_METHOD("get_pixelv", "src"), &Image::get_pixelv);
  2172. ClassDB::bind_method(D_METHOD("get_pixel", "x", "y"), &Image::get_pixel);
  2173. ClassDB::bind_method(D_METHOD("set_pixelv", "dst", "color"), &Image::set_pixelv);
  2174. ClassDB::bind_method(D_METHOD("set_pixel", "x", "y", "color"), &Image::set_pixel);
  2175. ClassDB::bind_method(D_METHOD("load_png_from_buffer", "buffer"), &Image::load_png_from_buffer);
  2176. ClassDB::bind_method(D_METHOD("load_jpg_from_buffer", "buffer"), &Image::load_jpg_from_buffer);
  2177. ClassDB::bind_method(D_METHOD("load_webp_from_buffer", "buffer"), &Image::load_webp_from_buffer);
  2178. ClassDB::bind_method(D_METHOD("load_tga_from_buffer", "buffer"), &Image::load_tga_from_buffer);
  2179. ClassDB::bind_method(D_METHOD("load_bmp_from_buffer", "buffer"), &Image::load_bmp_from_buffer);
  2180. ADD_PROPERTY(PropertyInfo(Variant::DICTIONARY, "data", PROPERTY_HINT_NONE, "", PROPERTY_USAGE_STORAGE), "_set_data", "_get_data");
  2181. BIND_CONSTANT(MAX_WIDTH);
  2182. BIND_CONSTANT(MAX_HEIGHT);
  2183. BIND_ENUM_CONSTANT(FORMAT_L8); //luminance
  2184. BIND_ENUM_CONSTANT(FORMAT_LA8); //luminance-alpha
  2185. BIND_ENUM_CONSTANT(FORMAT_R8);
  2186. BIND_ENUM_CONSTANT(FORMAT_RG8);
  2187. BIND_ENUM_CONSTANT(FORMAT_RGB8);
  2188. BIND_ENUM_CONSTANT(FORMAT_RGBA8);
  2189. BIND_ENUM_CONSTANT(FORMAT_RGBA4444);
  2190. BIND_ENUM_CONSTANT(FORMAT_RGBA5551);
  2191. BIND_ENUM_CONSTANT(FORMAT_RF); //float
  2192. BIND_ENUM_CONSTANT(FORMAT_RGF);
  2193. BIND_ENUM_CONSTANT(FORMAT_RGBF);
  2194. BIND_ENUM_CONSTANT(FORMAT_RGBAF);
  2195. BIND_ENUM_CONSTANT(FORMAT_RH); //half float
  2196. BIND_ENUM_CONSTANT(FORMAT_RGH);
  2197. BIND_ENUM_CONSTANT(FORMAT_RGBH);
  2198. BIND_ENUM_CONSTANT(FORMAT_RGBAH);
  2199. BIND_ENUM_CONSTANT(FORMAT_RGBE9995);
  2200. BIND_ENUM_CONSTANT(FORMAT_DXT1); //s3tc bc1
  2201. BIND_ENUM_CONSTANT(FORMAT_DXT3); //bc2
  2202. BIND_ENUM_CONSTANT(FORMAT_DXT5); //bc3
  2203. BIND_ENUM_CONSTANT(FORMAT_RGTC_R);
  2204. BIND_ENUM_CONSTANT(FORMAT_RGTC_RG);
  2205. BIND_ENUM_CONSTANT(FORMAT_BPTC_RGBA); //btpc bc6h
  2206. BIND_ENUM_CONSTANT(FORMAT_BPTC_RGBF); //float /
  2207. BIND_ENUM_CONSTANT(FORMAT_BPTC_RGBFU); //unsigned float
  2208. BIND_ENUM_CONSTANT(FORMAT_PVRTC2); //pvrtc
  2209. BIND_ENUM_CONSTANT(FORMAT_PVRTC2A);
  2210. BIND_ENUM_CONSTANT(FORMAT_PVRTC4);
  2211. BIND_ENUM_CONSTANT(FORMAT_PVRTC4A);
  2212. BIND_ENUM_CONSTANT(FORMAT_ETC); //etc1
  2213. BIND_ENUM_CONSTANT(FORMAT_ETC2_R11); //etc2
  2214. BIND_ENUM_CONSTANT(FORMAT_ETC2_R11S); //signed ); NOT srgb.
  2215. BIND_ENUM_CONSTANT(FORMAT_ETC2_RG11);
  2216. BIND_ENUM_CONSTANT(FORMAT_ETC2_RG11S);
  2217. BIND_ENUM_CONSTANT(FORMAT_ETC2_RGB8);
  2218. BIND_ENUM_CONSTANT(FORMAT_ETC2_RGBA8);
  2219. BIND_ENUM_CONSTANT(FORMAT_ETC2_RGB8A1);
  2220. BIND_ENUM_CONSTANT(FORMAT_MAX);
  2221. BIND_ENUM_CONSTANT(INTERPOLATE_NEAREST);
  2222. BIND_ENUM_CONSTANT(INTERPOLATE_BILINEAR);
  2223. BIND_ENUM_CONSTANT(INTERPOLATE_CUBIC);
  2224. BIND_ENUM_CONSTANT(INTERPOLATE_TRILINEAR);
  2225. BIND_ENUM_CONSTANT(INTERPOLATE_LANCZOS);
  2226. BIND_ENUM_CONSTANT(ALPHA_NONE);
  2227. BIND_ENUM_CONSTANT(ALPHA_BIT);
  2228. BIND_ENUM_CONSTANT(ALPHA_BLEND);
  2229. BIND_ENUM_CONSTANT(COMPRESS_S3TC);
  2230. BIND_ENUM_CONSTANT(COMPRESS_PVRTC2);
  2231. BIND_ENUM_CONSTANT(COMPRESS_PVRTC4);
  2232. BIND_ENUM_CONSTANT(COMPRESS_ETC);
  2233. BIND_ENUM_CONSTANT(COMPRESS_ETC2);
  2234. BIND_ENUM_CONSTANT(COMPRESS_SOURCE_GENERIC);
  2235. BIND_ENUM_CONSTANT(COMPRESS_SOURCE_SRGB);
  2236. BIND_ENUM_CONSTANT(COMPRESS_SOURCE_NORMAL);
  2237. }
  2238. void Image::set_compress_bc_func(void (*p_compress_func)(Image *, float, CompressSource)) {
  2239. _image_compress_bc_func = p_compress_func;
  2240. }
  2241. void Image::set_compress_bptc_func(void (*p_compress_func)(Image *, float, CompressSource)) {
  2242. _image_compress_bptc_func = p_compress_func;
  2243. }
  2244. void Image::normalmap_to_xy() {
  2245. convert(Image::FORMAT_RGBA8);
  2246. {
  2247. int len = data.size() / 4;
  2248. PoolVector<uint8_t>::Write wp = data.write();
  2249. unsigned char *data_ptr = wp.ptr();
  2250. for (int i = 0; i < len; i++) {
  2251. data_ptr[(i << 2) + 3] = data_ptr[(i << 2) + 0]; //x to w
  2252. data_ptr[(i << 2) + 0] = data_ptr[(i << 2) + 1]; //y to xz
  2253. data_ptr[(i << 2) + 2] = data_ptr[(i << 2) + 1];
  2254. }
  2255. }
  2256. convert(Image::FORMAT_LA8);
  2257. }
  2258. Ref<Image> Image::rgbe_to_srgb() {
  2259. if (data.size() == 0)
  2260. return Ref<Image>();
  2261. ERR_FAIL_COND_V(format != FORMAT_RGBE9995, Ref<Image>());
  2262. Ref<Image> new_image;
  2263. new_image.instance();
  2264. new_image->create(width, height, 0, Image::FORMAT_RGB8);
  2265. lock();
  2266. new_image->lock();
  2267. for (int row = 0; row < height; row++) {
  2268. for (int col = 0; col < width; col++) {
  2269. new_image->set_pixel(col, row, get_pixel(col, row).to_srgb());
  2270. }
  2271. }
  2272. unlock();
  2273. new_image->unlock();
  2274. if (has_mipmaps()) {
  2275. new_image->generate_mipmaps();
  2276. }
  2277. return new_image;
  2278. }
  2279. void Image::bumpmap_to_normalmap(float bump_scale) {
  2280. ERR_FAIL_COND(!_can_modify(format));
  2281. ERR_FAIL_COND_MSG(write_lock.ptr(), "Cannot modify image when it is locked.");
  2282. convert(Image::FORMAT_RF);
  2283. PoolVector<uint8_t> result_image; //rgba output
  2284. result_image.resize(width * height * 4);
  2285. {
  2286. PoolVector<uint8_t>::Read rp = data.read();
  2287. PoolVector<uint8_t>::Write wp = result_image.write();
  2288. ERR_FAIL_COND(!rp.ptr());
  2289. unsigned char *write_ptr = wp.ptr();
  2290. float *read_ptr = (float *)rp.ptr();
  2291. for (int ty = 0; ty < height; ty++) {
  2292. int py = ty + 1;
  2293. if (py >= height) py -= height;
  2294. for (int tx = 0; tx < width; tx++) {
  2295. int px = tx + 1;
  2296. if (px >= width) px -= width;
  2297. float here = read_ptr[ty * width + tx];
  2298. float to_right = read_ptr[ty * width + px];
  2299. float above = read_ptr[py * width + tx];
  2300. Vector3 up = Vector3(0, 1, (here - above) * bump_scale);
  2301. Vector3 across = Vector3(1, 0, (to_right - here) * bump_scale);
  2302. Vector3 normal = across.cross(up);
  2303. normal.normalize();
  2304. write_ptr[((ty * width + tx) << 2) + 0] = (127.5 + normal.x * 127.5);
  2305. write_ptr[((ty * width + tx) << 2) + 1] = (127.5 + normal.y * 127.5);
  2306. write_ptr[((ty * width + tx) << 2) + 2] = (127.5 + normal.z * 127.5);
  2307. write_ptr[((ty * width + tx) << 2) + 3] = 255;
  2308. }
  2309. }
  2310. }
  2311. format = FORMAT_RGBA8;
  2312. data = result_image;
  2313. }
  2314. void Image::srgb_to_linear() {
  2315. if (data.size() == 0)
  2316. return;
  2317. static const uint8_t srgb2lin[256] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 5, 5, 5, 5, 6, 6, 6, 6, 7, 7, 7, 8, 8, 8, 9, 9, 9, 10, 10, 10, 11, 11, 11, 12, 12, 13, 13, 13, 14, 14, 15, 15, 16, 16, 16, 17, 17, 18, 18, 19, 19, 20, 20, 21, 22, 22, 23, 23, 24, 24, 25, 26, 26, 27, 27, 28, 29, 29, 30, 31, 31, 32, 33, 33, 34, 35, 36, 36, 37, 38, 38, 39, 40, 41, 42, 42, 43, 44, 45, 46, 47, 47, 48, 49, 50, 51, 52, 53, 54, 55, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 70, 71, 72, 73, 74, 75, 76, 77, 78, 80, 81, 82, 83, 84, 85, 87, 88, 89, 90, 92, 93, 94, 95, 97, 98, 99, 101, 102, 103, 105, 106, 107, 109, 110, 112, 113, 114, 116, 117, 119, 120, 122, 123, 125, 126, 128, 129, 131, 132, 134, 135, 137, 139, 140, 142, 144, 145, 147, 148, 150, 152, 153, 155, 157, 159, 160, 162, 164, 166, 167, 169, 171, 173, 175, 176, 178, 180, 182, 184, 186, 188, 190, 192, 193, 195, 197, 199, 201, 203, 205, 207, 209, 211, 213, 215, 218, 220, 222, 224, 226, 228, 230, 232, 235, 237, 239, 241, 243, 245, 248, 250, 252, 255 };
  2318. ERR_FAIL_COND(format != FORMAT_RGB8 && format != FORMAT_RGBA8);
  2319. if (format == FORMAT_RGBA8) {
  2320. int len = data.size() / 4;
  2321. PoolVector<uint8_t>::Write wp = data.write();
  2322. unsigned char *data_ptr = wp.ptr();
  2323. for (int i = 0; i < len; i++) {
  2324. data_ptr[(i << 2) + 0] = srgb2lin[data_ptr[(i << 2) + 0]];
  2325. data_ptr[(i << 2) + 1] = srgb2lin[data_ptr[(i << 2) + 1]];
  2326. data_ptr[(i << 2) + 2] = srgb2lin[data_ptr[(i << 2) + 2]];
  2327. }
  2328. } else if (format == FORMAT_RGB8) {
  2329. int len = data.size() / 3;
  2330. PoolVector<uint8_t>::Write wp = data.write();
  2331. unsigned char *data_ptr = wp.ptr();
  2332. for (int i = 0; i < len; i++) {
  2333. data_ptr[(i * 3) + 0] = srgb2lin[data_ptr[(i * 3) + 0]];
  2334. data_ptr[(i * 3) + 1] = srgb2lin[data_ptr[(i * 3) + 1]];
  2335. data_ptr[(i * 3) + 2] = srgb2lin[data_ptr[(i * 3) + 2]];
  2336. }
  2337. }
  2338. }
  2339. void Image::premultiply_alpha() {
  2340. if (data.size() == 0)
  2341. return;
  2342. if (format != FORMAT_RGBA8)
  2343. return; //not needed
  2344. PoolVector<uint8_t>::Write wp = data.write();
  2345. unsigned char *data_ptr = wp.ptr();
  2346. for (int i = 0; i < height; i++) {
  2347. for (int j = 0; j < width; j++) {
  2348. uint8_t *ptr = &data_ptr[(i * width + j) * 4];
  2349. ptr[0] = (uint16_t(ptr[0]) * uint16_t(ptr[3])) >> 8;
  2350. ptr[1] = (uint16_t(ptr[1]) * uint16_t(ptr[3])) >> 8;
  2351. ptr[2] = (uint16_t(ptr[2]) * uint16_t(ptr[3])) >> 8;
  2352. }
  2353. }
  2354. }
  2355. void Image::fix_alpha_edges() {
  2356. ERR_FAIL_COND(!_can_modify(format));
  2357. ERR_FAIL_COND_MSG(write_lock.ptr(), "Cannot modify image when it is locked.");
  2358. if (data.size() == 0)
  2359. return;
  2360. if (format != FORMAT_RGBA8)
  2361. return; //not needed
  2362. PoolVector<uint8_t> dcopy = data;
  2363. PoolVector<uint8_t>::Read rp = dcopy.read();
  2364. const uint8_t *srcptr = rp.ptr();
  2365. PoolVector<uint8_t>::Write wp = data.write();
  2366. unsigned char *data_ptr = wp.ptr();
  2367. const int max_radius = 4;
  2368. const int alpha_threshold = 20;
  2369. const int max_dist = 0x7FFFFFFF;
  2370. for (int i = 0; i < height; i++) {
  2371. for (int j = 0; j < width; j++) {
  2372. const uint8_t *rptr = &srcptr[(i * width + j) * 4];
  2373. uint8_t *wptr = &data_ptr[(i * width + j) * 4];
  2374. if (rptr[3] >= alpha_threshold)
  2375. continue;
  2376. int closest_dist = max_dist;
  2377. uint8_t closest_color[3];
  2378. int from_x = MAX(0, j - max_radius);
  2379. int to_x = MIN(width - 1, j + max_radius);
  2380. int from_y = MAX(0, i - max_radius);
  2381. int to_y = MIN(height - 1, i + max_radius);
  2382. for (int k = from_y; k <= to_y; k++) {
  2383. for (int l = from_x; l <= to_x; l++) {
  2384. int dy = i - k;
  2385. int dx = j - l;
  2386. int dist = dy * dy + dx * dx;
  2387. if (dist >= closest_dist)
  2388. continue;
  2389. const uint8_t *rp2 = &srcptr[(k * width + l) << 2];
  2390. if (rp2[3] < alpha_threshold)
  2391. continue;
  2392. closest_dist = dist;
  2393. closest_color[0] = rp2[0];
  2394. closest_color[1] = rp2[1];
  2395. closest_color[2] = rp2[2];
  2396. }
  2397. }
  2398. if (closest_dist != max_dist) {
  2399. wptr[0] = closest_color[0];
  2400. wptr[1] = closest_color[1];
  2401. wptr[2] = closest_color[2];
  2402. }
  2403. }
  2404. }
  2405. }
  2406. String Image::get_format_name(Format p_format) {
  2407. ERR_FAIL_INDEX_V(p_format, FORMAT_MAX, String());
  2408. return format_names[p_format];
  2409. }
  2410. Error Image::load_png_from_buffer(const PoolVector<uint8_t> &p_array) {
  2411. return _load_from_buffer(p_array, _png_mem_loader_func);
  2412. }
  2413. Error Image::load_jpg_from_buffer(const PoolVector<uint8_t> &p_array) {
  2414. return _load_from_buffer(p_array, _jpg_mem_loader_func);
  2415. }
  2416. Error Image::load_webp_from_buffer(const PoolVector<uint8_t> &p_array) {
  2417. return _load_from_buffer(p_array, _webp_mem_loader_func);
  2418. }
  2419. Error Image::load_tga_from_buffer(const PoolVector<uint8_t> &p_array) {
  2420. ERR_FAIL_NULL_V_MSG(_tga_mem_loader_func, ERR_UNAVAILABLE, "TGA module was not installed.");
  2421. return _load_from_buffer(p_array, _tga_mem_loader_func);
  2422. }
  2423. Error Image::load_bmp_from_buffer(const PoolVector<uint8_t> &p_array) {
  2424. ERR_FAIL_NULL_V_MSG(
  2425. _bmp_mem_loader_func,
  2426. ERR_UNAVAILABLE,
  2427. "The BMP module isn't enabled. Recompile the Godot editor or export template binary with the `module_bmp_enabled=yes` SCons option.");
  2428. return _load_from_buffer(p_array, _bmp_mem_loader_func);
  2429. }
  2430. Error Image::_load_from_buffer(const PoolVector<uint8_t> &p_array, ImageMemLoadFunc p_loader) {
  2431. int buffer_size = p_array.size();
  2432. ERR_FAIL_COND_V(buffer_size == 0, ERR_INVALID_PARAMETER);
  2433. ERR_FAIL_COND_V(!p_loader, ERR_INVALID_PARAMETER);
  2434. PoolVector<uint8_t>::Read r = p_array.read();
  2435. Ref<Image> image = p_loader(r.ptr(), buffer_size);
  2436. ERR_FAIL_COND_V(!image.is_valid(), ERR_PARSE_ERROR);
  2437. copy_internals_from(image);
  2438. return OK;
  2439. }
  2440. void Image::average_4_uint8(uint8_t &p_out, const uint8_t &p_a, const uint8_t &p_b, const uint8_t &p_c, const uint8_t &p_d) {
  2441. p_out = static_cast<uint8_t>((p_a + p_b + p_c + p_d + 2) >> 2);
  2442. }
  2443. void Image::average_4_float(float &p_out, const float &p_a, const float &p_b, const float &p_c, const float &p_d) {
  2444. p_out = (p_a + p_b + p_c + p_d) * 0.25f;
  2445. }
  2446. void Image::average_4_half(uint16_t &p_out, const uint16_t &p_a, const uint16_t &p_b, const uint16_t &p_c, const uint16_t &p_d) {
  2447. p_out = Math::make_half_float((Math::half_to_float(p_a) + Math::half_to_float(p_b) + Math::half_to_float(p_c) + Math::half_to_float(p_d)) * 0.25f);
  2448. }
  2449. void Image::average_4_rgbe9995(uint32_t &p_out, const uint32_t &p_a, const uint32_t &p_b, const uint32_t &p_c, const uint32_t &p_d) {
  2450. p_out = ((Color::from_rgbe9995(p_a) + Color::from_rgbe9995(p_b) + Color::from_rgbe9995(p_c) + Color::from_rgbe9995(p_d)) * 0.25f).to_rgbe9995();
  2451. }
  2452. void Image::renormalize_uint8(uint8_t *p_rgb) {
  2453. Vector3 n(p_rgb[0] / 255.0, p_rgb[1] / 255.0, p_rgb[2] / 255.0);
  2454. n *= 2.0;
  2455. n -= Vector3(1, 1, 1);
  2456. n.normalize();
  2457. n += Vector3(1, 1, 1);
  2458. n *= 0.5;
  2459. n *= 255;
  2460. p_rgb[0] = CLAMP(int(n.x), 0, 255);
  2461. p_rgb[1] = CLAMP(int(n.y), 0, 255);
  2462. p_rgb[2] = CLAMP(int(n.z), 0, 255);
  2463. }
  2464. void Image::renormalize_float(float *p_rgb) {
  2465. Vector3 n(p_rgb[0], p_rgb[1], p_rgb[2]);
  2466. n.normalize();
  2467. p_rgb[0] = n.x;
  2468. p_rgb[1] = n.y;
  2469. p_rgb[2] = n.z;
  2470. }
  2471. void Image::renormalize_half(uint16_t *p_rgb) {
  2472. Vector3 n(Math::half_to_float(p_rgb[0]), Math::half_to_float(p_rgb[1]), Math::half_to_float(p_rgb[2]));
  2473. n.normalize();
  2474. p_rgb[0] = Math::make_half_float(n.x);
  2475. p_rgb[1] = Math::make_half_float(n.y);
  2476. p_rgb[2] = Math::make_half_float(n.z);
  2477. }
  2478. void Image::renormalize_rgbe9995(uint32_t *p_rgb) {
  2479. // Never used
  2480. }
  2481. Image::Image(const uint8_t *p_mem_png_jpg, int p_len) {
  2482. width = 0;
  2483. height = 0;
  2484. mipmaps = false;
  2485. format = FORMAT_L8;
  2486. if (_png_mem_loader_func) {
  2487. copy_internals_from(_png_mem_loader_func(p_mem_png_jpg, p_len));
  2488. }
  2489. if (empty() && _jpg_mem_loader_func) {
  2490. copy_internals_from(_jpg_mem_loader_func(p_mem_png_jpg, p_len));
  2491. }
  2492. }
  2493. Ref<Resource> Image::duplicate(bool p_subresources) const {
  2494. Ref<Image> copy;
  2495. copy.instance();
  2496. copy->_copy_internals_from(*this);
  2497. return copy;
  2498. }
  2499. Image::Image() {
  2500. width = 0;
  2501. height = 0;
  2502. mipmaps = false;
  2503. format = FORMAT_L8;
  2504. }
  2505. Image::~Image() {
  2506. if (write_lock.ptr()) {
  2507. unlock();
  2508. }
  2509. }