Tagged Questions
0
votes
1answer
25 views
asp.net new Bitmap of file in relative path of ASP.NET Solution and not fully qualified file system?
Is it possible to reference a new bitmap pointing to file in the .NET solution without giving it a fully qualified file system location? Trying to do this to run in Azure without having to set up ...
1
vote
1answer
40 views
Draw on Panel, save as Bitmap
I'm trying to make a simple application where the user can draw on the Panel and save it to their computer as a bitmap. When I proceed to the save part, however, all I get is an empty (white) bitmap.
...
0
votes
2answers
181 views
How to load 12 bit image into System.Drawing.Bitmap?
I have a server serving 12bit image and I can access the image through http, but since it is 12 bit image I am not able to load into System.Drawing.Bitmap(Stream stream).
Image format PNG bit depth ...
1
vote
2answers
141 views
How to save draw paint with custom view android?
I am using following code . and i am getting problem when saving images .i am able to save bitmap but when save bimap it saves also i erased paint also with black color
public class FingerPaint ...
0
votes
1answer
17 views
Color some areas delimited programmatically
I want to write an algorithm that allows me to fill color in delimited area in a draw. I show you an example:
BEFORE
AFTER
what's the way to begin this algorithm? Where I can act to realize this ...
2
votes
1answer
116 views
A 320kb background image takes up roughly 30MB memory space
At the moment I am working on a application that is supposed to run on both tablet and phone.
The resolution of my main menu background image is 2000x1250, and it is resized depending on the canvas ...
0
votes
1answer
164 views
The method getDrawingCache() returns null depends on portrait or landscape mode
If I start my App in Landscape-Mode the getDrawingCache() returns the Bitmap I need, after changing the orientation to portrait mode (while app is running), getDrawingCache() returns null.
If I start ...
0
votes
1answer
102 views
Graphics doesn't draw on Bitmap
I'm writing a program that renders some Kinect data into small bitmaps (recorded gesture preview\frames preview). I have a class that stores mapped Kinect data to screen (X = [0; 1], Y = [0, 1]); Now ...
0
votes
1answer
77 views
Get images from DrawingGroup
Maybe it's a stupid question, but I have some problems with finding the proper answer:S
How to get frames as Bitmap's or Image's (or something similar) from DrawingGroup? I don't actually know how to ...
1
vote
0answers
129 views
Draw with canvas Android
For now I want the canvas to just draw a color.
public class AndroidTentaTestActivity extends Activity {
private Bitmap bm;
private Canvas c;
public void onCreate(Bundle ...
1
vote
1answer
62 views
Working with primitives in XNA
Perhaps I am trying to use XNA in a way that it was not designed, but I would very much like to be able to draw my own primitives and save them as a bitmap, or a texture2D, or anything that will hold ...
3
votes
2answers
194 views
Android - Draw on top of an image
b2.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
setContentView(R.layout.new_main);
String editTextStr = ...
1
vote
1answer
308 views
Bitmap Shader with alpha channel. (Alpha is drawing black..?)
I get my bitmap, use it as a shader tile mode.
The PNG is mostly alpha except for the shape outline to draw.
Except it draws the outline, but is surrounded by black, not seethrough (alpha).
...
1
vote
0answers
95 views
Android redrawing overlaying transparent bitmaps
I have a transparent bitmap (clock face) that I redraw to mimic
a chronograph, and it works perfectly( overlaying different dials) use a base
empty faceplate PNG and draw the needles on top of it ...
1
vote
0answers
134 views
In Android drawing why does using a buffered Bitmap improve line quality of a drawing?
Finger paint drawing implies drawing to an offline bitmap that gets drown in the view at onDraw. But also painting the line in onDraw improves the quality of the line, i.e. it's not as jagged.
Can ...
0
votes
1answer
55 views
Unable to draw on top of bitmap to which i set BG from resource
I am trying to set a background ti bitmap and then to be able to draw on top of it so later i will be able to save the bitmap to gallery.
@Override
protected void onSizeChanged(int w, int h, int ...
0
votes
0answers
45 views
How do I locate an image in a specific place in bitmap?
I have a drawing app. I have added GridView intent from which I choose by clicking
an object/image which I would like to paste it in the bitmap by clicking.
As I understand I have to make the change ...
0
votes
1answer
463 views
Moving Bitmap region
In order to make my question more understandable I give you pseudocode snippet:
// dx (i.e. offset value) can be arbitrary.
for(i = 0; i < bitmap.columnsCount - dx; i++)
{
// "=" means copy ...
1
vote
1answer
236 views
android 2D bitmap drawing
Can any1 tell me why I cant add a bitmap onto my surfaceView like this:
steering = new Steering(BitmapFactory.decodeResource(getResources(), R.drawable.ic_launcher), ...
3
votes
1answer
447 views
Drawing on C# Bitmap with C++
I have a 3rd party dll (plain C++) which draws on a HDC some lines.
I want to have these lines on a C# Bitmap or Form.
I tried to give the C++ a HBITMAP or a HDC of the Graphics.FromImage(bitmap)
but ...
0
votes
3answers
345 views
how to draw Bitmap/SVG on iphone screen
Dear all hope you all will be fine and doing your best.i am quite new to objective c ios development.i just want to draw bitmaps/SVG on iphone screen at random location.i have studied ...
1
vote
1answer
2k views
Drawing using a bitmap on PictureBox in C#
my first question here. And I'm sure it's an easy one, but I can't find a solution anywhere, I've read lots and just can't comprehend how to what i need to do:
I have a *.gif file, that I want to ...
0
votes
1answer
267 views
text file to bitmap in allegro
hello what I'm currently dealing with is the ability to get input from a text file and then convert it into a bitmap and save it to a file.
the input looks like this:
########
# #
########
...
0
votes
1answer
670 views
'System.Drawing.Graphics.FromImage(System.Drawing.Image)' is a 'method' but is used like a 'type'
So, I'm just beginning C# today in hopes of creating a screen shot program. Originally, I was looking into using AIR to accomplish this, as I know a lot more when it comes to web development. None the ...
1
vote
1answer
114 views
How to determine that Drawing.Graphics object is related to given Bitmap object?
I have a array of Bitmaps and a array of Graphics. Initially each Bitmap object have our corresponding Graphics object in these arrays. But during the work bitmaps in array may be replaced by new ...
2
votes
3answers
862 views
How to copy Bitmap pixels to other Bitmap preserving alpha transparency in C#?
Could some rewrite the following function to use any optimized mechanism? I'm pretty sure that this is not the way to proceed, copying pixel by pixel.
I have read about AlphaBlend, or BitBlt, but I'm ...
1
vote
2answers
397 views
How to fill a freedrawn shape with colour
Im making a program using Java for android.
I'm drawing alot of rectangles on a bitmap using 4 lines connecting. ATM the lines are black and the background is white, i want to fill these "boxes" with ...
1
vote
1answer
425 views
Drawing Bitmap is slow when scaled to a high resolution
I have a really simple task to do which is to draw a background image in a custom View. I create a bitmap and scale it to fit the width and height of the view. This makes the app way slower, like half ...
2
votes
2answers
616 views
Drawing with mouse causes gaps between pixels
I have been creating a drawing app as a test for WPF, and have been going well. The problem I've run into is that if I draw the pixel under the mouse to a bitmap each time it moves, I only get one ...
0
votes
1answer
611 views
OPEN GL Android - How to convert a Bitmap object to a drawable texture
I'm trying to implement a Grid of scrollable images in OPEN GL 2.0. I already have the view implemented using Canvas Drawing, but for performance reasons I decided to transition to OGL.
In my ...
0
votes
2answers
398 views
Is there a way to check if Bitmap is empty in .NET?
I am trying to check on a bitmap object to see if it either set or empty. It seems .NET doesn't have that function. I've looked in MSDN library site and stackoverflow and there is very little mention ...
0
votes
1answer
115 views
Android drawing short colors
I am using the RGB565 format for pixels which only requires 16bits to hold each pixel. Unfortunately the Android Bitmap class is integer only as far as I can tell. This means that I have to double the ...
3
votes
2answers
247 views
Best Drawing approach
I have developed an application in wxWidgets in which I am using bitmap for drawing. So First time when my application launches, it reads coordinates from file and draw lines accordingly. The ...
4
votes
4answers
1k views
C# bitmap drawing doesn't render to the screen
I am trying to write a drawing program for use with a tablet. For this I need fall-off and transparency for use with pressures. So I am using the bitmap system in C# for image construction.
I cannot ...
1
vote
1answer
369 views
Problems drawing the real cursor
I'm developing a screeshot application. I'd like to catch the real cursor to draw it on a bitmap. I have two implementation: in the former the cursor is displayed well, but it is always the default ...
6
votes
3answers
1k views
Image.RotateFlip leaking memory :/
Although I have been programming for about 11 years(mostly VB6, last 6 months C#), it's THE first time to actually ask a question :) I have found all my answers from teh interwebz but this issue i ...
2
votes
2answers
150 views
Class Graphics in Blackbery
Plz explain briefly with examples the meaning of
public void drawBitmap(int x,
int y,
int width,
int height,
...
0
votes
2answers
2k views
Load and merge two images in WPF
I try to write an application that create a watermarked image from the loaded jpeg in WPF.
I want to load in WPF an jpeg image and draw it with a predifined png with a transparence region over.
I've ...
1
vote
3answers
889 views
Draw opaque lines onto translucent TBitmap
I’ve got an empty bitmap, and I’ve got a drawing routine that receives a TCanvas. The drawing routine is part of a larger library, and so effectively out of my control.
Simply put: I want the pixels ...
10
votes
1answer
17k views
creating an empty bitmap and drawing though canvas in android
Hi friends
i want to create an empty bitmap and set canvas to that bitmap and then draw any shape on bitmap.
Plz provide some sample code for doing this job
any help will be appreciated
2
votes
1answer
456 views
System.Drawing.Graphics very large images
I'm creating a basic autocad viewer that has to deal with very large images.
I'm using System.Drawing.Graphics to render the images via:
Bitmap imageData;
public void Init(string filepath)
{
...
3
votes
1answer
5k views
WPF, C#: Draw a line onto existing bitmap in image control
I have a bitmap image in an image control
I need to draw a red line on the bitmap each time I click with the mouse onto it, at the place where I clicked the mouse.
...
9
votes
3answers
936 views
Android drawBitmap Performance For Lots of Bitmaps?
I'm in the process of writing an Android game and I seem to be having performance issues with drawing to the Canvas. My game has multiple levels, and each has (obviously) a different number of objects ...
0
votes
1answer
528 views
Why does my metafile “lose” a bitmap?
Recently I found a bug while drawing stuff with metafiles. Right now I am not sure if I am doing something wrong or if there is a bug within the drawing of metafiles itself:
While drawing images on a ...
7
votes
2answers
4k views
drawBitmap() and setPixels(): what's the stride?
Could please somebody explain me (ASCII is really welcome) what the stride argument stands for in Canvas.drawBitmap() and in Bitmap.setPixels()/getPixels()? I understand it's a way to skip elements in ...
1
vote
1answer
2k views
Saving Bitmap as 32bpp doesn't keep transparency
using (var bmp = new Bitmap(image.Width, image.Height, PixelFormat.Format32bppArgb))
using (var g = Graphics.FromImage(bmp))
{
g.Clear(Color.Transparent);
g.DrawImage(image, 0, 0);
...
3
votes
1answer
914 views
Drawing to a bitmap context
I am trying to draw to a bitmap context but coming up empty. I believe I'm creating things properly because I can initialize the context, draw a few things, then create an image from it and draw that ...
1
vote
3answers
3k views
c# drawing image to bigger bitmap [closed]
I have create a bitmap. it's width 500px, and height 500px..
And i have an image. it's w : 300px, h:300px;
i want to set image to bitmap 500px, 500px without space or black background.
Could u ...
1
vote
2answers
651 views
AggPas Delphi Drawing Transparencies
What im trying to do
I have a drawing procedure (it works) it draws to a bitmap "OBJmap" it then puts OBJmap into Wholemap. This all works but there is a issue. It seems to treat the undefined parts ...
0
votes
1answer
2k views
drawing layout through canvas
I have a layout like :
<ll vertical>
<ll horizental>
<textview></textview>
<textview></textview>
</ll>
<ll horizental>
...
