how to make matrix-transform by jmagick
Posted: 2009-07-28T21:25:14-07:00
last year i test function MagickDistortImage and magick told me i found a bug,and since imagemagick 6.4.7,this version,this function MagickDistortImage can do matrix-transform very well.
For some reseaon I can't use c/c++ but java,so i download jmagick and compile and install but jmagick donot give me the interface that make matrix by six matrix parameters(a,b,c,d,tx,ty) like function MagickDistortImage.and it only give some function below:
my question is if I have a matrix,how to use those functions that jmagick provider to make a matrix-transform image.
thanks very much:) help....
For some reseaon I can't use c/c++ but java,so i download jmagick and compile and install but jmagick donot give me the interface that make matrix by six matrix parameters(a,b,c,d,tx,ty) like function MagickDistortImage.and it only give some function below:
Code: Select all
public MagickImage scaleImage(int cols, int rows);
public MagickImage rotateImage(double degrees)
public MagickImage shearImage(double x_shear, double y_shear)
thanks very much:) help....