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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
|
// This may look like C code, but it is really -*- C++ -*-
//
// Copyright Bob Friesenhahn, 1999, 2000, 2003
// Copyright Dirk Lemstra 2014
//
// Test STL readImages and writeImages functions and test
// image format when reading/writing.
//
#include <Magick++.h>
#include <string>
#include <iostream>
#include <list>
#include <vector>
using namespace std;
using namespace Magick;
int main(int,char ** argv)
{
int
failures=0;
string
srcdir("");
// Initialize ImageMagick install location for Windows
InitializeMagick(*argv);
try
{
if (getenv("SRCDIR") != 0)
srcdir=getenv("SRCDIR");
//
// Test readImages and writeImages
//
list<Image> first;
readImages(&first,srcdir + "test_image_anim.miff");
if (first.size() != 6)
{
++failures;
cout << "Line: " << __LINE__
<< " Read images failed, number of frames is "
<< first.size()
<< " rather than 6 as expected." << endl;
}
writeImages(first.begin(),first.end(),"testmagick_anim_out.miff");
list<Image> second;
readImages(&second,"testmagick_anim_out.miff");
list<Image>::iterator firstIter = first.begin();
list<Image>::iterator secondIter = second.begin();
while (firstIter != first.end() && secondIter != second.end())
{
if (firstIter->scene() != secondIter->scene())
{
++failures;
cout << "Line: " << __LINE__
<< " Image scene: " << secondIter->scene()
<< " is not equal to original "
<< firstIter->scene()
<< endl;
}
if (firstIter->rows() != secondIter->rows())
{
++failures;
cout << "Line: " << __LINE__
<< " Image rows " << secondIter->rows()
<< " are not equal to original "
<< firstIter->rows()
<< endl;
}
if (firstIter->columns() != secondIter->columns())
{
++failures;
cout << "Line: " << __LINE__
<< " Image columns " << secondIter->columns()
<< " are not equal to original "
<< firstIter->rows()
<< endl;
}
firstIter++;
secondIter++;
}
Image third(*first.begin());
third.write("testmagick_anim_out");
Image fourth;
fourth.read("testmagick_anim_out");
if (fourth.magick() != "MIFF")
{
++failures;
cout << "Line: " << __LINE__
<< " Image magick: " << fourth.magick()
<< " is not equal to MIFF"
<< endl;
}
third.write("testmagick_anim_out.ico");
fourth.read("testmagick_anim_out.ico");
if (fourth.magick() != "ICO")
{
++failures;
cout << "Line: " << __LINE__
<< " Image magick: " << fourth.magick()
<< " is not equal to ICO"
<< endl;
}
third.magick("BMP");
third.write("testmagick_anim_out.ico");
fourth.read("testmagick_anim_out.ico");
if (fourth.magick() != "BMP")
{
++failures;
cout << "Line: " << __LINE__
<< " Image magick: " << fourth.magick()
<< " is not equal to BMP"
<< endl;
}
third.write("PDB:testmagick_anim_out.ico");
fourth.read("testmagick_anim_out.ico");
if (fourth.magick() != "PDB")
{
++failures;
cout << "Line: " << __LINE__
<< " Image magick: " << fourth.magick()
<< " is not equal to PDB"
<< endl;
}
third.magick("");
third.write("testmagick_anim_out.ico");
fourth.read("testmagick_anim_out.ico");
if (fourth.magick() != "ICO")
{
++failures;
cout << "Line: " << __LINE__
<< " Image magick: " << fourth.magick()
<< " is not equal to ICO"
<< endl;
}
}
catch(Exception &error_)
{
cout << "Caught exception: " << error_.what() << endl;
return 1;
}
catch(exception &error_)
{
cout << "Caught exception: " << error_.what() << endl;
return 1;
}
if (failures)
{
cout << failures << " failures" << endl;
return 1;
}
return 0;
}
|