Beispiel #1
0
void dt_control_export(int max_width, int max_height, int format_index, int storage_index, gboolean high_quality, char *style)
{
  dt_job_t j;
  dt_control_export_job_init(&j, max_width, max_height, format_index, storage_index, high_quality, style);
  dt_control_add_job(darktable.control, &j);
}
Beispiel #2
0
void dt_control_export()
{
  dt_job_t j;
  dt_control_export_job_init(&j);
  dt_control_add_job(darktable.control, &j);
}