Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
3k 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. ...
6
votes
8answers
966 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
7k 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? ...
4
votes
1answer
919 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 ...
3
votes
2answers
614 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: ...
3
votes
2answers
136 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 ...
2
votes
1answer
111 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 = ...
2
votes
3answers
199 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 ...
2
votes
4answers
245 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 ...
2
votes
3answers
2k 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
122 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
456 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 ...
1
vote
4answers
153 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 ...
1
vote
1answer
126 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 ...
1
vote
2answers
99 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 ...
0
votes
0answers
36 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
49 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
51 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
100 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 ...
0
votes
1answer
147 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 ...
0
votes
2answers
398 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
73 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 ...
0
votes
3answers
194 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: ...
0
votes
2answers
136 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 ...
0
votes
2answers
133 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 = ...