The drawimage tag has no wiki summary.
0
votes
0answers
9 views
putImageData same as drawImage
As Im drawing multiple objects in the same context layer I have stumbled across something.
context.putImageData(imageData, x, y);
This will overwrite everything in the area of this image data. ...
0
votes
0answers
23 views
java.lang.NullPonterException when using Graphics.drawImage(image, x, y, ImageObserver)
I have tried using the ImageIcon way of drawing and image on a panel, I have tried using the ImageIO.read way of drawing, i have build and rebuild multiple projects, and every time i get an error that ...
0
votes
1answer
39 views
Canvas drawImage from json data
I have a JSON array that I am receiving from PHP the array is an indexed array and is in this format only larger
[
[
[17, 28, 1, "z"],
[28, 31, 6, "b"],
...
0
votes
1answer
31 views
Inserting multiple image files into canvas
I have the code below which is supposed to find the images the user inserted into a div and when he clicks the "snap" button, it mounts those images into one image inside a canvas object. Fine. I can ...
0
votes
1answer
46 views
Dynamic Canvas DrawImage Function
I've got a problem filling 25 canvas elements automatically in a for loop. They are numbered like so: can01 to can25.
I've tried all I knew to draw different images on the canvas and I have spent a ...
0
votes
3answers
56 views
Faster Graphics DrawImage
I have got this code running what it does is stream an RDLC file, converts it to image and saves it. The stream is created before hand and kept in the memory.
The Problem i am facing is this function ...
0
votes
1answer
57 views
C# drawimages multiple images into picturebox without tiling
I am trying to draw multiple (20 small images or more) into a single picture box using points however when I do this it copies the top line on each line of the picture box.
I have searched everywhere ...
0
votes
1answer
54 views
How to use HTML5 Canvas drawImage to put image slices into individual <div> elements?
I'm trying to take an image and slice it into 20 slices, and also have these slices appear in their own div's similar to below:
<div id="example" class="container">
<div class="item ...
0
votes
2answers
40 views
Painting an Image object on a BufferedImage for later use
I need some help with painting an Image object upon/inside/on a BufferedImage and then painting that BufferedImage on a JPanel.
I've prepared a small program to illustrate my problem. Just a frame ...
0
votes
0answers
36 views
Trying to animate a drawn image on Canvas
window.requestAnimFrame = (function (callback) {
return window.requestAnimationFrame ||
window.webkitRequestAnimationFrame ||
window.mozRequestAnimationFrame ||
...
0
votes
1answer
51 views
Trying to mirror a picture with java android canvas.drawImage
I'm having problems while trying to rotate a picture with java android canvas.drawImage. I'm doing a little game, and I'm painting different pictures on the screen using my drawImage function. However ...
0
votes
1answer
22 views
Visual Basic - Drawing an image on a panel underneath an object
I have a panel with multiple pictureboxes in it, which when clicked change them image in the picturebox. At the same time when the image is changed, I want it to draw the same image on the panel at ...
0
votes
1answer
130 views
Draw image on a bouncing context inside canvas
EDIT: solution some lines above.
I'm trying to have bouncing pictures with html5, canvas and some jQuery.
I've successfully made some balls bouncing, but I can't figure out how to draw pictures ...
0
votes
1answer
58 views
Canvas draw an image in circular increments?
I would like to draw an image in circular (or similar) increments as a progress bar, I had originally wanted to draw this with lines in canvas but I ended up being unhappy with how it looked.
This ...
2
votes
3answers
105 views
Java2D drawImage paint an awful black background
I'm using Java2D in order to generate a binary image, when paiting png files I'm getting an awful black background on every picture which contains transparent background (i.e. the transparent ...
0
votes
1answer
50 views
drawImage is not working
var canvas = null;
var context = null;
var img = null;
var frames = [];
var assets = [];
var imgLoadCount = 0;
setup = function (fileArray) {
assets = fileArray;
//Loading an image
for(var i = ...
0
votes
1answer
26 views
Why does my debugg system on the webbrowser tell me (drawImage is not a function)?
I am making a JavaScript program while I tried to draw an image. I just searched on Google how to do it and multiply sources told me the same:
ctx.drawImage(images[0],100,100);
I tried to do this ...
0
votes
0answers
45 views
drawImage() doesn't work sometimes
I am making an application where i require to use image color to define my clicking area and after the click I am changing the image on the canvas.
The issue that i am encountering is, sometimes the ...
1
vote
1answer
58 views
What do I need to draw the image?
The following code should draw an image while the mouse moves in a canvas after selecting it in a toolbar:
import 'dart:html';
class Test {
ImageElement toolbar_selected_element = new ...
0
votes
1answer
153 views
Using drawImage with Canvas is very slow on Chrome
I've been trying to draw a large number of instances of an SVG file to a canvas using drawImage. By creating a single image element using the SVG as the source, then using drawImage for each instance ...
1
vote
1answer
134 views
AlphaComposite Transparency with repaint overlaps into black
So I have an image on top of another panel, and that image is transparent so you can see the panel beneath it. What I'm trying to do is use repaint() to fade the image (which is drawn with the ...
0
votes
2answers
113 views
Change alpha of image in java for method drawImage()
I'm trying to change the transparency of an image over time, and I'm doing this with the method drawImage() from java.awt.Graphics. I know there's a lot of different answers online about how to do ...
0
votes
1answer
41 views
drawImage() isn't working
I am making an app for iPhone and Android using HTML, CSS, and JavaScript with PhoneGap. I'm using HTML5 canvas. My ctx.drawImage(); function isn't working, and I cannot figure out why. Here is my ...
0
votes
1answer
66 views
Making sure drawImage draws the image on HTML5 canvas
I am making a multiple choice quiz game for canvas, where users upload their own images for multiple choice answers.
When the next question is selected, the variables for the next question are got ...
3
votes
2answers
94 views
Drawing image on canvas - larger than real
I want to draw an image from jpg file on canvas.
My code:
var canvas = document.getElementById('my_canvas');
var ctx = canvas.getContext('2d');
var imageObj = new Image();
imageObj.onload = ...
0
votes
0answers
121 views
Add photo frame to image in Direct2D using C#
I'm developing a windows store app using C#. I want to add photo frame to an image using Direct2D. How do I this photo frame effect in Direct2D?
This is my code:
using (Graphics grfx = ...
0
votes
1answer
143 views
Kinetic JS image setVisible
I am trying to add an image inside a circle using the following script:
....
var rCvisible = false;
...
var rC = new Image();
rCircle;
rC.onload = ...
0
votes
0answers
45 views
Canvas drawimage() black result
I have a large image to draw in a canvas : 1900px X 7000px
80% it loads right, but 20% I have a black canvas instead of my image.
Seems to be the Gpu, but not sure.
Do I have to split this img in ...
0
votes
1answer
167 views
HTML5 canvas - drawImage not always drawing the image
I am drawing on the canvas each time a user presses a button, however sometimes the image is not getting drawn on the canvas. I think this could be that the image isn't loaded in time before the ...
0
votes
1answer
97 views
Javascript - getImageData after fillRect and drawImage
I have a following problem: when I draw a rectangle (using fillRect method), and then I draw an image (using drawImage), I can't get correct result from Contex, by using getImageData. When I comment ...
1
vote
1answer
118 views
Zig Zag movement of image using canvas
I'm new to JS and canvas and i'm trying to practice a bit. I'm trying to create a vertical shoot em up game and i want the enemies to move not only in a linear way, but also up and down (zig zag). so ...
0
votes
2answers
486 views
Uncaught TypeError: Type error with drawImage
I am new to HTML5 and the canvas element and in the last few weeks I have been trying to understand it better. Anyways I am getting a Uncaught TypeError: Type error when I am trying to change the red ...
1
vote
1answer
210 views
drawImage() not working
I am reading through "Making Isometric Social Real-Time Games with HTML5, CSS3 and Javascript."
I am not far into it, and I have run into a canvas problem that has ahd me stumped for most of the day. ...
2
votes
1answer
194 views
How do you insert an image using Report Lab's canvas drawImage()?
I'm looking to expand the functionality of a tool using report lab's pdfgen which currently only draws strings using;
if json_data[definition["field"]] != "":
c.drawString(
...
1
vote
1answer
172 views
Graphics DrawImage causes error with big red X
I have a collection of bitmap images that I am looping through and writing them all to one new bitmap. Basically I am taking a loose collection of bitmaps and writing them all to one bitmap one after ...
0
votes
1answer
514 views
HTML5 Canvas DrawImage Stutter / Choppiness
PROBLEM
I am trying to get an image on a canvas to move from left to right smoothly. It's not too bad on Chrome/Safari (still stutters a little), but there is noticeable stutter in Firefox on ...
1
vote
0answers
78 views
DrawImage never returns
My colleagues and I have encountered an apparent bug in C#'s Graphics class.
In our application, we update a bitmap over time by drawing new things on top of it.
We use the Graphics.DrawImage(Image, ...
1
vote
1answer
125 views
drawImage() and <img> tag
I'm getting stated with HTML5.
When I load images onto a browser, i can use normal HTML <img> tag, and in HTML5, I can also use - canvas- drawImage().
I don't known what is the differences ...
0
votes
1answer
196 views
Draw image only on mouse click
Is there any way that i could make it that "draw image" would only happen when a key/click is pressed?
I am very new to javascript but i have done html and css.
Is there a simple way that i can ...
0
votes
1answer
623 views
Graphics.DrawImage speed
In my program, I'm coding a basic image editor. Part of this allows the user to draw a rectangular region and I pop up a display that shows that region zoomed by 3x or so (which they can adjust ...
0
votes
1answer
229 views
drawImage is not drawing
so this is basically how my code is working
class Main extends JFrame implements Runnable {
public Main() {
//init everything
}
public void start() {
running = true;
...
0
votes
1answer
988 views
How to display a PictureBox from behind code in C#
I know my question sounds basic, but i searched all over the place and found nothing..
this is my code :
public MainWindow()
{
InitializeComponent();
Map newMap = new Map();
...
2
votes
1answer
506 views
Why is Graphics.DrawImage cropping part of my image?
If you consider the following image, it's a fairly basic icon, sized at 32x32. Around the icon is a transparent rectangle, although I filled in the four corners with a solid colour while testing.
...
1
vote
0answers
135 views
iPad Ibooks Javascript Canvas DrawImage does not work
I have a below script, its working in my windows browser. but this code does not work in Epub ebook (in my iPad iBooks)
<canvas id="e" width="177" height="113"></canvas>
<script>
...
1
vote
0answers
53 views
Using drawImage to draw a filled rectangle
if I want to draw a filled rectangle, I could do
g.fillRect(0, 0, 100, 100)
But if I want to draw the same filled rectangle with drawImage, what do I do? I tried the below:
g.drawImage(null, ...
-1
votes
1answer
99 views
toDataURL canvas drawImage
I'm trying to make an app that captures screenshots from webcam feeds. I have a bunch of curated URLs of webcams that I'm trying to load into a canvas which I can then save using toDataURL. The ...
1
vote
1answer
203 views
DrawImage() 'sprite' not showing up
I'm attempting to use a custom built .PNG file of letters from the alphabet to give my game some nice looking textual graphics. However, since the core functionality of my WinForms game works using ...
0
votes
1answer
100 views
Can't DrawImage on top of an ActiveX Control
I am using a 3rd party ActiveX video control in my project. The control can be pointed at a net camera and it shows the video stream. Works great... that's not my problem.
My problem is that I am ...
3
votes
2answers
257 views
Java : How to Avoid flickering on shape-made only animation (no image file)?
Hi I am reading the book "Programming Video Games for the Evil Genius" by Ian Cinnamon. In one of the projects he explains how to create some animation for a racing game. I wrote a simple code below ...
1
vote
1answer
440 views
canvas, drawImage does not work for remote picture
I want to draw a picture from web, so I have the following html5 code, that's the example from W3C Shool, but when I load the html page in Chrome, the image was displayed.
<!DOCTYPE html>
...



