From b353a76588a41a3a6a9e5086dc65310e7e6ff5cb Mon Sep 17 00:00:00 2001 From: Bastian Dehn Date: Sun, 4 Feb 2024 19:50:36 +0100 Subject: [PATCH] convert to pnm --- src/kds_s2000w_image_converter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kds_s2000w_image_converter.c b/src/kds_s2000w_image_converter.c index 7607b8d..1a369bb 100644 --- a/src/kds_s2000w_image_converter.c +++ b/src/kds_s2000w_image_converter.c @@ -37,7 +37,7 @@ void kds_s2000w_convert_jpg_to_pnm(const char* filename) exception = AcquireExceptionInfo(); image_info = CloneImageInfo(NULL); strcpy(image_info->filename, "output_test.jpg"); - WriteImages(image_info, input_image, "output.jpg", exception); + WriteImages(image_info, input_image, "output.pnm", exception); DestroyImageInfo(image_info); DestroyImage(input_image); -- 2.39.5