Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
6answers
9k views

gdi+ Graphics::DrawImage really slow~~

I am using a GDI+ Graphic to draw a 4000*3000 image to screen, but it is really slow. It takes about 300ms. I wish it just occupy less than 10ms. Bitmap *bitmap = Bitmap::FromFile("XXXX",...); ...
4
votes
2answers
3k views

Uncaught Error: INDEX_SIZE_ERR

I am drawing on a canvas with the following line: ctx.drawImage(compositeImage, 0, 0, image.width, image.height, i, j, scaledCompositeImageWidth, scaledCompositeImageHeight); This code has executed ...
4
votes
4answers
4k views

How does Java Graphics.drawImage() work and what is the role of ImageObserver

How should Java's drawImage() be used? I do not find the JDK documentation very forthcoming. For example all drawImage signatures require an ImageObserver but the documentation for this is not very ...
3
votes
1answer
311 views

Accurately mapping pixels scaled by Graphics.DrawImage

I have a Winforms application that uses Graphics.DrawImage to stretch and draw a bitmap, and I need help understanding precisely how the source pixels map to the destination. Ideally I want to write ...
3
votes
1answer
2k views

canvas drawImage doesn't draw images the first time

I'm working on a simple JavaScript game using HTML5 canvas. It's a very typical game-loop setup involving: init() function that initializes objects to be used the playfield, randomizing some start ...
3
votes
2answers
468 views

Is Graphics.DrawImage asynchronous?

I was just wondering, is Graphics.DrawImage() asynchronous? I'm struggling with a thread safety issue and can't figure out where the problem is. if i use the following code in the GUI thread: ...
3
votes
2answers
2k views

How to avoid HTML Canvas auto-stretching

I have the following piece of HTML: <style type="text/css"> #c{width:200px;height:500px} </style> <canvas id="c"></canvas> <script type="text/javascript"> var i ...
2
votes
2answers
99 views

drawImage() not drawing pre-loaded image object. Using OO javascript

I'm writing a simple 2D side scroller game using JavaScript + Canvas. I am trying to do this while learning OO JavaScript. I'm encountering an issue where my image will not draw to the canvas, ...
2
votes
3answers
191 views

DrawImage() function over WinForms does not work correctly

i've created a BitMap 1 pixel wide & 256 pixel height when i try to draw this bitmap as 2 pixels wide using: public void DrawImage(Image image,RectangleF rect) the bitmap is not drawn correctly ...
2
votes
1answer
1k views

Webkit canvas drawImage() and canvas not-integer scale factor bug?

I've got a problem with canvas context drawImage() method if an image is drawn on a canvas that already has not-integer scale factor. It seems that such images are clipped in a weird way (sometimes ...
2
votes
2answers
100 views

How to draw an image file stored in a subdirectory in Java

I'm trying to images in Java, and right now I'm using images that are in the local directory and it is working fine. However, it would be nice if I could put the images in a folder and reference the ...
2
votes
1answer
2k views

HTML5 canvas drawImage with at an angle

I am experimenting with animation in <canvas> and can't work out how to draw an image at an angle. The desired effect is a few images drawn as usual, with one image rotating slowly. (This image ...
2
votes
2answers
2k views

GDI+, using DrawImage to draw a transperancy mask of the source image

Is it possible to draw a transperancy mask of an image (that is, paint all visible pixels with a constant color) using Graphics::DrawImage? I am not looking for manually scanning the image ...
2
votes
2answers
1k views

C#: Retain size despite different resolution using Graphics.DrawImage

I am trying to draw two images side-by-side using the C# Drawing namespace. Here is a very simple example that assumes we have two images of the same height: Image[] oldImages = GetOldImages(); var ...
1
vote
1answer
11 views

Trying to change dynamically a context.clip(); in a HTML5 canvas

I'm trying to to change dynamically a context.clip(); in a HTML5 canvas, drawing a shape with different values from an array. The idea is to get different parts of a board-game illuminated one after ...
1
vote
1answer
37 views

Drawing PNG to a canvas element — not showing transparency

I'm trying to use drawImage to draw a semi-transparent PNG on a canvas element. However, it draws the image as completely opaque. When I look at the resource that's being loaded and load the actual ...
1
vote
1answer
26 views

HTML5 : Uknown error when trying to copy a canvas into another one

