All Projects → andismith → Grunt Responsive Images

andismith / Grunt Responsive Images

Licence: mit
Produce images at different sizes for responsive websites.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Grunt Responsive Images

srcset.sh
A command line script that generates multiple responsive versions of an image at width breakpoints -- 320,480,640,768,960,1024,1280,1440 pixels wide -- that match common Mobile and widescreen desktop/laptop viewports using Imagemagick's convert utility and outputs the needed <img/> tag
Stars: ✭ 20 (-97.25%)
Mutual labels:  imagemagick, responsive-images
converjon
An advanced image conversion server and command line tool.
Stars: ✭ 52 (-92.84%)
Mutual labels:  imagemagick, responsive-images
Kc3kai
Kantai Collection Game Viewer and Tools
Stars: ✭ 387 (-46.69%)
Mutual labels:  grunt
Image processing
High-level image processing wrapper for libvips and ImageMagick/GraphicsMagick
Stars: ✭ 600 (-17.36%)
Mutual labels:  imagemagick
Gulp Responsive
gulp-responsive generates images at different sizes
Stars: ✭ 509 (-29.89%)
Mutual labels:  responsive-images
Assemble
Community
Stars: ✭ 3,995 (+450.28%)
Mutual labels:  grunt
Time Grunt
Display the elapsed execution time of grunt tasks
Stars: ✭ 531 (-26.86%)
Mutual labels:  grunt
Magick
Magic, madness, heaven, sin
Stars: ✭ 362 (-50.14%)
Mutual labels:  imagemagick
Gifify
😻 Convert any video file to an optimized animated GIF.
Stars: ✭ 5,792 (+697.8%)
Mutual labels:  imagemagick
Cloudinary npm
Cloudinary NPM for node.js integration
Stars: ✭ 450 (-38.02%)
Mutual labels:  responsive-images
Libvips
A fast image processing library with low memory needs.
Stars: ✭ 6,094 (+739.39%)
Mutual labels:  imagemagick
Ngx small light
Dynamic Image Transformation Module For nginx.
Stars: ✭ 447 (-38.43%)
Mutual labels:  imagemagick
Govips
A lightning fast image processing and resizing library for Go
Stars: ✭ 442 (-39.12%)
Mutual labels:  imagemagick
Rmagick
Ruby bindings for ImageMagick
Stars: ✭ 576 (-20.66%)
Mutual labels:  imagemagick
Lein template descjop
A Leiningen template(Clojure/ClojureScript Project) for Web based desktop application with Electron (atom-shell).
Stars: ✭ 394 (-45.73%)
Mutual labels:  grunt
Slop
slop (Select Operation) is an application that queries for a selection from the user and prints the region to stdout.
Stars: ✭ 639 (-11.98%)
Mutual labels:  imagemagick
Vips
Go Bindings for Vips (a super fast image processor)
Stars: ✭ 380 (-47.66%)
Mutual labels:  imagemagick
Mogrify
Image processing in Elixir (ImageMagick command line wrapper)
Stars: ✭ 442 (-39.12%)
Mutual labels:  imagemagick
Jekyll picture tag
Easy responsive images for Jekyll.
Stars: ✭ 515 (-29.06%)
Mutual labels:  responsive-images
Php Qrcode
A QR Code generator for PHP7.4+
Stars: ✭ 685 (-5.65%)
Mutual labels:  imagemagick

grunt-responsive-images

NPM version Downloads Per Month Downloads Total

Produces images at different sizes

Please note - this project is no longer being maintained

Getting Started

This plugin requires Grunt ~0.4.5.

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-responsive-images --save-dev

You also need to install either GraphicsMagick or Imagemagick CLI tools.

Installing GraphicsMagick (Recommended)

If you're a Mac user and have Homebrew installed, simply type:

brew install GraphicsMagick

Alternatively, you can try:

$ sudo add-apt-repository ppa:dhor/myway
$ sudo apt-get update
$ sudo apt-get install graphicsmagick

Otherwise, please visit the GraphicsMagick downloads page.

Or installing ImageMagick

If you're a Mac user and have Homebrew installed, simply type:

brew install ImageMagick

Otherwise, please visit the ImageMagick downloads page.

Once both the plugin and graphics engine have been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-responsive-images');

Back For More?

Check the release history at the bottom of this readme for what's changed!

The "responsive_images" task

Overview

Learn more about Grunt Responsive Images on the accompanying website.

The responsive_images task will take your source image and create images at different resolutions for use with PictureFill or with srcset.

A demo of both srcset and PictureFill using Grunt Responsive Images is available here.

In your project's Gruntfile, add a section named responsive_images to the data object passed into grunt.initConfig().

