Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create Progressive JPEG. #40

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

yoshida-mediba
Copy link
Contributor

@kir0w
Copy link

kir0w commented Mar 16, 2017

When can we expect merge?)

@leafo
Copy link
Owner

leafo commented Jun 20, 2017

What's the difference between MagickGetImageInterlaceScheme and MagickGetInterlaceScheme.. We already have a way to set the interlace scheme, does this change how it works?

@Jijun
Copy link

Jijun commented Nov 13, 2020

What's the difference between MagickGetImageInterlaceScheme and MagickGetInterlaceScheme.. We already have a way to set the interlace scheme, does this change how it works?

as i test, MagickSetImageInterlaceScheme take no effect on interlace , but MagickSetInterlaceScheme can set interlace successful, i use
identify -verbose gogopher-1.jpg|grep Interlace

so i see in the ImageMagick source code the difference is :

WandExport MagickBooleanType MagickSetInterlaceScheme(MagickWand *wand,
const InterlaceType interlace_scheme)
{
wand->image_info->interlace=interlace_scheme;
}

WandExport MagickBooleanType MagickSetImageInterlaceScheme(MagickWand *wand,
const InterlaceType interlace)
{
wand->images->interlace=interlace;
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants