gpt4 book ai didi

c# - 无论如何使用 asp.net mvc 从 3 个图像 URL 中制作一个图像?

转载 作者:太空狗 更新时间:2023-10-29 21:53:03 26 4
gpt4 key购买 nike

我想构建一个类似于 nametest 或 Meaww 的 facebook 应用程序,并且几乎成功地让我的 API 调用 Facebook Graph API 并从 facebook 返回数据。让我感到困惑的是上述网络应用程序的用户界面。当您在 Meaww 或 Nametests 上完成测试时,结果以图像 (Jpeg) 格式呈现给用户。我只是不知道他们如何设法使用所有 CSS 样式等将 HTML 动态转换为图像,以及如何将其作为图像返回给用户?有没有可能把这个场景在 ASP.NET MVC Too 中付诸实践呢?如果是,那么我需要提示才能做到这一点。

下面是 Meaww 测试生成的图片。

enter image description here

编辑:更具体...我有一个 public async Task<ActionResult> FB_Analyse()我的 Controller 中的操作通过图形 API 调用从 facebook 获取数据到 facebook,然后将数据值传递给模型,然后在操作结束时返回如下 View :

 public async Task<ActionResult> FB_Analyse()
{

var access_token = HttpContext.Items["access_token"].ToString();
if (!string.IsNullOrEmpty(access_token))
{

var appsecret_proof = access_token.GenerateAppSecretProof();

var fb = new FacebookClient(access_token);

#region FacebookUser Name and Picture plus other Info
//Get current user's profile
dynamic myInfo = await fb.GetTaskAsync("me?fields=first_name,last_name,link,locale,email,name,birthday,gender,location,age_range,about".GraphAPICall(appsecret_proof));

dynamic myinfojson = JsonConvert.DeserializeObject(myInfo.ToString());

ViewBag.UserName = myinfojson.name;
ViewBag.UserGender = myinfojson.gender;

//get current picture
dynamic profileImgResult = await fb.GetTaskAsync("{0}/picture?width=200&height=200&redirect=false".GraphAPICall((string)myInfo.id, appsecret_proof));

ViewBag.ProfilePictureURL = profileImgResult.data.url;

#endregion

dynamic myFeed = await fb.GetTaskAsync(
("me/feed?fields=likes{{name,pic_large}}")
.GraphAPICall(appsecret_proof));
string result = myFeed.ToString();
var jsonResult = JsonConvert.DeserializeObject<RootObject>(result);

var likes = new List<Datum2>();

foreach (var likeitem in jsonResult.data)
{
if (likeitem.likes != null)
{
foreach (var feedlikeitem in likeitem.likes.data)
{
likes.Add(feedlikeitem);
}
}
}
return view(likes);
}

然后在我看来我有这个简单的<div>如下图标记:

<div class="imageWrapper" style="position: relative">
<img class="girl img-responsive" src="~/images/TestPictures/mHiDMsL.jpg" style="position: relative; z-index: 1;" />
<img src="@ViewBag.Picture" alt=.. width="100" height="100" style="position: absolute;left:80px; top: 80px;z-index: 10;" />
<img src="@ViewBag.ProfilePictureURL" alt=.. width="200" height="200" style="position: absolute;left:300px; top: 160px;z-index: 11;" />
</div>

如您所见,我有三个不同的 <img>标签。一张是另外两张图片的背景,另外两张是一张 Facebook 用户图片,第二张是 Facebook 用户 friend 的图片,它们都放在背景图片的顶部。我要达到的目标是晴朗如蓝天。我想将这三张图片合二为一,然后将其作为一张图片显示给用户。

请帮助我迷路了。

最佳答案

SO 经过大量网上冲浪和深入分析 MeawwNametests我发现他们正在使用第三方工具进行图像托管和操作 Cloudinary .

I am answering my own question so that any other person who faces sucha problem shouldn't be bothered with a lot of stuff and testingdifferent third party libraries which is not relevant to the problemat all as I were struggling much with the same.

让我们首先对 Cloudinary 做一些说明:Cloudinary 是一种基于云的服务,提供端到端的图像管理解决方案,包括上传、存储、操作、优化和交付。

借助 Cloudinary,您可以轻松地将图像上传到云端,自动执行智能图像处理,而无需安装任何复杂的软件。然后,您的所有图像都通过快速 CDN 无缝交付,经过优化并使用行业最佳实践。 Cloudinary 提供全面的 API 和管理功能,并且易于与新的和现有的 Web 和移动应用程序集成。

Cloudinary 提供 SDK 并支持各种编程技术,包括 .Net、PHP、Java、Rubby 等...

还有一些类似于Cloudinary的服务,比如Blitline但是 Cloudinary 的好处是这项服务是面向程序员和非程序员的。这意味着如果某人没有编程经验,他仍然可以使用此服务。因为它为用户提供了一个非常智能的仪表板。

我想我已经提出了太多的观点,所以现在是时候实际一点来回答这个问题了。

要处理上述问题,我们必须通过包管理器控制台使用以下命令安装 CloudinaryDotNet nuget 包。

安装 - 包 CloudinaryDotNet

安装包后,我们可以实例化对 Cloudinary 服务的 API 调用。注意:1st. 我们必须创建一个Cloudinary 帐户。幸运的是,Cloudinary 提供了一个没有时间限制的免费帐户。2. 在您的 .Net 项目中配置您的 Cloudinary 帐户。

using CloudinaryDotNet;
using CloudinaryDotNet.Actions;
Account account = new Account(
"my_cloud_name", // Upon creating account you'll be given a cloud name.
"my_api_key", // Your API Key/Id.
"my_api_secret"); // Your App Secret.

Cloudinary cloudinary = new Cloudinary(account);

使用 Cloudinary 上传图片:为了能够操作图像,图像应该已经上传到您的 Cloudinary 帐户中。这可以直接从 Cloudinary 仪表板完成,也可以从您的 Web 应用程序以编程方式完成,如下所示:

var uploadParams = new ImageUploadParams()
{
File = new FileDescription("File Path or Directly for a URL"),
PublicId = "sample_id",// each image on the server should be named differently if this option is not assigned cloudinary will automatically assign one to it.
Tags = "Tags for Images",
};
var uploadParamsResult= cloudinary.Upload(uploadParams); // this line will upload image to the cloudinary server.

当上面的一切都准备就绪后,使用 Cloudinary 操作图像就很简单了:

您可以将任何图像操作/转换为:

  1. 定位在另一张图片中。

  2. 放置类似“棕褐色”的效果。

  3. 用文本和图像覆盖它并 many更多的。下面是一个简单的例子:

    @Model.Api.UrlImgUp.Transform(new Transformation().Width("700").Height("370").Effect("sepia").Width("200").Height("200").Crop("thumb").Gravity("face").Radius("max").Overlay("image1").重力(“西”).Y(18).X(20).Chain().Width("150").Height("150").Crop("fill").Radius("20").Border(4, "#553311").Overlay("image2"). Gravity("east").Y(18).X(20)).BuildImageTag("Background_Pic")

老实说,对我来说就是这样。

关于c# - 无论如何使用 asp.net mvc 从 3 个图像 URL 中制作一个图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41692795/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com