grunt.initConfig({
  responsive_images: {
    options: {
      // Task-specific options go here.
    },
    your_target: {
      // Target-specific file lists and/or options go here.
    },
  },
})

Options

  • options.engine
    Type: String
    Default: gm
    Available Values: gm || im
    Version: 0.1.0 and above

    Chooses which graphics engine to use when resizing images. To use GraphicsMagick, set this to gm. To use ImageMagick, set this to im. You'll need the relevant engine installed.

  • options.concurrency
    Type: Integer
    Default: 1
    Version: X.X.X and above

    Specifies the number of concurrent graphics engine processes. A reasonable choice is one fewer than the number of cpu cores.

  • options.newFilesOnly
    Type: Boolean
    Default: true
    Version: 0.1.4 and above

    Only process files that do not already exist in the destination folder. Note this is a rather basic check for whether to process files, it does not check timestamps or file data currently. This option is useful for making the task fast during development.

  • options.sizes
    Type: Array
    Default: [{ name: 'small', width: 320 },{ name: 'medium', width: 640 },{ name: 'large', width: 1024 }]
    Version: 0.0.1 and above

    An array of objects containing the sizes and settings we want to resize our image to.

    For example:

sizes: [
  {
    name: "small",
    width: 480
  },
  {
    name: "large",
    width: 1024
  }
]

The settings available are as follows:

  • width
    Type: Number or String
    Version: 0.0.1 and above

    width can either be in pixels or percentages. Please note both width and height need to use the same units, so if width is a percentage value and you wish to specify a height this must also be a percentage.

    The following values are examples of valid widths: 1, '1px', '1', '1%', '1.1%', '11.11111%', '111111%'
    The following values are examples of invalid values for width: -1, 1.1, 1.1px, '1.1.1%', '1a', 'a1'

  • height
    Type: Number or String
    Version: 0.0.1 and above

    height can either be in pixels or percentages. Please note both width and height need to use the same units, so if height is a percentage value and you wish to specify a width this must also be a percentage.
    height accepts the same values as width.

  • name
    Type: String
    Default: none
    Version: 0.0.1 and above

    If a name is specified, then the file will be suffixed with this name. e.g. my-image-small.jpg
    If a name is not specified, then the file will be suffixed with the width and/or height specified in the size options. e.g. my-image-320x240.jpg

  • rename
    Type: Boolean
    Default: true
    Version: 0.1.3 and above

    If rename is set to false, then at this size the file will not be renamed, but will instead keep its original name. Suffixes will still be applied.

  • quality
    Type: Number
    Default: 100
    Available Values: 1 - 100
    Version: 0.0.4 and above

    JPEG format only. The quality of the image, 100 being the highest quality and 1 being the lowest.

    Please note: In versions below 0.1.0, quality is specified between 0 and 1.

  • suffix
    Type: String
    Default: none
    Version: 0.0.1 and above

    Use suffix for retina graphic filenames. e.g. my-image-320x240_x2.jpg

  • aspectRatio
    Type: Boolean
    Default: true
    Available Values: true || false
    Version: 0.1.0 and above

    Maintains the aspect ratio of the image. The width and the height are treated as maximum values, so the image is expanded or contracted to fit the width and height value while maintaining the aspect ratio of the image. If aspectRatio is set to false and both width and height are specified, the image will be cropped.

  • gravity
    Type: String
    Default: Center
    Available Values: NorthWest || North || NorthEast || West || Center || East || SouthWest || South || SouthEast
    Version: 0.1.0 and above

    gravity determines the placement of the image within the crop. The default is Center. This setting only applies if an image is cropped. Cropping occurs when the aspectRatio is set to false and both width and height are specified.

  • upscale
    Type: Boolean
    Default: false
    Available Values: true || false
    Version: 0.1.0 and above.

    If the requested size is larger than the source image should the image be upscaled?

  • sharpen
    Type: Object
    Default: null
    Version: 0.1.7 and above

    Sharpen allows you to pass an object with 'sigma' and 'radius' options. The most important factor is the sigma. As it is the real control of the sharpening operation. Sigma can be any floating point value from .1 for practically no sharpening to 3 or more for sever sharpening. 0.5 to 1.0 work well. Radius is the limit of the effect as is the threshold. Radius is only in integer units as that is the way the algorithm works, the larger it is the slower it is. But it should be at a minimum 1 or better still 2 times the sigma. For example:

    sharpen: {
        sigma: 1,
        radius: 2
    }
    
  • filter
    Type: String
    Default: Either Mitchell if the image is being enlarged, or supports a palette or matte channel. Otherwise Lanczos.
    Available Values: Point || Box || Triangle || Hermite || Hanning || Hamming || Blackman || Gaussian || Quadratic || Cubic || Catrom || Mitchell || Lanczos || Bessel || Sinc
    Version: 0.1.1 and above.

    filter effects the resizing operation of an image. Use Point for pixel art. Read more about filters in the ImageMagick documentation.

  • sample
    Type: Boolean
    Default: false
    Available Values: true || false
    Version: 0.1.6 and above.

    Sometimes using 'sample' on PNGs may produce the same output with smaller filesizes, sometimes the output will be worse. Use this option to fine tune your images to use 'sample' instead of 'resize' where it is possible to do so.

  • density
    Type: Number
    Default: 72
    Version: 0.1.7 and above

    density effects the output resolution, in dpi, of an image. The default is 72 dpi.

  • options.separator
    Type: String
    Default: -
    Version: 0.0.1 and above

    The character used to separate the image filename from the size name.

  • options.units
    Type: Object
    Default: { percentage: 'pc', pixel: '', multiply: 'x' }
    Version: 0.1.0 and above

    'units' contains the strings that should be used to represent the size units in an image 'name' when name has not been specified. e.g. my-image-50pcx50pc.jpg

    • pixel Type: String
      Default: ``
      Version: 0.1.0 and above

    • percentage Type: String
      Default: pc
      Version: 0.1.0 and above

      Please note % cannot be used as a valid character in an image name.

    • multiply Type: String
      Default: x
      Version: 0.1.0 and above

  • options.customIn Type: String
    Default: null
    Version: 0.1.6 and above
    Type: Array
    Default: null
    Version: 0.1.8 and above

