首页 > 代码库 > Umbraco image中使用Crop URL
Umbraco image中使用Crop URL
需要在Umbraco 的image中使用crop URL.首先你需要取出这个image作为IPublishedContent
有以下两种方法
第一种:
var imageId = Model.Content.GetPropertyValue<int>("image"); var image = Umbraco.TypedMedia(imageId);
第二种,如果你已经使用了Core Property Value Converters package, 你可以直接取出
var image = Model.Content.GetPropertyValue<IPublishedContent>("image");
You then need to call the GetCropUrl()
method on your image. If you‘ve replaced the default Upload property with an Image Cropper property, and kept the property alias the same (umbracoFile
), you can just pass in the crop alias:
var cropUrl = image.GetCropUrl("my-crop-name");
If the alias of your Image Cropper property is different to the default you will need to pass that as an additional argument:
var cropUrl = image.GetCropUrl("imageCropperAlias", "my-crop-name");
Umbraco image中使用Crop URL
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。