Interface IImageProcessing
interface for common picture edit functions
Namespace: Simplic.ImageProcessing
Assembly: Simplic.ImageProcessing.dll
Syntax
public interface IImageProcessing
Methods
| Improve this Doc View SourceChangeImageSequence(Byte[], Int32, Boolean)
changes the position within the multipage tiff
Declaration
byte[] ChangeImageSequence(byte[] multipageTiff, int imagePage, bool up)
Parameters
Type | Name | Description |
---|---|---|
System.Byte[] | multipageTiff | original image |
System.Int32 | imagePage | page index to move |
System.Boolean | up | direction |
Returns
Type | Description |
---|---|
System.Byte[] | tiff with changed sequence |
RemoveImage(Byte[], Int32)
Removes the selected page from tiff
Declaration
byte[] RemoveImage(byte[] multipageTiff, int imagePage)
Parameters
Type | Name | Description |
---|---|---|
System.Byte[] | multipageTiff | multipage image |
System.Int32 | imagePage | index of the page to remove |
Returns
Type | Description |
---|---|
System.Byte[] | multipage image without the selected page |
RotateImage(Byte[], RotateFlipType, Int32)
Rotate the image counterclockwise
Declaration
byte[] RotateImage(byte[] multipageTiff, RotateFlipType rotateAngle, int imagePage)
Parameters
Type | Name | Description |
---|---|---|
System.Byte[] | multipageTiff | |
System.Drawing.RotateFlipType | rotateAngle | Rotate angle |
System.Int32 | imagePage | Picture to rotate |
Returns
Type | Description |
---|---|
System.Byte[] | tiff with image rotated |