Custom input arguments as specified at https://github.com/aheckmann/gm#custom-arguments See example below.

  • options.customOut Type: String
    Default: null
    Version: 0.1.6 and above
    Type: Array
    Default: null
    Version: 0.1.8 and above

Custom output arguments as specified at https://github.com/aheckmann/gm#custom-arguments See example below.

Usage Examples

Default Options

Using the default options will produce 3 responsive images - one at 320px wide, one at 640px wide and one at 1024px wide.

grunt.initConfig({
  responsive_images: {
    myTask: {
      options: {},
      files: {
        'dest/mario-yoshi.jpg': 'test/assets/mario-yoshi.jpg'
      }
    }
  }
})

Custom Options

In this example, we specify our own image sizes, including a retina graphic. We also specify our files with a wildcard.

grunt.initConfig({
  responsive_images: {
    myTask: {
      options: {
        sizes: [{
          width: 320,
          height: 240
        },{
          name: 'large',
          width: 640
        },{
          name: "large",
          width: 1024,
          suffix: "_x2",
          quality: 60
        }]
      },
      files: [{
        expand: true,
        src: ['assets/**.{jpg,gif,png}'],
        cwd: 'test/',
        dest: 'tmp/'
      }]
    }
  },
})

Custom Destination

If you would like to output each image size to a different directory, you can do so with custom_dest. For example:

grunt.initConfig({
  responsive_images: {
    myTask: {
      options: {
        sizes: [{
          width: 320,
        },{
          width: 640,
        },{
          width: 1024,
        }]
      },
      files: [{
        expand: true,
        src: ['**.{jpg,gif,png}'],
        cwd: 'test/assets/custom_dest/',
        custom_dest: 'tmp/custom_dest/{%= width %}/'
      }]
    }
  },
})

You can use {%= width %}, {%= height %}, {%= name %} or {%= path %} as a delimiter.

Please note that {%= width %}, {%= height %} and {%= name %} are only available if they are set in the object literal that you use to set each generated size option.

The {%= path %} value contains additional directory structure from the current working directory (cwd in files array) to each image. Using {%= path %} allows any complex directory structure to persist into the rendered responsive images directory.

