0

我正在尝试构建一种算法,该算法从 URL 下载 JPEG 图像并将其作为 PNG 保存到磁盘中。为了实现这一点,我使用了 libCurl,用于下载,以及 GdkPixbuff 库用于其他东西(对于项目限制,我坚持使用 Gdk 库)

这里实现数据的代码:

CURL     *curl;
GError   *error = NULL;

struct context ctx;
memset(&ctx, 0, sizeof(struct context));

curl = curl_easy_init();

if(curl) {
    curl_easy_setopt(curl, CURLOPT_URL, *file_to_download*);

    curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, writeDownloadedPic);
    curl_easy_setopt(curl, CURLOPT_WRITEDATA, &ctx);

    curl_easy_perform(curl);
    curl_easy_cleanup(curl);
}

其中上下文定义如下:

struct context
{
    unsigned char *data;
    int allocation_size;
    int length;
};

并以这种方式writeDownloadedPic :

size_t writeDownloadedPic (void *buffer, size_t size, size_t nmemb, void *userp)
{
   struct context *ctx = (struct context *) userp;

   if(ctx->data ==  NULL)
   {
    ctx->allocation_size = 31014;
    if((ctx->data = (unsigned char *) malloc(ctx->allocation_size)) == NULL)
    {
        fprintf(stderr, "malloc(%d) failed\n", ctx->allocation_size);
        return -1;
    }
   }

   if(ctx->length + nmemb > ctx->allocation_size)
   {
    fprintf(stderr, "full\n");
    return -1;
   }

   memcpy(ctx->data + ctx->length, buffer, nmemb);
   ctx->length += nmemb;

   return nmemb;

}

最后我尝试以这种方式保存图像:

GdkPixbuf   *pixbuf;
pixbuf = gdk_pixbuf_new_from_data(ctx.data,
                         GDK_COLORSPACE_RGB,
                         FALSE, 8,
                         222, 310,
                         222 * 3,
                         NULL, NULL);

gdk_pixbuf_save(pixbuf, "src/pics/image.png", "png", &error, NULL);

但是,我得到的是一张带有一堆随机像素的missy png图像,根本没有形成。现在,我确定了图像、宽度和高度的尺寸,但我认为我对计算为宽度* 3的RowStride做了一些混乱。

我哪里错了?

4

1 回答 1

0

gdk_pixbuf_new_from_data不支持JPEG格式。您必须先将 JPEG 保存到文件中,然后使用gdk_pixbuf_new_from_file. 或者创建一个GInputStream周围ctx.data并使用gdk_pixbuf_new_from_stream.

于 2012-10-04T13:54:02.627 回答