!c99Shell v. 1.0 pre-release build #16!

Software: Apache/2.2.3 (CentOS). PHP/5.1.6 

uname -a: Linux mx-ll-110-164-51-230.static.3bb.co.th 2.6.18-194.el5PAE #1 SMP Fri Apr 2 15:37:44
EDT 2010 i686
 

uid=48(apache) gid=48(apache) groups=48(apache) 

Safe-mode: OFF (not secure)

/usr/share/doc/ImageMagick-6.2.8/www/api/   drwxr-xr-x
Free 51.98 GB of 127.8 GB (40.67%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     magick-wand.html (17.17 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
ImageMagick: MagickWand, C API for ImageMagick: Magick Wand Methods
[ImageMagick]
[sponsor]

ClearMagickWand() clears resources associated with the wand.

The format of the ClearMagickWand method is:

  void ClearMagickWand(MagickWand *wand)

A description of each parameter follows:

wand

The magick wand.

CloneMagickWand() makes an exact copy of the specified wand.

The format of the CloneMagickWand method is:

  MagickWand *CloneMagickWand(const MagickWand *wand)

A description of each parameter follows:

wand

The magick wand.

DestroyMagickWand() deallocates memory associated with an MagickWand.

The format of the DestroyMagickWand method is:

  MagickWand *DestroyMagickWand(MagickWand *wand)

A description of each parameter follows:

wand

The magick wand.

IsMagickWand() returns MagickTrue if the wand is verified as a magick wand.

The format of the IsMagickWand method is:

  MagickBooleanType IsMagickWand(const MagickWand *wand)

A description of each parameter follows:

wand

The magick wand.

MagickClearException() clear any exceptions associated with the wand.

The format of the MagickClearException method is:

  MagickBooleanType MagickClearException(MagickWand *wand)

A description of each parameter follows:

wand

The magick wand.

MagickGetIteratorIndex() returns the position of the iterator in the image list.

The format of the MagickGetIteratorIndex method is:

  MagickBooleanType MagickGetIteratorIndex(MagickWand *wand)

A description of each parameter follows:

wand

The magick wand.

MagickQueryConfigureOption() returns the value associated with the specified configure option.

The format of the MagickQueryConfigureOption function is:

  char *MagickQueryConfigureOption(const char *option)

A description of each parameter follows:

option

The option name.

MagickQueryConfigureOptions() returns any configure options that match the specified pattern (e.g. "*" for all). Options include NAME, VERSION, LIB_VERSION, etc.

The format of the MagickQueryConfigureOptions function is:

  char **MagickQueryConfigureOptions(const char *pattern,
    unsigned long *number_options)

A description of each parameter follows:

pattern

Specifies a pointer to a text string containing a pattern.

number_options

Returns the number of configure options in the list.

MagickQueryFontMetrics() returns a 7 element array representing the following font metrics:

      Element Description
      -------------------------------------------------
      0 character width
      1 character height
      2 ascender
      3 descender
      4 text width
      5 text height
      6 maximum horizontal advance

The format of the MagickQueryFontMetrics method is:

  double *MagickQueryFontMetrics(MagickWand *wand,
    const DrawingWand *drawing_wand,const char *text)

A description of each parameter follows:

wand

The Magick wand.

drawing_wand

The drawing wand.

text

The text.

MagickQueryMultilineFontMetrics() returns a 7 element array representing the following font metrics:

      Element Description
      -------------------------------------------------
      0 character width
      1 character height
      2 ascender
      3 descender
      4 text width
      5 text height
      6 maximum horizontal advance

This method is like MagickQueryFontMetrics() but it returns the maximum text width and height for multiple lines of text.

The format of the MagickQueryFontMetrics method is:

  double *MagickQueryMultilineFontMetrics(MagickWand *wand,
    const DrawingWand *drawing_wand,const char *text)

A description of each parameter follows:

wand

The Magick wand.

drawing_wand

The drawing wand.

text

The text.

MagickQueryFonts() returns any font that match the specified pattern (e.g. "*" for all).

The format of the MagickQueryFonts function is:

  char **MagickQueryFonts(const char *pattern,unsigned long *number_fonts)

A description of each parameter follows:

pattern

Specifies a pointer to a text string containing a pattern.

number_fonts

Returns the number of fonts in the list.

MagickQueryFonts() returns any image formats that match the specified pattern (e.g. "*" for all).

The format of the MagickQueryFonts function is:

  char **MagickQueryFonts(const char *pattern,
    unsigned long *number_formats)

A description of each parameter follows:

pattern

Specifies a pointer to a text string containing a pattern.

number_formats

This integer returns the number of image formats in the list.

MagickRelinquishMemory() relinquishes memory resources returned by such methods as MagickIdentifyImage(), MagickGetException(), etc.

The format of the MagickRelinquishMemory method is:

  void *MagickRelinquishMemory(void *resource)

A description of each parameter follows:

resource

Relinquish the memory associated with this resource.

MagickResetIterator() resets the wand iterator. Use it in conjunction with MagickNextImage() to iterate over all the images in a wand container.

The format of the MagickResetIterator method is:

  void MagickResetIterator(MagickWand *wand)

A description of each parameter follows:

wand

The magick wand.

MagickSetFirstIterator() sets the wand iterator to the first image.

The format of the MagickSetFirstIterator method is:

  void MagickSetFirstIterator(MagickWand *wand)

A description of each parameter follows:

wand

The magick wand.

MagickSetIteratorIndex() set the iterator to the position in the image list specified with the index parameter.

The format of the MagickSetIteratorIndex method is:

  MagickBooleanType MagickSetIteratorIndex(MagickWand *wand,
    const long index)

A description of each parameter follows:

wand

The magick wand.

index

The scene number.

MagickSetLastIterator() sets the wand iterator to the last image.

The format of the MagickSetLastIterator method is:

  void MagickSetLastIterator(MagickWand *wand)

A description of each parameter follows:

wand

The magick wand.

MagickWandGenesis() initializes the MagickWand environment.

The format of the MaickWandGenesis method is:

  void MaickWandGenesis(void)

MagickWandTerminus() initializes the MagickWand environment.

The format of the MaickWandTerminus method is:

  void MaickWandTerminus(void)

NewMagickWand() returns a wand required for all other methods in the API.

The format of the NewMagickWand method is:

  MagickWand *NewMagickWand(void)

NewMagickWandWithImage() returns a wand with an image.

The format of the NewMagickWandWithImage method is:

  MagickWand NewMagickWandWithImage(const Image *image)

A description of each parameter follows:

image

The image.

 
© 1999-2006 ImageMagick Studio LLC

:: Command execute ::

Enter:
 
Select:
 

:: Shadow's tricks :D ::

Useful Commands
 
Warning. Kernel may be alerted using higher levels
Kernel Info:

:: Preddy's tricks :D ::

Php Safe-Mode Bypass (Read Files)

File:

eg: /etc/passwd

Php Safe-Mode Bypass (List Directories):

Dir:

eg: /etc/

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c999shell v. 1.0 pre-release build #16 Modded by Shadow & Preddy | RootShell Security Group | r57 c99 shell | Generation time: 0.0105 ]--