标签: image-generation

用于PHP的热图生成库

我想生成热图图像作为Google地图的叠加层.我正在寻找一个PHP库,它可以在生成图像时考虑多个维度.假设我有两个维度:密度和质量.如何从这个输入生成热图?

php image-generation heatmap

5
推荐指数
2
解决办法
6215
查看次数

为可用的图像创建浏览器池

我有一个小的http服务器,可以即时生成一些图像,生成过程可能需要一些时间.生成后,图像将被无限缓存.

目前,如果用户请求未缓存的图像,则服务器返回202 Accepted带有Refresh标题的图像.如果图像被缓存,301 Permanently Moved则发送a并且用户被重定向到唯一URL(不同的图像可以共享相同的唯一URL).

如果图像在<img>标签中引用(至少在Firefox上),整个系统就会中断.没有Javascript可以解决这个问题吗?如果没有,脚本会是什么样子?

html javascript http image-generation http-headers

5
推荐指数
1
解决办法
296
查看次数

获取Video IOS 6的所有帧

我想在iOS6中获取视频的所有帧NSArray.我用这个代码:

-(void) getAllImagesFromVideo
{
   imagesArray = [[NSMutableArray alloc] init];
   times = [[NSMutableArray alloc] init];

   for (Float64 i = 0; i < 15; i += 0.033) // For 25 fps in 15 sec of Video
   {
       CMTime time = CMTimeMakeWithSeconds(i, 60);
      [times addObject:[NSValue valueWithCMTime:time]];
   } 

   [imageGenerator generateCGImagesAsynchronouslyForTimes:times completionHandler:^(CMTime requestedTime, CGImageRef image, CMTime actualTime, AVAssetImageGeneratorResult result, NSError *error) {

      if (result == AVAssetImageGeneratorSucceeded)
      {
         UIImage *generatedImage = [[UIImage alloc] initWithCGImage:image];

         [imagesArray addObject:generatedImage];
     }
   }];
}
Run Code Online (Sandbox Code Playgroud)

在iPad模拟器上,延迟是90~100秒,在iPad设备上,收到内存警告,最后崩溃.

任何想法,解决方案?使用另一个更低级的框架/库?C++?对我来说非常重要!帮我!:)

谢谢!!!

frame-rate objective-c image-generation avfoundation ios

3
推荐指数
2
解决办法
5270
查看次数

在Azure asp.net中生成图像

我目前正在运行一个专用服务器的站点,但希望将来使用Microsofts Azure云平台进行扩展,但我不确定我的代码的certin部分是否适用于azure.

该网站包含一个项目库,每个项目都有一个图像.图像存储在sqlserver数据库中.

我创建了一个http处理程序,将图像缓存到磁盘并将请求重定向到图像(如帖子末尾所示).

图像将保存到ASP.NET应用程序中名为"imagecache"的虚拟目录中.(即〜/ imagecache /).

由于Web应用程序将在Azure平台上的许多虚拟机实例中运行,因此需要在实例之间共享图像吗?

所以我的问题是......实现我已经拥有的最好的方法是兼容机智?

谢谢

图像生成代码..

public class getimage : IHttpHandler {


    private static readonly log4net.ILog log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);

    public void ProcessRequest (HttpContext context) {

        try
        {

            string uniqueid = "";

            if(context.Request.QueryString["id"]) uniqueid = context.Request.QueryString["id"].ToString();

            string dir = "~/imagecache/";
            string image_target_path = dir + "image-file-" + uniqueid + ".png";

            byte[] data = null;
            context.Response.ContentType = "image/png";

            if (!System.IO.File.Exists(context.Server.MapPath(image_target_path)))
            {
                if (context.Request.QueryString["id"] != null)
                {
                    // get image data from the database
                    data = ImageHelper.getDatabaseImageDataByID(Convert.ToInt32(uniqueid));

                    using …
Run Code Online (Sandbox Code Playgroud)

asp.net image-generation azure azure-storage

1
推荐指数
1
解决办法
1078
查看次数

PHP使用imagegrabscreen

我怎样才能使用imagegrabscreen来获取特定网站的缩略图和完整尺寸的图像.

我想我可以有一个array我想要的uri进入,但我有点卡住我将如何设置我需要抓取的图像的wxh.我还认为我需要a thumbnail class和a fullimage class,并在需要时调用它们.

还有更好的想法?

php image thumbnails image-generation dynamic-image-generation

1
推荐指数
1
解决办法
7391
查看次数