JonasKruckenberg / imagetools

Load and transform images using a toolbox :toolbox: of custom import directives!

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Cropping support

ThePeach opened this issue · comments

Hello, and thank you very much for this library.
I've been using it quite a bit, and I feel I'm currently missing one bit of functionality: cropping.
Two of the most basic examples I can provide are:

  1. being able to generate fixed-sized images for social media purposes.
  2. being able to generate a cropped-up version of an image to create thumbnails (this is sometimes a non-problem since CSS helps a lot).

Thanks!

Hey @ThePeach you can pass widht and height with the w and h parameters.

For example:

import foo_bar from "images/foobar.jpeg?w=100&h=100"

after which you can use foo_bar as you image's source.

Closing this as completed. Thanks @mathiasbosman for responding so helpfully 👍🏻