معرفی شرکت ها


boxmath-0.1.3


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Simple image box arithmetic
ویژگی مقدار
سیستم عامل -
نام فایل boxmath-0.1.3
نام boxmath
نسخه کتابخانه 0.1.3
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Eric Moritz
ایمیل نویسنده eric@themoritzfamily.com
آدرس صفحه اصلی http://github.com/ericmoritz/boxmath
آدرس اینترنتی https://pypi.org/project/boxmath/
مجوز BSD License
=================================================================== boxmath =================================================================== This provides image crop/resize algorithm for chaining multiple resize, crop actions and producing a resulting crop/resize action pair. ------------------------------------------------------------------- Usage ------------------------------------------------------------------- The usage is fairly simple: .. code:: python from boxmath import box, resize, crop, size, make_transformer from wand import image # Load the image to get its width and height i = image.Image(filename="chrysanthemum.jpg") b = box(i.width, i.height) # manipulate the virtual image b = resize(b, 629, 483) b = crop(b, 0, 0, 480, 480) b = resize(b, 1000, 1000) # render def resizer(img, w, h): img.resize(int(w), int(h), filter=FILTER) return img def cropper(img, l,t,r,b): img.crop(int(l),int(t),int(r),int(b)) return img t = make_transformer(b, resizer, cropper) i = t(i) i.save(filename="chrysanthemum-1000x1000.jpg") Normally, if we would of used wand or PIL directly, each resize would degrade the image. The action of down scaling and then up scaling would wreck the quality of the image; with the power of math, we only apply the resize and crop when we need render the image. Not that the width, height, left, top, right, and bottom values passed to the resizer and cropper functions are cast as ints. This is because they are either fractions.Fraction() instances or int(). `boxmath` uses the Fraction class to ensure precision while resizing and cropping.


نحوه نصب


نصب پکیج whl boxmath-0.1.3:

    pip install boxmath-0.1.3.whl


نصب پکیج tar.gz boxmath-0.1.3:

    pip install boxmath-0.1.3.tar.gz