/** * **imagemagick** - ImageMagick is a powerful, open-source software suite for creating, editing, converting, and manipulating images in over 200 formats. Ideal for web developers, graphic designers, and researchers, it offers versatile tools for image processing, including batch processing, format conversion, and complex image transformations. * * @domain `imagemagick.org` * @programs `animate`, `compare`, `composite`, `conjure`, `convert`, ... (+11 more) * @version `7.1.1.27` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install imagemagick.org` * @homepage https://imagemagick.org/index.php * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.imagemagickorg * console.log(pkg.name) // "imagemagick" * console.log(pkg.description) // "ImageMagick is a powerful, open-source software..." * console.log(pkg.programs) // ["animate", "compare", ...] * console.log(pkg.versions[0]) // "7.1.1.27" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/imagemagick-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const imagemagickorgPackage: { /** * The display name of this package. */ name: 'imagemagick'; /** * The canonical domain name for this package. */ domain: 'imagemagick.org'; /** * Brief description of what this package does. */ description: 'ImageMagick is a powerful, open-source software suite for creating, editing, converting, and manipulating images in over 200 formats. Ideal for web developers, graphic designers, and researchers, it offers versatile tools for image processing, including batch processing, format conversion, and complex image transformations.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/imagemagick.org/package.yml'; homepageUrl: 'https://imagemagick.org/index.php'; githubUrl: 'https://github.com/ImageMagick/ImageMagick'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install imagemagick.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +imagemagick.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install imagemagick.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['animate', 'compare', 'composite', 'conjure', 'convert', 'display', 'identify', 'import', 'magick', 'magick-script', 'Magick++-config', 'MagickCore-config', 'MagickWand-config', 'mogrify', 'montage', 'stream']; companions: readonly []; dependencies: readonly []; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['7.1.1.27', '7.1.1.12', '7.1.0.61']; aliases: readonly [] }; export type ImagemagickorgPackage = typeof imagemagickorgPackage