This file is indexed.

/usr/share/doc/php5-imagick/examples/watermark.php is in php5-imagick 3.2.0~rc1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php

/*
	Simple example of watermarking
*/

/* Create Imagick object */
$Imagick = new Imagick();

/* Create a drawing object and set the font size */
$ImagickDraw = new ImagickDraw();
$ImagickDraw->setFontSize( 50 );

/* Read image into object*/
$Imagick->readImage( '/tmp/test.jpg' );

/* Seek the place for the text */
$ImagickDraw->setGravity( Imagick::GRAVITY_CENTER );

/* Write the text on the image */
$Imagick->annotateImage( $ImagickDraw, 4, 20, 0, "Test Watermark" );

/* Set format to png */
$Imagick->setImageFormat( 'png' );

/* Output */
header( "Content-Type: image/{$Imagick->getImageFormat()}" );
echo $Imagick->getImageBlob();

?>