1
0
mirror of https://github.com/mosbth/cimage.git synced 2025-08-26 09:04:26 +02:00

Correcting internal details for save-as and response json which indicated wrong colors. Fix #62.

This commit is contained in:
Mikael Roos
2014-12-15 09:19:23 +01:00
parent e236757e5d
commit ece0be086c
5 changed files with 51 additions and 14 deletions

View File

@@ -0,0 +1,38 @@
<?php
// Include config for all testcases
include __DIR__ . "/config.php";
// The title of the test case
$title = "Testing option save-as - save image to another format";
// Provide a short description of the testcase.
$description = "";
// Use these images in the test
$images = array(
'car.png',
'ball24.png',
'wider.jpg',
);
// For each image, apply these testcases
$nc = "&nc"; //null; //&nc';
$testcase = array(
$nc . '&w=300&sa=jpg',
$nc . '&w=300&sa=png',
$nc . '&w=300&sa=gif',
$nc . '&w=300&sa=png&palette',
);
// Apply testcases and present results
include __DIR__ . "/template.php";