The image-generation tag has no wiki summary.
0
votes
0answers
10 views
Diffrence in ImgKit behaviour
I want to generate image from template and i'm using next ImgKit code in rake and controller:
gem 'imgkit' # in gemfile
av = ActionView::Base.new(Rails.root.join('app', 'views'))
template = ...
0
votes
2answers
101 views
GD library create image with dynamic text on it
I want to place text generated dynamically from a sql select, on an image created with GD library. I'm using this to create the image and place some text on it, but I want to place the variable $users ...
1
vote
1answer
170 views
AVAssetImageGenerator not generating Image from Video url
I am using AVAssetImageGenerator for generating the thumbnail images for video play buttons.
When i pass server video url to generate image it is retuning null.
AVAsset *asset = [AVAsset ...
1
vote
4answers
281 views
php print and save a div as .jpeg [duplicate]
Possible Duplicate:
How to save webpage as a image file using PHP?
i want user to enter few inputs then when he is done click save
all his inputs are sent to a php file that save these ...
0
votes
1answer
162 views
AVAssetImageGenerator giving error while trying to generateCGImagesAsynchronouslyForTimes
I'm trying to display a movie thumbnail in an button for user to see before they upload it. I'm using AVAssetImageGenerator. Here the code:
AVURLAsset *asset=[[AVURLAsset alloc] initWithURL:[NSURL ...
0
votes
1answer
216 views
Image generator ( generateCGImagesAsynchronouslyForTimes method) doesn't give live results
Pretty new to cocoa development and really stuck with probably a fundamental problem.
So in short, my app UI looks like a simple window with a nsslider at the bottom. What I need is to generate N ...
0
votes
2answers
102 views
Passing values between PHP scripts in this particular situation
So in my HTML markup I have an image tag like this one:
<img src="image_generation.php" alt="template" id="image" />
And the 'src' attribute links to a PHP script that generates an image ...
0
votes
0answers
79 views
algorithm to generate sample video data with transition?
I want to generate sample video using procedural method so that it gives nice color transitions between frames.
I came up with following code snippet,but wondering whether there's any nice algorithms ...
5
votes
1answer
174 views
Make the browser pool for an image until available
I have a small http server which generates some images on-the-fly, and the generation process may take some time. After generation, the image is cached indefinetly.
Currently, if a user requests an ...
3
votes
1answer
364 views
.toDataURL() from Safari to PHP is rendering full white image (not drawn area)
Summary: Say I draw a white smiley face with a canvas element in a browser. When I generate an image string to POST to the PHP server from this canvas via js/ajax (with toDataUrl('image/png') ) in ...
0
votes
1answer
1k views
PHP Using imagegrabscreen
How could I use imagegrabscreen to get a thumbnail image and a full size image of a specific website.
I was thinking that I could have an array that I feed the wanted uri's into but I am a bit stuck ...
1
vote
1answer
168 views
UInt16[] to EMGU image in C#
I have an UInt16 array representing an image and width/height for it, and I would like to turn this into an EMGU image in the least painful way possible.
EMGU has an Image constructor that looks ...
0
votes
1answer
487 views
PHP: Live Thumbnails/Large Image
Is there any way to get a certain thumbnail generated by PHP from a live given URI? I also would want to do this for the live on click image.
2
votes
3answers
561 views
How to generate a completely random image?
I'm trying to generate a completely random image of a given size.
Here is what I have so far:
<?php
$Width = 64;
$Height = 32;
$Image = imagecreate($Width, $Height);
for($Row = 1; $Row <= ...
0
votes
2answers
68 views
Drawing arbitary pictures on a webpage
I need to display a runtime-generated image (mostly consisting of nice-looking boxes, lines and text) on a webpage. We're currently using ASP.NET MVC3.
The problem is, I haven't really done web ...
4
votes
1answer
1k views
TYPO3: cObj->IMAGE not generating image
I have an extension, where I need to generate thumbnails.
For this, I wrote kind of a wrapper function.
public static function pictureGenerator($file, $title, $size_w, $size_h) {
$cObj = ...
1
vote
0answers
361 views
Alternative to imagemagick for text image creation
I have built a photoshop like program that uses ImageMagick (command line on linux) to do most of it's backend processing. Unfortunately, I am just not happy with ImageMagick's text options.
...
0
votes
1answer
126 views
Server side images generation with JavaScript
Are there any tools that allow you to generate images on the server side using JavaScript langauge? I'm investigating the possibility of using the same JS code to render images on the client side and ...
0
votes
0answers
82 views
PHP Curl doesn't curl properly
I am trying to curl an image that I am generating upon request (it's necessary that it be done that way, so there's no way around generating the image every time anew).
However, despite having set ...
0
votes
1answer
338 views
Creating an image in Java (pixel by pixel) in memory and serving it dynamically in Google App Engine
I have an app that I am creating in Java in Google App Engine that needs to create an image from scratch (pixel by pixel, without too many higher level operations like rotating or text generation) on ...
2
votes
3answers
786 views
Generate image from DOM elements
Is it possible to generate an image from dom elements (span, div, image, etc.)? I can't use canvas in this case, and it doesn't have to be cross-browser compatible, as long as it works in some ...
0
votes
1answer
381 views
Generate image from HTML canvas + other HTML elements
I'm using the SpaceTree plugin from the JIT library. I'm in the final stages of a project and the possibility of using IE6 is a dead end, so as an alternative option, converting the visualisation to ...
4
votes
2answers
2k views
Heatmap Generation Library for PHP
I want to generate heatmap images as overlay for Google Maps. I am searching for a PHP library which can take multiple dimensions into account when generating the image. Let's say i have 2 dimensions: ...
5
votes
1answer
3k views
How to respond_to PNG or JPG in Rails and generate image from HTML?
I am looking for a gem or solution to generate image in controller response.
It would be nice if it's possible to do in controller like that:
respond_to :html, :png
def show
...
respond_to do ...
1
vote
2answers
647 views
generating images in Azure asp.net
I'm currently running a site of a dedicated server but want to scale up using Microsofts Azure cloud platform in the future but im unsure if a certin part of my code will work on azure.
The site ...
0
votes
2answers
235 views
How can I generate an image using JS and utilizing other image?
I'm looking for a way to generate an image with various text, provided as a parameter (includes specified font) and I have another image used as a template (some sort of background). Please help in ...
1
vote
4answers
466 views
Library to generate Images with pixels
I'm looking for a Library that allows me to generate an Image via pixel information, in this style(dummyfunction):
/*
coord_x = X coordinate
coord_y = Y coordinate
red = red part of RGB
green ...
0
votes
3answers
314 views
how does wolfram alpha generate images with mathematical expressions?
I was just curious as to whether or not there's a library that converts mathematical expressions (non latex) to crisp looking images like wolfram alpha does.
For example, (n^2+5x+3)/n should output ...
1
vote
1answer
216 views
Are there any composite-avatar scripts that I could steal or take a look at?
In a project I'll be working on soon there will be a need to generate avatars. The generation process will be one of those where the user can select different heads, hairstyles, clothing, etc. Some ...
0
votes
2answers
222 views
generating images with php based on css3 gradient settings?
Does anyone know if there is a php library, or if there isnt, have any input on how one would go about generating an image via php, from basic HTML element input settings, and CSS 3 gradient ...
10
votes
2answers
8k views
Create thumbnail image for PDF in Java
I'm looking for a Java library that will can take a PDF and create a thumbnail image (PNG) from the first page.
I've already looked at JPedal, but its insane licensing fee is completely prohibitive. ...
2
votes
4answers
810 views
PHP create image to display email address?
Using PHP: How can I create an image to display an email address (to help reduce spam)?
Meaning, if I want to display "joe@example.com" on my web page, since crawlers can easily find that text - I ...
0
votes
2answers
213 views
Image generated with PHP dosn't show
whats wrong with my code.
image dosn't show in test2.php file
File: test2.php:
<img src = "test.php" />
File: test.php
session_start();
$md5_hash = md5(rand(0,999));
$security_code = ...
1
vote
2answers
107 views
Generating video or images of geometrical objects from data
I'm working in a course's project to predict the velocity and position of the solar system planets (and other objects). It will be really cool if I can visualize the predicted objects data, if it's ...
3
votes
2answers
228 views
How can I generate images of basic figures with Perl?
I am using jalava library as a diagram drawing tool.
It displays figures as images in order to maintain compatibility with majority of browsers.
When diagram block is being resized a request is being ...
4
votes
4answers
5k views
Generate dynamic flow-chart
We are looking for some code/component that can create a flow-chart (image) dynamically, preferably in .NET/C# (although a Silverlight/Flash-component that takes a XML/JSON-feed will also be fine).
...
2
votes
1answer
157 views
Suggestions on generating abstract little images like StackOverflow 'flair' image
I'm creating a webapp that has various unrelated data types (House, Contact, Article, Recipe, Fact -etc). I am giving each one a 'thumbnail' automaticaly. (User can then manually upload there own ...
2
votes
4answers
574 views
Generating an image with data fields using Java
How would you generate an JPG image file containing data fields that are stored and updated within a database table? The image would then be regenerated every hour or so reflecting the latest values ...
6
votes
8answers
2k views
How can I generate GIF images in .NET?
Is there a .NET library I can use to programmatically generate my own GIF images?
At a minimum I'd like to build it pixel-by-pixel. Better would be support for text and shapes.
Here's an example of ...
5
votes
8answers
11k views
Generating dynamic thumbnail of a PDF for ASP.NET
I've used a tool from Aspose (Aspose.PDF.kit) to generate a JPG thumbnail on the fly of a PDF for a .NET application. This works great, but what kind of other alternatives are there? ...