首页 > Web开发 > 详细

Umbraco image中使用Crop URL

时间:2017-05-25 09:43:39      阅读:505      评论:0      收藏:0      [点我收藏+]

需要在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

原文:http://www.cnblogs.com/wphl-27/p/6901812.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!