Giter VIP home page Giter VIP logo

pico-resize's Introduction

Image Resize plugin for Pico CMS

PicoCMS plugin for automatically creating resized images.

Use this plugin when having big, original-sized images that you want to automatically scale down to a given box size.

Requirements

Either ImageMagick or GD needs to be installed, and the respective PHP extension imagick or gd is required to run this plugin. Do not forget to activate in php.ini by having a line like:

extension=imagick

or

extension=gd

Installation / Configuration

Copy ImageResize.php to the plugins directory of your Pico installation and configure the plugin in your config/config.yml file:

ImageResize:
    folder: .resized
    quality: 85

Usage

In your Twig templates, you can use the new resize(asset, width, height) function to automatically create resized images of your pictures:

<img src="{{ resize('assets/example.jpg', 200, 150) }}"/>

This will create the image and replace the URL linking to the resized version.

Note that the initial creation will take some time on load, but it will be cached in a file afterwards.

You can omit either height or width if you dont want to limit both (the plugin will preserve the ratio).

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.