Example #1
0
 public void SetTile( GD brush )
 {
     GDImport.gdImageSetTile( this.Handle, brush.GetHandle() );
 }
Example #2
0
 public void CopyRotated( GD src, double dstX, double dstY, int srcX, int srcY, int srcW, int srcH, int angle )
 {
     GDImport.gdImageCopyRotated( this.Handle, src.GetHandle().Handle, dstX, dstY, srcX, srcY, srcW, srcH, angle );
 }
Example #3
0
 public void PaletteCopy( GD src )
 {
     GDImport.gdImagePaletteCopy( this.Handle, src.GetHandle().Handle );
 }
Example #4
0
 public void CopyMerge( GD src, int dstX, int dstY, int srcX, int srcY, int w, int h, int pct )
 {
     GDImport.gdImageCopyMerge( this.Handle, src.GetHandle().Handle, dstX, dstY, srcX, srcY, w, h, pct );
 }
Example #5
0
 public void CopyResized( GD src, int dstX, int dstY, int srcX, int srcY, int destW, int destH, int srcW, int srcH )
 {
     GDImport.gdImageCopyResized( this.Handle, src.GetHandle().Handle, dstX, dstY, srcX, srcY, destW, destH, srcW, srcH );
 }
Example #6
0
 public void PaletteCopy(GD src)
 {
     GDImport.gdImagePaletteCopy(this.Handle, src.GetHandle().Handle);
 }
Example #7
0
 /***********************************************************************************\
    	 GD Copying/Resizing
    	\***********************************************************************************/
 public void Copy( GD src, int dstX, int dstY, int srcX, int srcY, int w, int h )
 {
     GDImport.gdImageCopy( this.Handle, src.GetHandle().Handle, dstX, dstY, srcX, srcY, w, h );
 }
Example #8
0
 public void CopyMerge(GD src, int dstX, int dstY, int srcX, int srcY, int w, int h, int pct)
 {
     GDImport.gdImageCopyMerge(this.Handle, src.GetHandle().Handle, dstX, dstY, srcX, srcY, w, h, pct);
 }
Example #9
0
 public void CopyRotated(GD src, double dstX, double dstY, int srcX, int srcY, int srcW, int srcH, int angle)
 {
     GDImport.gdImageCopyRotated(this.Handle, src.GetHandle().Handle, dstX, dstY, srcX, srcY, srcW, srcH, angle);
 }
Example #10
0
 public void CopyResampled(GD src, int dstX, int dstY, int srcX, int srcY, int destW, int destH, int srcW, int srcH)
 {
     GDImport.gdImageCopyResampled(this.Handle, src.GetHandle().Handle, dstX, dstY, srcX, srcY, destW, destH, srcW, srcH);
 }
Example #11
0
        /***********************************************************************************\
        *  GD Copying/Resizing
        \***********************************************************************************/

        public void Copy(GD src, int dstX, int dstY, int srcX, int srcY, int w, int h)
        {
            GDImport.gdImageCopy(this.Handle, src.GetHandle().Handle, dstX, dstY, srcX, srcY, w, h);
        }
Example #12
0
 public void SetTile(GD brush)
 {
     GDImport.gdImageSetTile(this.Handle, brush.GetHandle());
 }