1
0
mirror of https://github.com/mosbth/cimage.git synced 2025-08-31 03:19:48 +02:00

adding phpdoc fix #48

This commit is contained in:
Mikael Roos
2015-03-04 11:00:36 +01:00
parent 1de4830c96
commit e9037bc0ed
146 changed files with 42719 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
<?php
// Include config for all testcases
include __DIR__ . "/config.php";
// The title of the test case
$angle = 90;
$title = "Testing img for issue 36 - rotateBefore, rotateAfter <?=$angle?>";
// Provide a short description of the testcase.
$description = "";
// Use these images in the test
$images = array(
'kodim08.png',
'kodim04.png',
);
// For each image, apply these testcases
$testcase = array(
"&rb=$angle&nc",
"&rb=$angle&nc&w=200",
"&rb=$angle&nc&h=200",
"&rb=$angle&nc&w=200&h=200&cf",
"&ra=$angle&nc",
"&ra=$angle&nc&w=200",
"&ra=$angle&nc&h=200",
"&ra=$angle&nc&w=200&h=200&cf",
);
// Applu testcases and present results
include __DIR__ . "/template.php";