Lines:
1 to 25 of 25
<?php /** * The Image Class. * * @package Jetpack */ /* class Jetpack_Photon_Image */ /* function Jetpack_Photon_Image::__construct() – Constructs the image object. */ /* function Jetpack_Photon_Image::resize() – Resizes the image to given size. */ /* function Jetpack_Photon_Image::get_size() – Generates size data for usage in $metadata[’sizes’];. */ /* function Jetpack_Photon_Image::reset_to_original() – Resets the image to it’s original dimensions. */ /* function Jetpack_Photon_Image::get_filename() – Return the basename filename. If the image has been resized, including the resizing params for Jetpack CDN. */ /* function Jetpack_Photon_Image::get_raw_filename() – Return the absolute filename. If the image has been resized, including the resizing params for Jetpack CDN. */ /* function Jetpack_Photon_Image::get_width() – Returns current image width. Either original, or after resize. */ /* function Jetpack_Photon_Image::get_height() – Returns current image height. Either original, or after resize. */ /* function Jetpack_Photon_Image::get_mime_type() – Returns image mime type. */ /* function Jetpack_Photon_Image::is_resized() – Checks the resize status of the image. */ /* function Jetpack_Photon_Image::get_resized_filename() – Get filename with proper args for the Photon service. */ /* function Jetpack_Photon_Image::image_resize_dimensions() – Get resize dimensions used for the Jetpack CDN service. */ /* function Jetpack_Photon_Image::set_width_height() – Sets proper width and height from dimensions. */