我試圖打印由捲曲返回的動態下載圖像,如圖:FWRITE動態大小
char *raw_image = malloc(1024);
raw_image = doCurl("GET", img_url, NULL, NULL);
printf("Content-Type: image/png\n\n");
fwrite(raw_image, sizeof(raw_image), 20000, stdout);
如果我做的尺寸比20000小 - 圖像被削減。我怎樣才能使這個數字動態?我不想寫入文件 - 標準輸出是最好的選擇。
任何幫助表示讚賞。