-
I've been trying to figure out this but i'm not sure why it's happening. This is a PNG image and I will need to allow users to crop their images but i faced this and it seems an issue but i'm not sure. This screen record is captured here https://hm21.github.io/pro_image_editor/ |
Beta Was this translation helpful? Give feedback.
Answered by
hm21
Jul 15, 2024
Replies: 1 comment 3 replies
-
The problem here is that the default output format is ProImageEditor.memory(
bytes!,
configs: const ProImageEditorConfigs(
imageGenerationConfigs: ImageGeneratioConfigs(
outputFormat: OutputFormat.png,
),
),
), |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
osmanyz
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The problem here is that the default output format is
JPEG
. You can change it toPNG
as below, which should resolve the problem.