Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 12.4.4
- **FIX**(layers): Improve exported layer resolution for scaled layers to avoid blurry output.

## 12.4.3
- **FIX**(state-manager): Update activeFilters and activeTuneAdjustments to directly use historyPointer.

Expand Down
2 changes: 1 addition & 1 deletion lib/core/models/layers/layer.dart
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ class Layer {

final dpr =
basePixelRatio ?? MediaQuery.maybeDevicePixelRatioOf(context) ?? 3.0;
final effectivePixelRatio = pixelRatio ?? (dpr * scale);
final effectivePixelRatio = pixelRatio ?? dpr;

final boundary = context.findRenderObject() as RenderRepaintBoundary;
final rawImage = await boundary.toImage(pixelRatio: effectivePixelRatio);
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: pro_image_editor
description: "A Flutter image editor: Seamlessly enhance your images with user-friendly editing features."
version: 12.4.3
version: 12.4.4
homepage: https://github.com/hm21/pro_image_editor/
repository: https://github.com/hm21/pro_image_editor/
documentation: https://github.com/hm21/pro_image_editor/
Expand Down
Loading