I can't figure how to make drawImage work... It just does nothing (except that it throws an exception with an undefined description) : layerCtx.globalAlpha = 0,2; // same thing with this line ...
1
vote
2answers
75 views

cavas isPointInPath does not work with ctx.drawImage()

I suppose this doesn't work because canvas is drawing a bitmap of a vector (and a bitmap is not a path). Even if it did work, the bitmap is likely always has a rectangular permitter. Is there any ...
1
vote
1answer
86 views

canvas update with drawImage from buffer don't apply actions with drawImage

I use the buffering method to update a canvas, the thing is when I draw an Image in my buffer canvas and apply it to the real canvas there is no image at the real canvas. But I can apply anything else ...
1
vote
0answers
47 views

DrawImage pixel fidelity checklist

I'm using System.Drawing.Graphics (a wrapper around GDI+) and several of the various DrawImage* functions to composite several images from PNG sources before displaying them in a WinForms C# VS10 ...
1
vote
0answers
23 views

.net draw different images using a bitmap

I have a function, It takes a parameter and decides which image to be drawn. It creates a Bitmap; and draws it. I called this function four times but it creates the same image all the time. I think ...
1
vote
1answer
122 views

Graphics.DrawImage produces alpha-channel gradient in C# WinForms 2.0

I'm facing a really perplexing problem.. I have a .Net 2.0 C# WinForms project. I'm trying to stretch a bitmap onto a drawing area, but for some reason it is not stretched properly - I get alpha ...
1
vote
2answers
176 views

Using Web Workers for drawing using native canvas functions

It's possible to send a CanvasPixelArray obtained via getImageData to a worker script, and let the worker script manipulate the pixels in its background thread, and eventually post the manipulated ...
1
vote
1answer
58 views

Making a DrawImage a button in VB.net 2010

I have these three images that I have drawn to my form. GraphicsBuffer.DrawImage(ButtonEasy, New Rectangle(25, 330, 100, 50), 0, 0, 100, 50, GraphicsUnit.Pixel, ImageAttributes) ...
1
vote
1answer
61 views

Draw Image to form? (size related issue)

I'm trying to draw a 400x400 px image to a 400x400 form that I made. What I'm doing is: Graphics.DrawImage Method (Image, 0, 0, 400, 400) 0, 0, 400, 400, ... But when I run the form, the image ...
1
vote
1answer
47 views

How to put the image at the upper left corner of the screen?

I have an image and it appears at the bottom left part, I want it to appear at the upper left corner. I already tried different x,y coordinates but still the same, it doesn't change. I know this is ...
1
vote
1answer
226 views

Resize image proportionately to fit into HTML5 canvas

I am trying to write a jQuery plugin that will have similar functionality to the Flash based product editor on Zazzle.com. What I need to know is how, using the context.drawImage() canvas function, I ...
1
vote
2answers
237 views

HTML5 - unexpected results with canvas drawImage

I'm just learning how to use the HTML5 canvas element. I've been successful in drawing rectangles, calling getImageData, manipulating pixels and then putImageData to see the rectangles change colour, ...
1
vote
1answer
177 views

C# Move bitmap in picturebox

