Questions tagged [dynamic-image-generation]

Generating images programmatically such as thumbnails, snapshots, graphics

Generating images programmatically according to multiple variables

88 questions
0
votes
1 answer

Is there a way to post a link with a dynamic image to Twitter?

This may not be the best place to ask, but I've tried multiple other resources, and my searches have led me here. I am trying to create a link that, once posted to Twitter (or another site) randomly generates an image from a specific list of images…
0
votes
1 answer

Draw an image in Crystal Reports from a binary string

folk, I'm trying to develop something for our Crystal Reports that generates an EAN barcode image from the numeric string. I've already developed a function in our SQL database to encode the numeric string as the ones and zeroes that represent the…
0
votes
0 answers

Create and Save Dynamic images into the folder using html2canvas javascript with php and mysql

I am creating dynamic div using PHP for loop (1 to 6 divs), those div content automatically needs to create an image using html2canvas javascript, but for me only the 1st dive creating as a image and its stored in the folder using PHP via Ajax. I…
0
votes
1 answer

Image with clickable components

I have an image that displays a parking lot. I want to make parking slots clickable and connect them with records in salesforce using lwc. Leaflet-rastercoords seems a good tool to achieve this but I have difficulty in implementing it in lwc with…
0
votes
1 answer

Random image generation?

I'm looking to create a Conway's Game of Life-type dynamic image that cycles through these general patterns (below). Is it possible to create these types with Javascript? Or am I better off looking to a 3D application and cycling through an array of…
Jordan
  • 119
  • 3
  • 11
0
votes
1 answer

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 the PC from which the application accesses the…
sqlchild
  • 8,754
  • 28
  • 105
  • 167
0
votes
1 answer

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 =…
pws5068
  • 2,224
  • 4
  • 35
  • 49
0
votes
1 answer

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 an image should be plausible. I've used canvas's…
0
votes
1 answer

Android: Best Way to Programmatically Make an Image and Save it to a Bitmap?

I have an app that connects to an external printer device and I need to take some user data and dynamically make an image and print it. The printer API requires a bitmap as input for printing. Note that I never want to draw the programmatically…
Cody
  • 1,801
  • 3
  • 28
  • 53
0
votes
0 answers

image generation with Python

I'm new to Python and programing in gneral. I'm a self-learner and I decided that I would write a command line tool that would help me make watchfaces for Mi Band 4. So I want to generate; numbers, days of weeks and some specials characters in…
0
votes
1 answer

Problem serving multiple dynamic images with Phoenix (some load, some dont)

Technology: Phoenix 1.4.9 Problem : serving uploaded images in a webpage with the "img" tag, results in some being able to load and others are not. Tried checking the image link, but the image link (a.e. /image/1 or /image/2) loads every time…
0
votes
1 answer

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 Font(FontFamily, Font,FontStyle.Bold,…
Muhammad Akhtar
  • 51,913
  • 37
  • 138
  • 191
0
votes
1 answer

Generating an image with a "Gold-plated" text effect using PHP/GD

I'm dynamically generating a PNG image using PHP 7.3/GD based on a text provided by the user. Everything works as expected, but I'd like to apply some kind of filter/effect to obtain a Gold-plated style, such as below: Any idea how to achieve this?…
Bruno Leveque
  • 2,647
  • 2
  • 23
  • 33
0
votes
1 answer

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 server. I have almost no clue how to even go about…
Landmine
  • 1,759
  • 6
  • 39
  • 60
0
votes
1 answer

Angular 6 - Image loaded from http observable not updating in the view

I am struggling to make my code work where I am using angular in-memory data simulator and trying to load it using http through observable. My issue is all the text fields updates as observable returns data but the image goes blank. It looks as if…