Skip to content

thatleeguy/Kirby-tinyThumb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 

Repository files navigation

Kirby tinyThumb

It compresses thumbnails with TinyPNG generated with Kirby CMS.

Instructions

1. Copy the files

Copy the plugin files to site/plugins.

Download cacert.pem and add it to site/plugins/tiny-thumb/.

2. Add your API key

Add c::set('tinypngKey', 'Your_TinyPNG_API_Key'); to your config file with your tinypng API key.

3. tinyThumb() instead of thumb()

Replace your thumb() function with the tinyThumb() function, like this:

echo tinyThumb( $page->image( '1.png' ), array( 'width' => 300 ) );

You can get data from it, with the same functions as the thumb() like this:

$thumb = tinyThumb( $page->image( '1.png' ), array( 'width' => 300 ) );
echo $thumb->width();

Get data from the original thumb()

You can get data from the original thumb() like this:

$thumb = tinyThumb( $page->image( '1.png' ), array( 'width' => 300 ) )->thumb();
echo $thumb->filename();

Get data from the original image()

You can get data from the original image() like this:

$thumb = tinyThumb( $page->image( '1.png' ), array( 'width' => 300 ) )->image();
echo $image->filename();

Other information

1. Arguments

It uses the same arguments as the built in thumb() function.

2. When file could not be compressed

When a file is not compressed, it will try again the next time the page loads. It will fallback to show the original thumbnail if the compressed one could not be generated. That way it will always show an image to the visitor.

3. When file is already compressed

If a page loads and the thumbnail has already been compressed, it will not be compressed again on each page load, only the first time.

It simply check if the compressed file already exist or not.

4. thumbs.filename and thumbs folder path

If the thumbs.filename or the thumbs folder path is changed in the config, this plugin will respect your setting and work with them.

Version 1

Initial release

Future features (maybe)

  1. Prefix config to change "-min" that is added to compressed files
  2. Add a similar plugin for images, tinyImage()

Needed

  1. Bug reports with detailed information how to reproduce the issue
  2. Code or suggestions on code improvements
  3. Requested features
  4. Feedback

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages