J4.x

Adaptiva bilder för Mediahanteraren

From Joomla! Documentation

Revision as of 07:08, 27 August 2018 by Sgagner (talk | contribs) (Created page with "Auto-beskärning av bilder i förhållande till bildskärmen på besökarens enhet.")
Other languages:
Deutsch • ‎English • ‎Nederlands • ‎français • ‎português do Brasil • ‎svenska • ‎Ελληνικά
GSoC 2018
Adaptiva bilder för nya Mediahanteraren
Dokumentation
Gsoc2016.png
Joomla! 
4.x

Introduktion

Huvudsyftet med detta tillägg är att bevara det viktiga meddelandet kopplat till bilden genom att ge användaren ett sätt att lägga till ett fokusområde för bilden. Bilder görs responsiva med hjälp av detta tillägg. Tillägget stöds av pluginer för media-action och innehåll.

Funktioner

  • Tillhandahåller en fokuseditor för att ta in fokusinformation från författaren på ett mer intuitivt sätt.
  • Auto-beskärning av bilder i förhållande till bildskärmen på besökarens enhet.
  • The cropping is done around the focus area selected by the author.
  • Author can select particular widths for which the images need to be cropped.
  • Author can select different focus for different devices.
  • Author can also remove all the resized images and the previous set focus points for a particular image from the focus editor.
  • If an author deletes the original image from the media manager, its resized image and the focus points would be deleted too.

Note: To Enable this Extention, Administrator has to enable two plugins from the plugin's extension manager:

  1. Media-Action: Smart Crop Plugin
  2. Content: Adaptive Image Plugin

Cropped Images

Original image with focus area
Resized Images for focus area mentioned

How to set focus points for a particular image?

  1. Go to the Media Manager, locate the image you want to add focus points to.
    NMM edit images-en.png
  2. Edit that image, you would be redirected to the new window, go to Smart Crop tab.
    Edit image-en.png
  3. Now Select the focus area of the image, with the help of editor provided.
    Smart Crop Tab-en.png
  4. After setting up the area, Save and Close the editor, you would be redirected back to the media manager.
    Parameters-en.png
  5. Now just add that image normally to your article. Bash...!! Your image got responsive while preserving the important section of that image.

Adding Multiple Focus

  1. Follow the basic step to set the initial focus points.
  2. Now in the upper right corner of the plugin you will find a drop-down menu with different widths mentioned.
    Different Focus-en.png
  3. Select a width and then select its focus point in the focus editor.
  4. Save and close the tab.

Adding custom widths

  1. Go to plugin's extension manager, look for Media-Action Smart Crop.
    Plugin extension manager-en.png
  2. Now add new widths over here, and save the plugin.
    Add Widths-en.png
    Enter Widths-en.png
  3. You would be noticing those widths in the Smart Crop tab.
    Custom widths-en.png

Deleting the previous set focus point

Note: This will delete all the previously saved focus and resized images of the original image generated by the plugin.

  1. Go to the Smart Crop tab in the Edit Image.
  2. In the lower right of the screen there is a delete focus button.
  3. After deleting the previous focus reload the page or hit cancel to go back to media-manager
Delete Focus Button-en.png

Workflow

This Extension consists of two independent plugins.

Smart Crop Plugin

This is a Media-Action plugin. It is providing the UI for managing the focus points. It takes in the focus points from the user and saves it into the file storage by sending an AJAX request to the controller AdaptiveImageController.php. Finally, when the author is satisfied with the focus he hit Save and Close which raises another AJAX request, this time new images are generated with an efficient algorithm and save them into the directory /media/focus. Nomenclature of resized images is (resize image width)_(base64 encoded full path of the image).

Adaptive Image Plugin

This is a Content plugin. If the focus of a particular image is being set in the currently opened article then this plugin will add the <picture> element to that image and all the associated resized-images will be appended to it from /media/focus/. This plugin will also delete all the resized images if the original image is not found (or deleted).

Extending Extension

Changing storage for focus points

Currently, The focus area is being saved in JSON format in the file storage(JSONFocusStore Driver). This can be changed to any other storage by making a new driver class into Joomla\CMS\AdaptiveImage\.The driver class should implement Joomla\CMS\AdaptiveImage\FocusStoreInterface interface. JSONFocusStore driver class is implementing Joomla\CMS\AdaptiveImage\FocusStoreInterface. FocusStoreInterface has following methods declared:

1. setFocus($dataFocus, $width, $imgSrc)

This method stores/updates the focus area into the storage.
  • $dataFocus It has the dimensions of the focus area. It is an array with keys box-left, box-top, box-width, box-height.
  • $width It is the size of image for which the focus area is being stored.
  • $imgSrc It is the full path of the image corresponding to the focus area.

2. getFocus($imgSrc, $width)

This method returns the focus area of the image. It return all the focus area associated with the image
  • $imgSrc It is the full path of the image corresponding to the focus area.
  • $width(optional) If the user want to take in the value of focus area for particular width then, it may be mentioned.

3. deleteFocus($imgSrc)

It deletes all the focus associated with the image.
  • $imgSrc It is the full path of the image corresponding to the focus area.