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
|
// This may look like C code, but it is really -*- C++ -*-
//
// Copyright Bob Friesenhahn, 1999, 2000, 2001, 2002
//
// Implementation of ImageRef
//
// This is an internal implementation class.
//
#define MAGICK_IMPLEMENTATION
#include "Magick++/ImageRef.h"
#include "Magick++/Exception.h"
#include "Magick++/Options.h"
// Construct with an image and default options
Magick::ImageRef::ImageRef ( MagickLib::Image * image_ )
: _image(image_),
_options(new Options),
_id(-1),
_refCount(1),
_mutexLock()
{
}
// Construct with an image and options
// Inserts Image* in image, but copies Options into image.
Magick::ImageRef::ImageRef ( MagickLib::Image * image_,
const Options * options_ )
: _image(image_),
_options(0),
_id(-1),
_refCount(1),
_mutexLock()
{
_options = new Options( *options_ );
}
// Default constructor
Magick::ImageRef::ImageRef ( void )
: _image(0),
_options(new Options),
_id(-1),
_refCount(1),
_mutexLock()
{
// Allocate default image
_image = AllocateImage( _options->imageInfo() );
// Test for error and throw exception (like throwImageException())
throwException(_image->exception);
}
// Destructor
Magick::ImageRef::~ImageRef( void )
{
// Unregister image (if still registered)
if( _id > -1 )
{
DeleteMagickRegistry( _id );
_id=-1;
}
// Deallocate image
if ( _image )
{
DestroyImageList( _image );
_image = 0;
}
// Deallocate image options
delete _options;
_options = 0;
}
// Assign image to reference
void Magick::ImageRef::image ( MagickLib::Image * image_ )
{
if(_image)
DestroyImageList( _image );
_image = image_;
}
// Assign options to reference
void Magick::ImageRef::options ( Magick::Options * options_ )
{
delete _options;
_options = options_;
}
// Assign registration id to reference
void Magick::ImageRef::id ( const long id_ )
{
if( _id > -1 )
DeleteMagickRegistry( _id );
_id = id_;
}
|