We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4a126e commit c909025Copy full SHA for c909025
src/imageio/imageio.c
@@ -1294,6 +1294,10 @@ gboolean dt_imageio_export_with_flags(const dt_imgid_t imgid,
1294
1295
const int processed_width = floor(scale * pipe.processed_width);
1296
const int processed_height = floor(scale * pipe.processed_height);
1297
+ if(scale == max_scale)
1298
+ dt_control_log(_("export reduced to %dx%d because of memory restrictions"),
1299
+ processed_width, processed_height);
1300
+
1301
const gboolean size_warning = processed_width < 1 || processed_height < 1;
1302
dt_print(DT_DEBUG_IMAGEIO,
1303
"[dt_imageio_export] %s%s imgid %d, %ix%i --> %ix%i (scale=%.4f, maxscale=%.4f)."
0 commit comments