gpt4 book ai didi

c - 使用 SDL_image 保存 PNG 时出现段错误

转载 作者:行者123 更新时间:2023-11-30 19:25:55 26 4
gpt4 key购买 nike

我必须使用 SDL2 和 SLD2_image 在 C 中创建 OCR。

在 macOS 上一切正常。但是,在 Linux 上运行我的程序时,我在保存 PNG 文件时遇到了段错误。

我尝试更新我使用的库(SDL2、SDL2_image 和 libpng),但只能保存黑色图像并在 IMG_QUIT() 或 SDL_QUIT() 上出现段错误

所以我的代码在 IMG_SavePNG(surface, "textmono.png")

处崩溃

我也尝试过

SDL_SaveBMP(surface, "textmono.bmp")

并得到相同的结果...

这是我的代码:

void BlackAndWhite(SDL_Surface* surface){
Uint32 *pixels = (Uint32 *)surface->pixels;
for(int i = 0; i < surface->h; i++){
for(int j = 0; j < surface->w;j++){
Uint8 red = 0;
Uint8 green = 0;
Uint8 blue = 0;
SDL_GetRGB(pixels[i*surface->w + j], surface->format, &red, &green, &blue);
Uint8 black = (red + green + blue)/3;
pixels[i*surface->w + j] = SDL_MapRGB(surface->format, black, black, black);
}
}
IMG_SavePNG(surface, "textbw.png");
}

这是我加载 png 文件的方法:

int loadimage(void){
if(SDL_Init(SDL_INIT_VIDEO)==-1)
{
printf("SDL_Init: %s\n", SDL_GetError());
return 1;
}
IMG_Init(~0);
SDL_Surface *surface = IMG_Load("text.png");
if(surface != NULL){
...
}
else{
printf("Failed ! %s\n", IMG_GetError());
}
return 0;
}

GDB 给了我这个:

Thread 1 "main" received signal SIGSEGV, Segmentation fault.
0x00007ffff7cc947d in _int_malloc (av=av@entry=0x7ffff7e16c40 <main_arena>,
bytes=bytes@entry=1304) at malloc.c:3880
3880 malloc.c: Aucun fichier ou dossier de ce type.
(gdb) where
0x00007ffff7cc947d in _int_malloc (
av=av@entry=0x7ffff7e16c40 <main_arena>, bytes=bytes@entry=1304)
at malloc.c:3880
0x00007ffff7ccacaa in __GI___libc_malloc (bytes=1304) at malloc.c:3073
0x00007ffff3894e74 in png_malloc_warn ()
from /lib/x86_64-linux-gnu/libpng16.so.16
0x00007ffff388ec41 in ?? () from /lib/x86_64-linux-gnu/libpng16.so.16
0x00007ffff38ab88e in png_create_write_struct_2 ()
from /lib/x86_64-linux-gnu/libpng16.so.16
0x00007ffff38ab931 in png_create_write_struct ()
from /lib/x86_64-linux-gnu/libpng16.so.16
0x00007ffff7e47d88 in IMG_SavePNG_RW_libpng (surface=0x5555558c9f00,
dst=0x5555557fca40, freedst=1) at IMG_png.c:544
0x000055555555531f in BlackAndWhite (surface=0x5555558c9f00) at main.c:60
0x00005555555554d0 in loadimage () at main.c:38
0x0000555555555116 in main () at main.c:21

编辑:AddressSanitizer 告诉我,

处存在堆缓冲区溢出
SDL_GetRGB(pixels[i*surface->w + j], surface->format, &red, &green, &blue)

删除这部分代码确实解决了问题,所以我想我找到了问题,但我真的不明白这行有什么问题......

最佳答案

GDB gives me this:

内部 mallocfree 通常(99.9% 的时间)发生崩溃意味着堆损坏(例如,堆溢出)分配的内存,释放两次,释放未分配的内存,等等)。

此类错误很难发现,尤其是当您使用第 3 方库并且不太了解其要求时。

幸运的是,有一些工具可以使查找和理解此类错误变得更加容易:Valgrindaddress sanitizer .

使用其中之一,错误可能会很明显。如果不是,您可以使用您使用的工具的输出来编辑您的问题,您可能会得到更好的答案。

关于c - 使用 SDL_image 保存 PNG 时出现段错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58247073/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com