Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
4answers
283 views

Website Screenshot (HTML5 Canvas / Services)

Alright all, Been doing a bit of research and want to know if anyone else has tried this... and what approach would you take. I'm planning on doing a website which will display a screenshot of a ...
2
votes
2answers
93 views

Is there a PHP library for drawing text as a vector outline?

In PHP, it's quite easy to use GD to draw text onto a raster canvas in a certain font (according to a TTF file held on the server), and output it as a PNG or JPEG. I want to do roughly the same ...
1
vote
2answers
277 views

How to parse a JPG as PHP and return a JPG

I have a dynamic image I'm trying to create, which previously worked on one web host, until I found out they removed some features, some of which broke my image. I recently moved to hostgator, and I ...
1
vote
1answer
316 views

Insert Image file into php's imagecreate

I'm trying to dynamically generate an image file that will be composed by other smaller images. This is the code I've got so far if ( function_exists('imagecreate') ) { header ...
1
vote
2answers
431 views

WCF : How do i Create a dynamic image in a WCF service and send it back to the caller?

I have an ASP.NET page where i am rendering some HTML markup which includes a barcode image which is generated by another asp.net page <div id='divDynamic'> <h1>Some ...
0
votes
1answer
52 views

Java Webapplication works from netbeans but not in “stand-alone”

i've created a rather simple Web application for demo purposes. It works perfectly fine when running it from netbeans (using tomcat). there is a search form and a search results display page. The ...
0
votes
2answers
171 views

Serving dynamic content from Mongo GridFS via Nginx without a 404 error

I have a dynamic content controller in CodeIgniter that pulls images from GridFS. The server is running nginx and I am trying to set the cache control headers in my nginx config to cache the images ...
0
votes
1answer
588 views

Connect to ONLINE MySQL database using DSN ODBC from multiple remote computers

I have my website on my share hosting server. I have a C# .NET Winform application which accesses the online MYSQL database of my website. For accessing the online database, I have to add the IP of ...
0
votes
1answer
105 views

Send cURL request from URL?

Greetings, I'm looking for a way to send a curl request given a full url. All of the examples and documentation I can find look something like this: $fullFilePath = 'C:\temp\test.jpg'; $upload_url ...
0
votes
1answer
174 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
1answer
59 views

Best method to serve a dynamic image for mails

I would like to represent dynamic images in an email. For example with the given url <img src="http://myserver.com/index.php/user_key/thispagestate.jpg" /> I would like to serve a different ...
0
votes
1answer
507 views

Dynamically create image from JAX-RS servlet

Is it possible to create a PNG image and output it straight to the browser as part of a JAX-RS resource? Something like this: @Path("img/{externalId}") @Stateless @Produces({"image/png"}) public ...
0
votes
1answer
327 views

How to create dynamic images with text of MS Word Art

I am able to create simple image with text, but I want to apply MS Word Art font to my text. Any Reference link or help appreciated. here is my code to create image with Text. Font MyFont = new ...
0
votes
3answers
260 views

Generate image from XAML View

I would like to generate some images dynamicaly. For that, I intend to create a XAML View, populate it with Data (using DataBinding) and then generate an image from the rendering of that view (kind of ...
0
votes
1answer
135 views

How to create a dynamic image that updates when requested?

So I'm trying to make my own forum signature generator for some friends, and I've gotten most of the work done. My real issue now is refreshing the information when the image is requested from my ...