rbuchberger / jekyll_picture_tag

Easy responsive images for Jekyll.
https://rbuchberger.github.io/jekyll_picture_tag/
BSD 3-Clause "New" or "Revised" License
622 stars 106 forks source link

Liquid Exception: No such file or directory - identify -ping #74

Closed Gio- closed 6 years ago

Gio- commented 8 years ago

Hi, first thanks for all your hard work. I've got problems during the configuration of your plugin. When I use

bundle exec jekyll build

this is the result

C:\Users\Gio\Documents\GitHub\uselessdevlog` [master ≡ +3 ~4 -3 !]> bundle exec jekyll build
Configuration file: C:/Users/Gio/Documents/GitHub/uselessdevlog/_config.yml
            Source: C:/Users/Gio/Documents/GitHub/uselessdevlog
       Destination: C:/Users/Gio/Documents/GitHub/uselessdevlog/_site
 Incremental build: disabled. Enable with --incremental
      Generating...
Generating coffee-550by364-40f0cb.jpg
      Liquid Exception: No such file or directory - identify -ping C:/Users/Gio/AppData/Local/Temp/mini_magick20160722-636-1o7pvo.jpg in index.html
                    done in 0.904 seconds.
 Auto-regeneration: disabled. Use --watch to enable.

Liquid Exception: No such file or directory - identify -ping C:/Users/Gio/AppData/Local/Temp/mini_magick20160722-636-1o7pvo.jpg in index.html

This is my _config.yml

# Picture Tag Config
picture:
  source: "/images/"
  output: "generated"
  markup: "picture"
  presets:
    main:
        ppi: [1, 1.5]
        attr:
            class: "img-responsive"
            itemprop: "image"
        source_medium:
            media: "(min-width: 992px)"
            width: "550"
        source_default: 
            width: "300"
    post:
        ppi: [1, 1.5]
        attr:
            class: "img-responsive"
            itemprop: "image"
        source_large:
            media: "(min-width: 1200px)"
            width: "750px"
        source_medium:
            media: "(min-width: 992px)"
            width: "550"
        source_default: 
            width: "300"

And my Gemfile

source 'https://rubygems.org'
gem 'github-pages', group: :jekyll_plugins 
gem 'jekyll-picture-tag', '~> 0.3.0', group: :jekyll_plugins

I've tried uninstalling/reinstalling image_magick but it doesn't work.

tmutton commented 7 years ago

cmd > convert -version

Do you get an image magick response?

basex commented 7 years ago

You probably don't have image magick installed.