Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2
3namespace MediaWiki\Hook;
4
5use File;
6use MediaTransformOutput;
7use TransformationalImageHandler;
8
9/**
10 * This is a hook handler interface, see docs/Hooks.md.
11 * Use the hook name "BitmapHandlerTransform" to register handlers implementing this interface.
12 *
13 * @stable to implement
14 * @ingroup Hooks
15 */
16interface BitmapHandlerTransformHook {
17    /**
18     * This hook is called before a file is transformed, giving extensions the
19     * possibility to transform it themselves.
20     *
21     * @since 1.35
22     *
23     * @param TransformationalImageHandler $handler
24     * @param File $image
25     * @param array &$scalerParams Array with scaler parameters
26     * @param null|MediaTransformOutput &$mto
27     * @return bool|void True or no return value to continue or false to abort
28     */
29    public function onBitmapHandlerTransform( $handler, $image, &$scalerParams,
30        &$mto
31    );
32}