You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ben Foster edited this page May 20, 2015
·
3 revisions
Changes in 1.0.0.4
ImageBuilder renamed to ImageUrlBuilder
Build() method renamed to BuildUrl e.g.
new ImageUrlBuilder().BuildUrl("image.jpg")
New UrlHelper extension methods in ImageResizer.FluentExtensions.Mvc
// passing in a builder expression
@Url.ImageUrl("~/image.jpg", builder => builder.Resize(img => img.Width(200)))
// passing in an existing builder
@Url.ImageUrl("~/image.jpg", builder)