Home | History | Annotate | Download | only in tests

Lines Matching full:blob

23 // A derived Blob class to exercise updateNoCopy()
24 class myBlob : public Blob
29 : Blob()
41 cout << "Failed to stream into blob!" << endl;
45 // Insert data into blob
47 Blob::NewAllocator );
78 // Read raw data from file into BLOB
101 // Construct Magick++ Blob
102 Blob blob(static_cast<const unsigned char*>(blobData), blobLen);
107 // Construct with blob data only
108 Image image( blob );
121 // Construct with image geometry and blob data
122 Image image( blob, Geometry(148,99));
135 // Construct default image, and then read in blob data
137 image.read( blob );
150 // Construct default image, and then read in blob data with
153 image.read( blob, Geometry(148,99) );
169 Blob blob;
174 image.write( &blob );
178 Image image(blob);
194 Blob blob;
198 writeImages( first.begin(), first.end(), &blob, true );
201 // Test constructing a BLOB from a derived class
210 // Read raw data from file into BLOB
219 myBlob blob( in );
222 Image image( blob );