unintended resizing

See all posts See thread Reply

Re: unintended resizing new!
by colin, 9 years, 10 months ago
image_ratio_no_zoom_in is to be used in place of image_ratio_xxx. It is a shortcoming of the class.

So in your code, you should do something like this:
$handle->image_resize = true;
$handle->image_x = 1024;
$handle->image_y = 800;
$handle->image_ratio_no_zoom_in = true;
Reply
Re: unintended resizing new!
by Tim, 9 years, 10 months ago
Thank you! That was driving me nuts! :)Reply