PAID: Automatic ImageMagic JPEG Crop and Enhancement

Do you need consulting from ImageMagick experts and are willing to pay for their expertise? Or are you well versed in ImageMagick and offer paid consulting? If so, post here otherwise post elsewhere for free assistance.
Post Reply
luter
Posts: 2
Joined: 2017-06-17T19:25:30-07:00
Authentication code: 1151

PAID: Automatic ImageMagic JPEG Crop and Enhancement

Post by luter »

Hello,

I'm needed php script for automatic image border crop and enhancement via ImageMagic for Free Bsd or CentOs or any linux servers.
Last edited by luter on 2017-06-21T12:02:45-07:00, edited 1 time in total.
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: PAID: Automatic ImageMagic JPEG Crop and Enhancement

Post by fmw42 »

try this code in command line mode on your sample 2.

Code: Select all

convert 52.jpg -fuzz 10% -trim +repage -resize 320x180 -auto-level -auto-gamma test.jpg
You can call this command from PHP exec(). Sorry I do not know PHP Imagick.
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: PAID: Automatic ImageMagic JPEG Crop and Enhancement

Post by fmw42 »

P.S. You should also test your jpg to be sure it is sRGB and has an sRGB profile. If not, then you need to convert from CMYK to sRGB with profiles before any other processing, since most of the commands may not work properly on CMYK images.
Bonzo
Posts: 2971
Joined: 2006-05-20T08:08:19-07:00
Location: Cambridge, England

Re: PAID: Automatic ImageMagic JPEG Crop and Enhancement

Post by Bonzo »

Image 1 is not the correct ratio and will need cropping; how do you know where to crop?

Looks like Imagick does not have an auto gamma if you want to go down that route.
luter
Posts: 2
Joined: 2017-06-17T19:25:30-07:00
Authentication code: 1151

Re: PAID: Automatic ImageMagic JPEG Crop and Enhancement

Post by luter »

fmw42, I have php coders and I need algorithm in any programming language for crop and enhance any images from my archive.
I mean needed batch processing with variables instead filenames, because with these algorithms I'll work with millions images.
Batch must testing images in auto mode and use needed ImageMagic filters.

Bonzo, needed resize with aspect ratio first for one side and crop in 320x180 size.
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: PAID: Automatic ImageMagic JPEG Crop and Enhancement

Post by fmw42 »

luter wrote: 2017-06-18T03:54:06-07:00 fmw42, I have php coders and I need algorithm in any programming language for crop and enhance any images from my archive.
I mean needed batch processing with variables instead filenames, because with these algorithms I'll work with millions images.
Batch must testing images in auto mode and use needed ImageMagic filters.

Bonzo, needed resize with aspect ratio first for one side and crop in 320x180 size.
If the aspect ratio of the cropped image, does not match 320x180, the resulting image may be 320 x some smaller amount, which would need padding to 320x180. Or you can resize to some large size than 320 x180 and then center crop to get exactly 320x180. What do you want to do in that regard.

Please see my PM to you on this forum's email system.
Post Reply