Search found 5 matches

by studion
2017-02-02T08:41:13-07:00
Forum: Users
Topic: ASP CLASSIC: center crop image
Replies: 8
Views: 4956

Re: ASP CLASSIC: center crop image

newWidth = 253 px
newHeight = 357 px

The input image is over 1.000x1.000 px
by studion
2017-02-02T08:00:29-07:00
Forum: Users
Topic: ASP CLASSIC: center crop image
Replies: 8
Views: 4956

Re: ASP CLASSIC: center crop image

Please, can you tell me if my command lines are ok?
by studion
2017-02-02T07:59:44-07:00
Forum: Users
Topic: ASP CLASSIC: center crop image
Replies: 8
Views: 4956

Re: ASP CLASSIC: center crop image

I have 3 passages for an image: 1) I pick the original, large size, image and I rename it, 2) I resize the renamed image only on height (width proportional), 3) If the width is over 253 px I crop the resized image. All the process works correctly, incluse crop but it start from the default side ...
by studion
2017-02-02T07:26:35-07:00
Forum: Users
Topic: ASP CLASSIC: center crop image
Replies: 8
Views: 4956

Re: ASP CLASSIC: center crop image

The version of IM is 7.0.4-6-Q16.

Is it possible that this function doesn't work because it is deprecated on website that use ASP?
by studion
2017-02-02T04:14:00-07:00
Forum: Users
Topic: ASP CLASSIC: center crop image
Replies: 8
Views: 4956

ASP CLASSIC: center crop image

Hi, I'm using ImageMagck to generate thumbnails from a big image on my classic asp site. This is my resize command that works correctly: imageMagick.Convert "1-thumb.jpg", "-resize=" & newWidth & "x" & newHeight, "1-thumb.jpg" My goal is to create thumbnails with the same size so I control, with an ...