Dither Edges of gif. How to make them smooth? #746
Unanswered
hafizmabuzar
asked this question in
Help
Replies: 3 comments 4 replies
-
Can you also share your input images? |
Beta Was this translation helpful? Give feedback.
1 reply
-
And the actual output (previously I uploaded the smaller resized version). |
Beta Was this translation helpful? Give feedback.
0 replies
-
There is no solution for this. GIF only supports binary transparency. So any antialiasing would be negated by the quantization from 8-bit alpha to binary alpha. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I get jaggie edges of gif when I create it from png images. How can I make the edges smooth.
The png images have the smooth edges but the output gif has the dither edges.
Any solution will be highly appreciated.
Here is my code:
using (MagickImageCollection collection = new MagickImageCollection())
{
ImageOperations oImageOperations = new ImageOperations();
int DelayIndex = 10;
for (double k = 1; k <= MaxFrames; k++)
{
string ImgPath = TempDirPath + "/" + ecover_name + "_" + k.ToString() + ".png";
Beta Was this translation helpful? Give feedback.
All reactions