'Declaration
Public Function CreateGdPictureImageFromCMYKSep( _ ByVal CyanImageID As Integer, _ ByVal MagentaImageID As Integer, _ ByVal YellowImageID As Integer, _ ByVal BlackImageID As Integer _ ) As Integer
public int CreateGdPictureImageFromCMYKSep( int CyanImageID, int MagentaImageID, int YellowImageID, int BlackImageID )
public function CreateGdPictureImageFromCMYKSep( CyanImageID: Integer; MagentaImageID: Integer; YellowImageID: Integer; BlackImageID: Integer ): Integer;
public function CreateGdPictureImageFromCMYKSep( CyanImageID : int, MagentaImageID : int, YellowImageID : int, BlackImageID : int ) : int;
public: int CreateGdPictureImageFromCMYKSep( int CyanImageID, int MagentaImageID, int YellowImageID, int BlackImageID )
public: int CreateGdPictureImageFromCMYKSep( int CyanImageID, int MagentaImageID, int YellowImageID, int BlackImageID )
Parameters
- CyanImageID
- A unique image identifier of the GdPicture image representing the Cyan channel of the initial image to recompose.
- MagentaImageID
- A unique image identifier of the GdPicture image representing the Magenta channel of the initial image to recompose.
- YellowImageID
- A unique image identifier of the GdPicture image representing the Yellow channel of the initial image to recompose.
- BlackImageID
- A unique image identifier of the GdPicture image representing the Black channel of the initial image to recompose.
Return Value
A unique image identifier of the GdPicture image representing the newly created image. The returned value is non-zero if the image is successfully created. Please first of all use the GdPictureImaging.GetStat method to determine if this method has been successful.
Be aware that you need to release the image with the GdPictureImaging.ReleaseGdPictureImage method after being used.