在媒体库下以编程方式创建图像

发布于 2024-07-22 06:17:00 字数 24 浏览 8 评论 0原文

如何以编程方式在媒体库下创建图像?

How to create an image under Media Library programmatically?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

身边 2024-07-29 06:17:00

站点核心 6? 这段代码假设是这样,

TemplateItem templateItem = Sitecore.Context.Database.GetTemplate("system/media/unversioned/flash");
Item parentItem = Sitecore.Context.Database.GetItem( "/sitecore/media library", Language.Parse("en) );
var mco = new MediaCreatorOptions();
mco.Database = Sitecore.Context.Database;
mco.Language = Sitecore.Context.Language;
mco.Versioned = false;
mco.Destination = string.Format( "{0}/{1}", parentItem.Paths.FullPath, "my media item name" );
mco.FileBased = Settings.Media.UploadAsFiles;

var mc = new MediaCreator();
newItem = mc.CreateFromFile( "path to your media file", mco );

这就是它的本质。 显然(或不是?),切换模板名称以匹配您要上传的内容,并插入适当的路径。 如果您上传的内容来自实时站点 - 也许可以考虑将硬连线上传到“主”数据库而不是上下文数据库(这将是“网络”)。

希望这可以帮助 :-)

Sitecore 6? This code assumes so

TemplateItem templateItem = Sitecore.Context.Database.GetTemplate("system/media/unversioned/flash");
Item parentItem = Sitecore.Context.Database.GetItem( "/sitecore/media library", Language.Parse("en) );
var mco = new MediaCreatorOptions();
mco.Database = Sitecore.Context.Database;
mco.Language = Sitecore.Context.Language;
mco.Versioned = false;
mco.Destination = string.Format( "{0}/{1}", parentItem.Paths.FullPath, "my media item name" );
mco.FileBased = Settings.Media.UploadAsFiles;

var mc = new MediaCreator();
newItem = mc.CreateFromFile( "path to your media file", mco );

This is the essence of it. Obviously (or not?), switch the template name to match what you are wanting to upload, and insert an appropriate path. If what you are uploading is coming from the live site - perhaps consider uploading hardwired to "master" database instead of context database (which would be "web").

Hope this helps :-)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文