From a1bae5e7959909f088c0a7b3a4ce8b5850897a9f Mon Sep 17 00:00:00 2001 From: Araozu Date: Fri, 17 Nov 2023 15:49:43 -0500 Subject: [PATCH] [BE][Scans] Disable cert. rotation --- backend/src/controller/scans/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/src/controller/scans/mod.rs b/backend/src/controller/scans/mod.rs index ed8612d..a1959f0 100644 --- a/backend/src/controller/scans/mod.rs +++ b/backend/src/controller/scans/mod.rs @@ -351,8 +351,8 @@ fn convert_to_pdf(image_path: &PathBuf, output_path: &PathBuf) -> Result<(), Str .arg("0.05") .arg("-quality") .arg("75%") - .arg("-rotate") - .arg("270") + // .arg("-rotate") + // .arg("270") .arg(image_path) .arg(output_path) .spawn();