I create image with LockBits from array in cycle and scale to PictureBox.Width * n and Height: using (var bmp = new Bitmap(len, _height, PixelFormat.Format24bppRgb)) { var data = ...
1
vote
1answer
204 views

Why does drawing an animated gif on canvas only update after reselecting the tab?

I would like to display an animated gif on canvas with some transformations applied. To test things, I'm currently just trying to display the animated gif on the canvas, so that it is essentially ...
1
vote
1answer
273 views

html5 canvas drawImage without alpha

I'd like to know if it possible to not use the alpha channel but keeping transparency. What I need is to draw or not draw pixel (of my png file) depending on the alpha value If alpha channel > 128 ...
1
vote
1answer
350 views

Fabric.js - problem with drawing multiple images zindex

I'm using this script: var canvas = new fabric.Canvas('game_canvas', { selection: false }); fabric.Image.fromURL('images/bg.jpg', function(img) { img.set('left', 1024/2).set('top', ...
1
vote
2answers
283 views

How can I draw an image from the HTML5 File API on Canvas?

I would like to draw an image opened with the HTML5 File API on a canvas. In the handleFiles(e) method, I can access the File with e.target.files[0] but I can't draw that image directly using ...
1
vote
2answers
231 views

Use clearRect to erase part of a png image drawn to canvas with drawImage

Is it possible to use clearRect to delete part of a png image drawn to the canvas using drawImage? I'm trying something like this and its not working: <canvas id="canvas"></canvas> ...
1
vote
1answer
347 views

Crop image in Java with a class?

I have been attempting to do this for about a week. Every single time I have tried something it failed. So I turned to copying others code... they said the code worked for them... yet it failed for ...
1
vote
2answers
135 views

image not displaying in java frame

trying to learn windows programming in java, want to display a image to a frame.here is the problem code: public static void main(String[] args) throws IOException { JFrame frame = new ...
1
vote
1answer
789 views

drawImage using toDataURL of an html5 canvas

What I am doing now is the following: I am storing the state of a canvas using the toDataURL method and I am also trying to draw it on a canvas using the drawImage method. Here is a snippet: var ...
1
vote
2answers
2k views

How do I add a mouse over tooltip to an Image using .DrawImage()

Hey all, I am not sure if this is possible, but I am trying to dynamically add a tooltip to an image using the Graphics method - DrawImage. I dont see any properties or events for when the image is ...
1
vote
1answer
920 views

JavaScript canvas generic drawImage

I have been using drawImage to cause some video to explode as taught in this tutorial: http://www.craftymind.com/factory/html5video/CanvasVideo.html I would like to also be able to manipulate other ...
1
vote
2answers
463 views

Fastest way to draw a series of Bitmaps with C#

I'm building an application that captures video frames from a camera (30fps @ 640x480), processes them, and then displays them on a Windows Form. I was initially using DrawImage (see code below) but ...
1
vote
3answers
509 views

Java - Paint, JFrame, and Backgrounds

I'm trying to paint a Welcome Screen for my game, but only when the game loads. I don't want it to repaint everytime during the game. So I did this (where isStart is instantiated as true): public ...
1
vote
1answer
464 views

Why doesn't Graphics::DrawImage stretch images as expected?

I'm making an overloaded TableLayoutPanel which draws some fancy borders, but for some reason the call to Graphics::DrawImage isn't working as expected. It seems to fade out my 1x10 pixel source image ...
1
vote
2answers
685 views

java - applet delete image

Sorry asking so many questions but believe me.. I tried Google first. :) When you use the g.drawImage in paint() on an Applet... is there a way you can remove it? What I mean is remove the image ...
1
vote
4answers
799 views

Exception in thread “AWT-EventQueue-1” java.lang.NumberFormatException

I have this problem with my applet. It only paints ONE row before it produces the error. Here's my code: http://www.so.pastebin.com/RkG5YHVQ Here's the error: http://www.so.pastebin.com/z1qWpFS6
1
vote
1answer
439 views

Drawing.Graphics - Way to change pixel offset of source bitmap?

Having a small problem finding a function or method to do what I'm looking for, hoping someone might be able to give a bit of insight here. I've got a function that's supposed to extract and return a ...
1
vote
2answers
4k views

How can I overlay images over one another in Java?

So I have been posting all over and have yet to get a solid answer: I have created an image resizing class, with a crop method. The cropping works great. The issue that I am having is the background ...
0
votes
1answer
21 views

loop to create multiple canvas with multiple images not always displaying images

this may be an odd one to explain: I want to create dynamically a collection of canvas that will have a single image in it. And this displays (after much hassle and getting rid of the onload event) ...
0
votes
1answer
55 views

An image drawn by drawimage on top of Swing application flikers and not stable

I have a Swing Java application, the interface consists of a mainframe, menuBar that contains many drop menus. At the top right corner, I draw a logo using drawImage(). the logo spans over the menuBar ...
0
votes
1answer
62 views

Canvas drawing error

When I try to draw an image to a Canvas element I get this exeption: Uncaught Error: INDEX_SIZE_ERR: DOM Exception 1 textureLoadedstaticsprite.js:14 StaticSpritestaticsprite.js:21 ...
0
votes
0answers
59 views

GWT - NS_ERROR_DOM_INDEX_SIZE_ERR when calling drawImage() on canvas.getContext2d()

I am running into an NS_ERROR_DOM_INDEX_SIZE_ERR exception when trying to apply Context2d.drawImage(ImageElement image, double sx, double sy, double sw, double sh, double dx, double dy, double dw, ...

1 2