Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/imageio/imageio.c
Original file line number Diff line number Diff line change
Expand Up @@ -1294,6 +1294,10 @@ gboolean dt_imageio_export_with_flags(const dt_imgid_t imgid,

const int processed_width = floor(scale * pipe.processed_width);
const int processed_height = floor(scale * pipe.processed_height);
if(scale == max_scale && !thumbnail_export)
dt_control_log(_("export reduced to %dx%d because of memory restrictions"),
processed_width, processed_height);

const gboolean size_warning = processed_width < 1 || processed_height < 1;
dt_print(DT_DEBUG_IMAGEIO,
"[dt_imageio_export] %s%s imgid %d, %ix%i --> %ix%i (scale=%.4f, maxscale=%.4f)."
Expand Down
Loading