From 9b01a2991d52c3a9b82b21dbe041c59e4846ba78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Noco=C5=84?= Date: Fri, 6 Feb 2026 09:24:59 +0100 Subject: [PATCH 1/4] Added doc for image editor's gaussian blur --- .../image_editor/config/packages/image_editor.yaml | 1 + .../images/configure_image_editor.md | 11 +++++++++++ 2 files changed, 12 insertions(+) diff --git a/code_samples/back_office/image_editor/config/packages/image_editor.yaml b/code_samples/back_office/image_editor/config/packages/image_editor.yaml index 07b5dbc8d4..799d1db50d 100644 --- a/code_samples/back_office/image_editor/config/packages/image_editor.yaml +++ b/code_samples/back_office/image_editor/config/packages/image_editor.yaml @@ -38,3 +38,4 @@ ibexa: id: dot priority: 50 image_quality: 0.8 + gaussian_blur_strength: 0.05 diff --git a/docs/content_management/images/configure_image_editor.md b/docs/content_management/images/configure_image_editor.md index 10f362c1f3..06c678bd03 100644 --- a/docs/content_management/images/configure_image_editor.md +++ b/docs/content_management/images/configure_image_editor.md @@ -44,6 +44,17 @@ The default quality is 0.92: [[= include_file('code_samples/back_office/image_editor/config/packages/image_editor.yaml', 0, 4) =]] [[= include_file('code_samples/back_office/image_editor/config/packages/image_editor.yaml', 39, 40) =]] ``` +### Gaussian blur strength + +You can configure the gaussian blur strength applied during image optimization with the following configuration. + +The setting accepts values between 0 and 1, where higher values increase blur and reduce file size, while lower values maintain sharpness. +The default value is 0.05: + +``` yaml +[[= include_file('code_samples/back_office/image_editor/config/packages/image_editor.yaml', 0, 4) =]] [[= include_file('code_samples/back_office/image_editor/config/packages/image_editor.yaml', 40, 41) =]] +``` + ### Additional information Each image can be accompanied by additional information that isn't visible to the user. From 52dcff4eef674b38d3429e5aac8b371da438b0c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Noco=C5=84?= Date: Fri, 6 Feb 2026 09:36:11 +0100 Subject: [PATCH 2/4] Added release notes draft --- docs/release_notes/ibexa_dxp_v4.6.md | 8 ++++++++ docs/release_notes/ibexa_dxp_v5.0.md | 7 +++++++ 2 files changed, 15 insertions(+) diff --git a/docs/release_notes/ibexa_dxp_v4.6.md b/docs/release_notes/ibexa_dxp_v4.6.md index 912e4d30ea..d7737de11f 100644 --- a/docs/release_notes/ibexa_dxp_v4.6.md +++ b/docs/release_notes/ibexa_dxp_v4.6.md @@ -10,6 +10,14 @@ month_change: false
+ +### Gaussian Blur Configuration in Image Editor + +The [Image Editor]([[= user_doc =]]/image_management/edit_images/) now supports configurable gaussian blur strength for image optimization. +You can adjust the blur level to balance between file size reduction and image sharpness. +For more information, see [Configure image editor](configure_image_editor.md#gaussian-blur-strength). + + [[% set version = 'v4.6.27' %]] [[= release_note_entry_begin("Ibexa DXP " + version, '2026-02-03', ['Headless', 'Experience', 'Commerce']) =]] diff --git a/docs/release_notes/ibexa_dxp_v5.0.md b/docs/release_notes/ibexa_dxp_v5.0.md index 626e4bd349..b7892256c7 100644 --- a/docs/release_notes/ibexa_dxp_v5.0.md +++ b/docs/release_notes/ibexa_dxp_v5.0.md @@ -10,6 +10,13 @@ month_change: false
+ +### Gaussian Blur Configuration in Image Editor + +The [Image Editor]([[= user_doc =]]/image_management/edit_images/) now supports configurable gaussian blur strength for image optimization. +You can adjust the blur level to balance between file size reduction and image sharpness. +For more information, see [Configure image editor](configure_image_editor.md#gaussian-blur-strength). + [[% set version = 'v5.0.5' %]] [[= release_note_entry_begin("Ibexa DXP " + version, '2026-01-15', ['Headless', 'Experience', 'Commerce']) =]] From 12d2a9deda1ba0965b522c6dd51e35c6a2294e41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Noco=C5=84?= Date: Tue, 17 Feb 2026 09:02:15 +0100 Subject: [PATCH 3/4] Added review remark --- .gitignore | 12 ++++++++++++ .../images/configure_image_editor.md | 6 +++--- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 3868734b6a..0199c937e9 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,15 @@ auth.json .yarn yarn.lock docs/css/*.map +.cache +.devcontainer +.github +context +AGENTS.md +IMPLEMENTATION.md +PLAN.md +NOTES.md +list +logs/ +skills/ +notify-user.sh diff --git a/docs/content_management/images/configure_image_editor.md b/docs/content_management/images/configure_image_editor.md index 06c678bd03..7c41b62dd5 100644 --- a/docs/content_management/images/configure_image_editor.md +++ b/docs/content_management/images/configure_image_editor.md @@ -48,13 +48,13 @@ The default quality is 0.92: You can configure the gaussian blur strength applied during image optimization with the following configuration. -The setting accepts values between 0 and 1, where higher values increase blur and reduce file size, while lower values maintain sharpness. -The default value is 0.05: - ``` yaml [[= include_file('code_samples/back_office/image_editor/config/packages/image_editor.yaml', 0, 4) =]] [[= include_file('code_samples/back_office/image_editor/config/packages/image_editor.yaml', 40, 41) =]] ``` +The setting accepts values between 0 and 1, where higher values increase blur and reduce file size, while lower values maintain sharpness. +The default value is 0.05. + ### Additional information Each image can be accompanied by additional information that isn't visible to the user. From 127aeccfd7b83f2376d8d373690f585a738a2450 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Noco=C5=84?= Date: Thu, 19 Feb 2026 15:35:54 +0100 Subject: [PATCH 4/4] Added dedicated section --- docs/content_management/images/configure_image_editor.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/content_management/images/configure_image_editor.md b/docs/content_management/images/configure_image_editor.md index 7c41b62dd5..3bcd0a09d9 100644 --- a/docs/content_management/images/configure_image_editor.md +++ b/docs/content_management/images/configure_image_editor.md @@ -33,7 +33,9 @@ The following example sets the aspect ratio values and label names for buttons u [[= include_file('code_samples/back_office/image_editor/config/packages/image_editor.yaml', 0, 36) =]] ``` -### Image quality +### Image file size optimization + +#### Image quality You can configure the quality of the images modified in the Image Editor with the following configuration. @@ -44,7 +46,7 @@ The default quality is 0.92: [[= include_file('code_samples/back_office/image_editor/config/packages/image_editor.yaml', 0, 4) =]] [[= include_file('code_samples/back_office/image_editor/config/packages/image_editor.yaml', 39, 40) =]] ``` -### Gaussian blur strength +#### Gaussian blur strength You can configure the gaussian blur strength applied during image optimization with the following configuration.