![]() |
![]() |
![]() |
![]() |
[
About ImageMagick
Command-line Tools
Processing
Options
Usage
Program Interfaces
MagickWand
MagickCore
PerlMagick
Magick++
Architecture
] [ Install from Source Unix Windows Binary Releases Unix Mac OS X Windows Resources ] [ Download ] [ Site Map Links ] [ Sponsors Wischmop ![]() |
AcquireMagickMemory() returns a pointer to a block of memory at least size bytes suitably aligned for any use. The format of the AcquireMagickMemory method is: void *AcquireMagickMemory(const size_t size) A description of each parameter follows: sizeThe size of the memory in bytes to allocate. AcquireQuantumMemory() returns a pointer to a block of memory at least count * quantum bytes suitably aligned for any use. The format of the AcquireQuantumMemory method is: void *AcquireQuantumMemory(const size_t count,const size_t quantum) A description of each parameter follows: countThe number of quantum elements to allocate. quantumThe number of bytes in each quantum. CopyMagickMemory() copies size bytes from memory area source to the destination. Copying between objects that overlap will take place correctly. It returns destination. The format of the CopyMagickMemory method is: void *CopyMagickMemory(void *destination,const void *source, const size_t size) A description of each parameter follows: destinationThe destination. sourceThe source. sizeThe size of the memory in bytes to allocate. RelinquishMagickMemory() zeros memory that has been allocated, frees it for reuse. The format of the RelinquishMagickMemory method is: void *RelinquishMagickMemory(void *memory) A description of each parameter follows: memoryA pointer to a block of memory to free for reuse. ResetMagickMemory() fills the first size bytes of the memory area pointed to by memory with the constant byte c. The format of the ResetMagickMemory method is: void *ResetMagickMemory(void *memory,int byte,const size_t size) A description of each parameter follows: memoryA pointer to a memory allocation. byteSet the memory to this value. sizeSize of the memory to reset. ResizeMagickMemory() changes the size of the memory and returns a pointer to the (possibly moved) block. The contents will be unchanged up to the lesser of the new and old sizes. The format of the ResizeMagickMemory method is: void *ResizeMagickMemory(void *memory,const size_t size) A description of each parameter follows: memoryA pointer to a memory allocation. sizeThe new size of the allocated memory. ResizeQuantumMemory() changes the size of the memory and returns a pointer to the (possibly moved) block. The contents will be unchanged up to the lesser of the new and old sizes. The format of the ResizeQuantumMemory method is: void *ResizeQuantumMemory(void *memory,const size_t count, const size_t quantum) A description of each parameter follows: memoryA pointer to a memory allocation. countThe number of quantum elements to allocate. quantumThe number of bytes in each quantum. |