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

Support ImageMagick v7 #263

Closed
ReagentX opened this issue May 24, 2024 · 0 comments
Closed

Support ImageMagick v7 #263

ReagentX opened this issue May 24, 2024 · 0 comments
Assignees
Labels
crate: cli Related to the CLI crate enhancement Requires updating an existing feature

Comments

@ReagentX
Copy link
Owner

ReagentX commented May 24, 2024

Per the docs:

The "magick" command is the new primary command of the Shell API, replacing the old "convert" command.

imessage-exporter does not support this at the moment, but it should:

impl Converter {
/// Determine the converter type for the current shell environment
pub fn determine() -> Option<Converter> {
if exists("sips") {
return Some(Converter::Sips);
}
if exists("convert") {
return Some(Converter::Imagemagick);
}
eprintln!("No HEIC converter found, attachments will not be converted!");
None
}
}

@ReagentX ReagentX added crate: cli Related to the CLI crate enhancement Requires updating an existing feature labels May 24, 2024
@ReagentX ReagentX self-assigned this May 24, 2024
@ReagentX ReagentX moved this from Todo to In Progress in 1.9: Beach Strawberry Jun 4, 2024
ReagentX added a commit that referenced this issue Jun 4, 2024
@ReagentX ReagentX closed this as completed Jun 4, 2024
@github-project-automation github-project-automation bot moved this from In Progress to Done in 1.9: Beach Strawberry Jun 4, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
crate: cli Related to the CLI crate enhancement Requires updating an existing feature
Projects
No open projects
Development

No branches or pull requests

1 participant