Reputation:
I want to a content analysis of a jepg image. I wish to take a jpeg image say 251 x 261 and pass it through an algorithm to crop it to say 96 x 87. Like an intelligent cropping algorithm, with a prompt to resize the image.
Upvotes: 2
Views: 672
Reputation: 124335
Cropping and resizing are entirely different operations, and your question makes it sound like you don't know which you want.
I can't really tell where you're at with your process, but possibly you may benefit from obtaining and using ImageMagick.
Upvotes: 4
Reputation: 78282
If you are using .NET try using this.
System.Drawing.Image.GetThumbnailImage
Upvotes: 0