/* * Copyright (c) 2021 - 2024 the ThorVG project. All rights reserved. * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include "tvgLoader.h" #include "tvgPngLoader.h" /************************************************************************/ /* Internal Class Implementation */ /************************************************************************/ void PngLoader::run(unsigned tid) { auto width = static_cast(w); auto height = static_cast(h); state.info_raw.colortype = LCT_RGBA; //request this image format if (lodepng_decode(&surface.buf8, &width, &height, &state, data, size)) { TVGERR("PNG", "Failed to decode image"); } //setup the surface surface.stride = width; surface.w = width; surface.h = height; surface.cs = ColorSpace::ABGR8888; surface.channelSize = sizeof(uint32_t); if (state.info_png.color.colortype == LCT_RGBA) surface.premultiplied = false; else surface.premultiplied = true; } /************************************************************************/ /* External Class Implementation */ /************************************************************************/ PngLoader::PngLoader() : ImageLoader(FileType::Png) { lodepng_state_init(&state); } PngLoader::~PngLoader() { if (freeData) free(data); free(surface.buf8); lodepng_state_cleanup(&state); } bool PngLoader::open(const string& path) { auto pngFile = fopen(path.c_str(), "rb"); if (!pngFile) return false; auto ret = false; //determine size if (fseek(pngFile, 0, SEEK_END) < 0) goto finalize; if (((size = ftell(pngFile)) < 1)) goto finalize; if (fseek(pngFile, 0, SEEK_SET)) goto finalize; data = (unsigned char *) malloc(size); if (!data) goto finalize; freeData = true; if (fread(data, size, 1, pngFile) < 1) goto finalize; lodepng_state_init(&state); unsigned int width, height; if (lodepng_inspect(&width, &height, &state, data, size) > 0) goto finalize; w = static_cast(width); h = static_cast(height); ret = true; goto finalize; finalize: fclose(pngFile); return ret; } bool PngLoader::open(const char* data, uint32_t size, bool copy) { unsigned int width, height; if (lodepng_inspect(&width, &height, &state, (unsigned char*)(data), size) > 0) return false; if (copy) { this->data = (unsigned char *) malloc(size); if (!this->data) return false; memcpy((unsigned char *)this->data, data, size); freeData = true; } else { this->data = (unsigned char *) data; freeData = false; } w = static_cast(width); h = static_cast(height); this->size = size; return true; } bool PngLoader::read() { if (!data || w == 0 || h == 0) return false; if (!LoadModule::read()) return true; TaskScheduler::request(this); return true; } Surface* PngLoader::bitmap() { this->done(); return ImageLoader::bitmap(); }