NOTE: for grunt-responsive-images to pick up images within subdirectories you must set your files.src property to **/*.{jpg,gif,png}.

Custom Input/Output options

The options customIn and customOut pass additional arguments to the graphics engine. Refer to your graphics engine documentation for a full list of the possibilities. customIn places arguments after the convert command and before any other arguments, while customOut places arguments after any other arguments, but before the output file name.

grunt.initConfig({
  responsive_images: {
    myTask: {
      options: {
        customIn: ['-interlace', 'line'], // produce progressive images
        customOut: [
            // draw a copywrite notice in the bottom-right corner
            '-gravity', 'SouthEast', '-font', 'Arial', '-pointsize', '12',
            '-fill', '#445', '-draw', 'text 5,2 \'\u00A9 copywrite\'',
            '-fill', '#ffe', '-draw', 'text 6,3 \'\u00A9 copywrite\''
        ]
      },
      files: {
        'dest/mario-yoshi.jpg': 'test/assets/mario-yoshi.jpg'
      }
    }
  }
})

With gm this produces the command-line invocation:

gm "convert" "-interlace" "line" "-quality" "100" "test/assets/mario-yoshi.jpg" "-resize" "320x" "-gravity" "SouthEast" "-font" "Arial" "-pointsize" "12" "-fill" "#445" "-draw" "text 5,2 '© copyright'" "-fill" "#ffe" "-draw" "text 6,3 '© copyright'" "dest/mario-yoshi.jpg"

As Seen On...

The following sites and libraries are using Grunt Responsive Images (because they ROCK!):

And the inspiration for grunt-responsive-videos.

Also, the plugin grunt-responsive-images-extender is a fitting add-on to leverage your images in srcset and sizes attributes of your img tags.

Please let us know if your live site or library uses Grunt Responsive Images. We'll add our favorites.

FAQ

  • I'm receiving a fatal error: spawn ENOENT error. Any ideas?

    Ensure either Graphicsmagick or Imagemagick tools are installed, and that you are using the correct engine in your Grunt file options. The default engine is Graphicsmagick. If you'd rather use Imagemagick, the engine value should be changed to im as documented above.

    Try uninstalling and reinstalling Graphicsmagick or Imagemagick if you are having issues.

  • How do I only process recently added images?

    Use the option newFilesOnly to only produce files that do not exist.

Release History

1.10.0

  • Updated dependencies
  • Version bump

0.1.9

  • Fixes to customIn and customOut to make it work for multiple arguments - and a fix for the emit location for customOut.
  • Added concurrency option for parallel invocation of the graphics engine

0.1.8

  • Grunt version update
  • Resizing should now respect original image size. Output resolution setable

0.1.7

  • Speed increase of up to five times faster.
  • Added 'sharpen' option
  • Where we're going, we don't need roads.

0.1.6

  • Added 'sample' option

0.1.5

  • Test files are no longer take up disk space.
  • Improved error handling for isAnimated.
  • Fixed Travis-CI build dependencies
  • Files can change format
  • Come with me if you want to live

0.1.4

  • Skip images with newFilesOnly. Set this option to true and Grunt Responsive Images will check if the image has already been created before creating a new version. This is only a basic check, it doesn't check for changes in the file - only whether the file does or does not exist. A future version will also check the timestamp.
  • Every option (except width and height) can be defined globally. This includes:
    • aspectRatio
    • gravity
    • quality
    • rename
    • separator
    • units
    • upscale
  • Don't want to create images for larger sizes if you're not upscaling? Just set createNoScaledImage to true. And yes, you can do this globally too.
  • Animated images are now skipped. This is due to ImageMagick failing on animated GIFs and GraphicsMagick adding Megabytes to their size. If you really want animated files, you can turn it back on with tryAnimated. Unfortunately, resizing animated images is just too difficult a problem for a command line tool.
  • Do you want to build a snowman?

0.1.3

  • Stop files being renamed with the new 'rename': false option.
  • BEE-DO! BEE-DO!

0.1.2

  • Quality can now be defined globally.
  • If no files are found, the task will now silently fail.
  • Bug fixes.
  • Ipsy upsy daisy dooooo.

0.1.1

  • Added filters, useful for changing the resizing operation.
  • 100% more dinosaur.

0.1.0

  • Added GraphicsMagick! GraphicsMagick is now the default imaging library, although it easy to change to ImageMagick if you'd prefer.
  • Added percentage re-sizing! Specify percentage sizes as strings, like this: '42%'. A percentage dimension cannot be mixed with a pixel dimension as the graphics engines do not allow it, sorry.
  • Keep aspect ratios, so your images are no longer squished or cropped by default.
  • More control over cropping images with gravity.
  • Customise units! Added pixel (default: ''), percentage (default: 'pc') and multiply (default: 'x') units.
  • Now handles missing configuration target more gracefully.
  • Re-write of quite a lot of the plugin itself!
  • Added nice JSDoc comments :)
  • Removed height values from default. If you used the default settings, you'll need to update your configuration.
  • Added Flux Capacitor.

0.0.7

  • Added path value to custom_dest to allow for persistent directory structures.
  • Started list of sites using Grunt Responsive Images plugin (contact @andismith to add yours).
  • Said goodbye to the dolphins.

0.0.5

  • Fixed issue with custom_dest names including a prefixed separator.
  • Fixed issue with tallies including a prefixed separator.

0.0.4

  • Fixed issue with quality setting not producing correct quality output.
  • Reduced the amount of logging when running the task.
  • Allowed images of different sizes to be uploaded to different directories with custom_dest.

0.0.3

  • Bug fixes for Srcset and PictureFill demos

0.0.2

  • Added srcset and PictureFill demo

0.0.1

  • Initial Commit

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.

Thanks to all the contributors who've submitted a pull request; and everyone who's raised issues or contributed to issue resolution.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].