- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在尝试使用 C 读取 PNG 文件以用于 OpenCL。 OpenCL 不支持 24 位 RGB 图像,因此我需要将数据从 RGB 扩展到 RGBA。我使用的 PNG 都是 24 位的,因此可以避免头痛。
我曾尝试使用 png_set_filler 和 png_set_add_alpha,我认为它们大致相同来解决问题,但它们都会导致此错误:
libpng error: sequential row overflow
这里是完整的函数:
int LoadPNG24(unsigned char ** pixelBuffer, const char *filename, unsigned int *width, unsigned int *height) {
png_byte header[8];
//open file as binary
FILE *fp = fopen(filename, "rb");
if (!fp) {
return TEXTURE_LOAD_ERROR;
}
//read the header
fread(header, 1, 8, fp);
//test if png
int is_png = !png_sig_cmp(header, 0, 8);
if (!is_png) {
fclose(fp);
return TEXTURE_LOAD_ERROR;
}
//create png struct
png_structp png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
if (!png_ptr) {
fclose(fp);
return (TEXTURE_LOAD_ERROR);
}
//create png info struct
png_infop info_ptr = png_create_info_struct(png_ptr);
if (!info_ptr) {
png_destroy_read_struct(&png_ptr, (png_infopp) NULL, (png_infopp) NULL);
fclose(fp);
return (TEXTURE_LOAD_ERROR);
}
//create png info struct
png_infop end_info = png_create_info_struct(png_ptr);
if (!end_info) {
png_destroy_read_struct(&png_ptr, &info_ptr, (png_infopp) NULL);
fclose(fp);
return (TEXTURE_LOAD_ERROR);
}
//png error stuff, not sure libpng man suggests this.
if (setjmp(png_jmpbuf(png_ptr))) {
png_destroy_read_struct(&png_ptr, &info_ptr, &end_info);
fclose(fp);
return (TEXTURE_LOAD_ERROR);
}
//init png reading
png_init_io(png_ptr, fp);
//let libpng know you already read the first 8 bytes
png_set_sig_bytes(png_ptr, 8);
// read all the info up to the image data
png_read_info(png_ptr, info_ptr);
//variables to pass to get info
int bit_depth, color_type;
png_uint_32 twidth, theight;
// get info about png
png_get_IHDR(png_ptr, info_ptr, &twidth, &theight, &bit_depth, &color_type, NULL, NULL, NULL);
// Update the png info struct.
png_read_update_info(png_ptr, info_ptr);
// Row size in bytes.
//png_size_t rowbytes = png_get_rowbytes(png_ptr, info_ptr);
png_size_t rowbytes = sizeof(png_byte) * 4 * twidth;
// Allocate the image_data as a big block, to be given to opencl
png_byte *image_data = (png_byte *)malloc(sizeof(png_byte) * 4 * twidth * theight);
if (!image_data) {
//clean up memory and close stuff
png_destroy_read_struct(&png_ptr, &info_ptr, &end_info);
fclose(fp);
return TEXTURE_LOAD_ERROR;
}
//row_pointers is for pointing to image_data for reading the png with libpng
png_bytep *row_pointers = (png_bytep *)malloc(sizeof(png_bytep) * theight);
if (!row_pointers) {
//clean up memory and close stuff
png_destroy_read_struct(&png_ptr, &info_ptr, &end_info);
free(image_data);
fclose(fp);
return TEXTURE_LOAD_ERROR;
}
// set the individual row_pointers to point at the correct offsets of image_data
for (int i = 0; i < theight; ++i) {
row_pointers[i] = image_data + (i * rowbytes);
}
// PNG Transforms
if (color_type == PNG_COLOR_TYPE_RGB) {
//png_set_filler(png_ptr, 0xff, PNG_FILLER_AFTER);
png_set_add_alpha(png_ptr, 0xff, PNG_FILLER_AFTER);
}
//read the png into image_data through row_pointers
png_read_image(png_ptr, row_pointers);
//clean up memory and close stuff
png_destroy_read_struct(&png_ptr, &info_ptr, &end_info);
free(row_pointers);
fclose(fp);
//update width and height based on png info
(*pixelBuffer) = image_data;
if (width) {*width = twidth;}
if (height) {*height = theight;}
return TEXTURE_LOAD_OK;
}
谢谢。
最佳答案
好的,更多的谷歌搜索提供了答案。
添加
png_read_update_info(png_ptr, info_ptr);
转换后更新了信息指针和行指针并修复了问题。
我会在这里留下答案,希望能帮助其他人解决这个问题。
关于c++ - libpng png_set_add_alpha | png_set_filler 错误 : sequential row overflow,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9364344/
我有一个带 LCD 显示屏的微 Controller 。我需要显示几个 PNG 图像。由于微 Controller 的性能有限,显示图像的时间过长。 我做了基准测试并检测到大部分时间花在 libpng
我有一个应用程序依赖于过多的库(不是我们都依赖)。大多数这些库都是通过包管理器安装的。对于那些不是的,我重新编译了它们,但我仍然得到相同的 libpng 不兼容错误。 libpng warning:
我通过安装 matplotlib pip install matplotlib 当我尝试用它保存 png 时,我得到了 Application was compiled with png.h from
我收到一封来自 Google Play 商店的电子邮件,内容涉及“Google Play 警告:您正在使用易受攻击的 libpng 版本”。 电子邮件包含以下信息 - https://support.
我正在尝试将 libpng-1.16.6 构建为 VS 2010 的静态库。我想我已经排除了 makefile 语法问题、文件系统权限和不正确的 LIB/LIBPATH 环境变量。 makefile
我从 https://github.com/sourabhv/FlapPyBird 安装了 FlapPyBird 存储库.我已经安装了 libpng,但是当我尝试使用 python flappy.py
我从 https://github.com/sourabhv/FlapPyBird 安装了 FlapPyBird 存储库.我已经安装了 libpng,但是当我尝试使用 python flappy.py
我从 libpng 文档中获取了以下代码:此外,如果它有任何用处,此代码位于从基于 gtkmm 的应用程序调用的类中。 FILE *fp = fopen(path.c_str(), "rb"); if
我的应用程序用于使用 wifi 进行实时视频流和录制(音频和视频)。使用以下依赖项: repositories { maven { url 'https://raw.github.com/iParse
好的,所以在 photoshop 中,我创建了一个具有透明背景和一些文本的 8 位彩色图像。然后我创建了一个具有透明背景和一些文本的 16 位颜色的图像。 当我右键单击两个图像并转到属性时,它显示两个
我似乎无法让 libpng 将其数据转储到我的结构中。我不知道我做错了什么。我正在尝试翻转字节,因为 PNG 是自上而下存储的,我需要自下而上的数据。 首先我的结构看起来像: typedef unio
我正在尝试在 Mac OS X Yosemite 上使用 libpng 编译一个项目。 我得到了错误: Undefined symbols for architecture x86_64: "_p
我正在尝试掌握 libpng 中的基本功能。为此,我使用了 this snippet并适应我自己的例子。 int x, y; png_byte color_type = PNG_COLOR_TYPE_
我在尝试编译时遇到以下错误.... Undefined symbols for architecture x86_64: "_png_sig_cmp", referenced from: Render
我已按照苔丝二号的搭建说明进行操作 Github 我成功地使用 NDK 构建了 tess-two 并导入了库我正在尝试运行在同一存储库中提供的测试应用程序,但每当应用程序启动时,它都会出现以下异常:一
我已经通读了文档和示例,但在我的实现过程中,我无法做到正确。 问题:使用以下代码,写入的.png 将透明区域转换为纯白色。我试图将生成的 .png 覆盖在另一个带有颜色的图像之上,但由于不透明,底层图
下载源代码并将配置更改为 Release Library x64 并点击构建。它构建得很好,并且通过了一些测试。 然后我在我的项目中引用了 libpng(和 zlib 以避免一些任意错误),它构建得很
OS: centos-release-6-10.el6.centos.12.3.x86_64 Node version: v8.11.1 NPM version: 5.6.0 包.json { "
我正在使用 libpng 读取图像。图像本身有 4 个 channel (rgba), channel 有 8 位。我想将其作为灰度图像读取,最好是黑白图像(每像素 1 位),但即使是每像素 8 位也
我是 iPhone 开发新手,尝试使用 libpng 加载 PNG,但在尝试了这么多之后无法将其添加到我的项目中。将 libpng 添加到我的项目时出现以下错误。请帮助我如何消除这些错误: “_def
我是一名优秀的程序员,十分优秀!