A bitmap(BMP) is a raster graphics image file. It is also referred to as a Device Independent Bitmap (DIB).
-1
votes
1answer
43 views
Example of a singleton class with a dictionary of BitmapImages [closed]
I know this is a simple question, but I can't find an example anywhere. Please think of this as helping out a newbie. I need to create a singleton class so I can access a dictionary of BitmapImages ...
0
votes
1answer
82 views
C# Windows 8 Store (Metro, WinRT) Byte array to BitmapImage
Hey guys I am currently working on a Windows 8 Metro app that applies filters to images. I have a web version of the app and wanted to port it. But as we all know WinRT doesn't have all the good ...
0
votes
1answer
13 views
Changing the dimensions of a BitMapImage in WPF, and what kind of objects can I put in an <Image> element?
I am trying to create an explorer app with a TreeView element, and have different icons for each level of the tree, and following the article here: ...
0
votes
2answers
40 views
Out of memory exception while loading large number of images in wp7
I am loading a large number of images, say 250+ and getting this Out of memory exception.
My Code:
while (kount < imageItems.Count)
{
for (int i = 0; i < _grid.RowDefinitions.Count; i++)
...
1
vote
1answer
69 views
DirectoryNotFoundException when creating a BitmapImage
I develop an IOC framework in the form of a DLL that creates the application's main window and displays various WPF Pages in it. There is a folder of PNG images with their Build Action set to ...
1
vote
2answers
30 views
Pointer to a BitmapImage in a class
I'm creating a class, Plants. There will be many objects created from this class. Each object will need to contain a BitmapImage of the Plant.
However, there are only about 20 different kinds of ...
1
vote
0answers
43 views
Reduce the size of a bitmap to a specified size in Android
I want to reduce the size of a bitmap to 200kb exactly. I get an image from the sdcard, compress it and save it to the sdcard again with a different name into a different directory. Compression works ...
3
votes
1answer
95 views
Inno Setup Invalid Bitmap Image
I'm trying to replace the sidebar image on the start page of my installer. I keep getting the error 'Bitmap image is not valid'. The specs match the default Inno Setup installer sidebar .bmp exactly. ...
0
votes
1answer
29 views
Save BitMapImage to application folder
I am trying to save BitmapImage in application folder path. I am using following code
OpenFileDialog fileDialog = new OpenFileDialog();
fileDialog.Filter = "JPEG Files (*.jpeg)|*.jpeg|PNG Files ...
0
votes
2answers
26 views
Getting FATAL EXCEPTION at Bitmap
I am getting FATAL EXCEPTION while trying to draw image using ImageView after taking that image using mobile camera.But i am getting exception while creating image using Bitmap.
Code::
public ...
0
votes
2answers
30 views
Bind image control to BitmapImage in my class
Whenever I wanted to display an image in the past, I bound the image path to the image's source property. Too easy.
Now I want to change the image and always show the image with the latest changes. ...
0
votes
1answer
72 views
creating bitmap image from a hexadecimal data [closed]
Following array is a hexadecimal array of a monochrome bitmap image:
const unsigned char bill[]
{ ...
0
votes
1answer
56 views
Drawing semi-transparently on a BitmapImage on an Image in a ContentPresenter in a Viewbox
It seems like variations of this question have been asked before, but not this specifically. Also, it seems that BitmapImages are different from straight Bitmaps. So here we go:
I've got a ...
0
votes
0answers
68 views
how to add image in gallary dynamically
I want to add and delate dynamically images in my new gallery.I'm converting image to byte array(BitMap) and sending to another activity where it's shoud be my new gallery.This work good when I do ...
0
votes
2answers
27 views
What is the stride for a 256 color (8 bit) bitmap?
There are lots of questions (and answers) here and elsewhere about calculating stride. I've got some bitmaps that I need to read into memory. Everything works fine IFF they are 16.5 million colors (24 ...
1
vote
1answer
48 views
Draw rectangles over bitmapimage in WPF
I'm trying to figure out the best way to draw rectangles over a Image in wpf. When the user clicks somewhere in a thumbnail Image the region the user clicks should be marked with a semi-transparent ...
0
votes
0answers
32 views
what library that can be used to convert bitmap to vector?
My current project is related to bitmap to vector. so far i found these libraries:
potrace (http://potrace.sourceforge.net/)
(+) really good for line tracing
(+) documentation
(-) does not ...
2
votes
2answers
55 views
Creating BitmapImage from a byte array
I am trying to create a BitmapImage from a byte array which is returned by a service.
My code is:
using (sc = new ServiceClient())
{
using (MemoryStream ms = new MemoryStream(sc.GetImage()))
...
0
votes
2answers
45 views
How to create a NotifyIcon from a BitmapImage?
I have a resource item (a png file) in my resource dictionary wich I'm using it in several places. Now I want to use it as application's NotifyIcon. But I don't know how to do this. Have you any idea ...
0
votes
0answers
23 views
Bitmap Fill polygon windows store apps
I create a bitmapimage in windows store app,i want to fill polygon with points and color inside bitmapimage. I can work in wpf but in metro i can't. Can you help me idea?
0
votes
0answers
85 views
WPF C# image brightness
I loaded an image into BitmapImage.
<Image Margin="12,12,16,71" Name="imgPhoto">
OpenFileDialog op = new OpenFileDialog();
op.Title = "Select a picture";
op.Filter = ...
0
votes
1answer
35 views
Allegro 4 , load gif image
I am trying to create a program using allegro 4 to load a few images for creating a space invaders User interface.
#include <allegro.h>
int main(void)
{
char *filename = "ship.gif";
...
1
vote
1answer
75 views
Get an Image using button onClick
I'm trying to get an Image and want to put it into HashMap using `Button.onClickListener()
I am sure i am doing mistake here:
String s_image = imgv.toString();
I guess here i should use ...
0
votes
0answers
34 views
BitmapImage.CopyPixels gives the wrong pixel data
I'm retrieving pixel color data based on mouse clicks on an image. Here is how I load the pixel data:
BitmapImage bi = new BitmapImage(new Uri("pack://application:,,,/assets/" + mDir + "/mask.png"));
...
1
vote
3answers
46 views
Set ImageView usinh URL
I have an Image on my server. The URL for the image is something like :
http://www.mydomain.com/123456uploaded_image.jpg
I am trying to set this image to my ImageView. Here is the code that i tried:
...
1
vote
1answer
50 views
How to save and load in panel?
I want to save image from panel to bitmap and then I want to load the saved image after my Form comes out of minimizing mode.
Bitmap bmp = new Bitmap(panel1.Width, panel1.Height);
...
2
votes
2answers
88 views
How to decrease memory usage from multiple images?
My app downloads six images from here and plays them back in a loop. I download the images in a GIF format, convert them to PNG format using .NET Image Tools, and store each one as a BitmapImage, in a ...
0
votes
1answer
273 views
How to create a BitmapImage from a pixel byte array (live video display)
I need to display live images on a WPF control. I'm looking for the fastest way to do this using WPF.
I'm capturing images from a camera using its dll API (AVT).
The image is writen by the dll and ...
0
votes
2answers
21 views
Questions reagarding bitmap image and image storage
I have the bitmap image that I got from my camera activity. Can someone please guide me as to how can I store this image in the gallery?
code:
In my button OnClickListener
Intent campic=new ...
0
votes
0answers
203 views
Loading a Bitmap image from an access database to Delphi 7
I am trying to load a Bitmap image from my database in to my program. this is my code :
S := TMemoryStream.Create;
ImageQuery.SQL.Clear;
ImageQuery.SQL.Add('SELECT Image');
...
0
votes
1answer
32 views
How to save pixels displayed on the screen in mutable Bitmap
I am trying to make an Android aplication, in which you take a foto. You zoom in to a desired region of the foto then you copy this region into a Bitmap for further processing.
I tried to make a new ...
2
votes
0answers
54 views
WPF poor perfomance of loading images on WindowsXP
I have some code to load image thumbs and display them in listbox. It works properly on Win7. On Windows XP i takes about seven-ten minutes to load a few big images, while on seven it takes seconds. ...
0
votes
0answers
281 views
Failed binder transaction android bitmap
Please find below a code snippet of what i am trying.
PictureCallback mPicture = new PictureCallback() {
@Override
public void onPictureTaken(byte[] data, Camera camera) {
Bitmap bMap = ...
0
votes
1answer
87 views
How to create and retrieve new bitmap in iOS
I would like to convert an Image from one format(.png) to other image format (.img format). I was able to retrieve and modify the rgba values for the same image format.Is there any additional thing I ...
0
votes
1answer
67 views
Bytearray to string android
I am trying to create a camera intent and a sub portion of the code is given below.
public void onPictureTaken(byte[] data, Camera camera) {
String dat = new String(data);
byte[] ...
1
vote
0answers
138 views
Error when trying to merge two Pictures using WriteableBitMap
Basically I navigate to this page and pass it a name as a parameter, which I then use to retrieve that picture from isolated storage. At the same time I retrieve the "frame" from the assets folder. ...
0
votes
1answer
64 views
Reduce application memory for cropped image in C# WPF
We're displaying cropped images in our WPF application by creating a new CroppedImage from the original bitmap. but when we look at application memory it's the same for displaying cropped images as it ...
1
vote
1answer
108 views
Convert Gdk.Pixbuf to System.Drawing.Bitmap?
How do you convert a Gdk.Pixbuf (_pixbuf below) into a Windows Forms (System.Drawing) Bitmap? Below is code that uses Gtk.DotNet.Graphics, but it just gives a white image. Is there a better, more ...
0
votes
0answers
32 views
WPF BitmapImage bug loading 12 or 16bit?
I am experiencing strange behaviour when loading a 12bit tiff image. I want to convert the image into a 8bit representation in order to be able to display it. The code works well on a Windows 7 ...
0
votes
0answers
14 views
After Getting the Youtube Id How can i get image and set to image view in android
Programatically getting the id from the url.After that how can i get image from using that id and set to image view in android....
private void bitMap(String id) {
String s = ...
1
vote
1answer
195 views
Out of memory exception while loading images from isolated storage
I am getting OutofMemoryException in this particular code.
public BitmapImage GetImage(int pageNo)
{
if (!this._isLoaded)
{
this.Load();
}
...
0
votes
1answer
97 views
pick gallery image and convert to bitmap?
I am trying to pick an image from the gallery, convert it to a Bitmap, and display it in an ImageView.
the below code is used to pick image from the gallery
Intent pickPhoto = new Intent(
...
0
votes
1answer
120 views
How to read image dimensions at C# wpf - there is no dispose method for BitmapImage
With the way below i am able to read.
But there is no dispose method so i am not able to delete the file later.
So the below method is getting failed.
I could not come up with a proper solution.
...
4
votes
1answer
179 views
crop image without copying
I'm writing an application that requires me to split a large image into small tiles, where each tile is essentially a cropped version of the original image.
Currently my split operation looks ...
2
votes
2answers
223 views
BitmapImage.ImageOpened Not Firing
I am trying to download an image and have an event fire when it finishes. I use this:
BitmapImage btest = new BitmapImage(new Uri("http://www.google.com/images/srpr/logo4w.png"));
btest.ImageOpened ...
0
votes
1answer
104 views
Save a custom class to Isolated Storage using a Collection
I have created a custom class named ImageItem which contains a BitmapImage and string to gather the response of the CaptureImageTask. I would like to save each image and its respective path to an ...
0
votes
0answers
124 views
Windows 8 store app : compress jpeg, resize it
I develop a w8 store application.
I want to compress & resize a bitmapimage before send it over azure.
So here is my code :
using (var sourceStream = await sfile.OpenReadAsync())
...
0
votes
1answer
119 views
Passing bitmap to other activity getting message on logcat FAILED BINDER TRANSACTION
when i'm passing bitmap image to other activity i'm getting mag on logcat as-
03-20 12:06:56.553: E/JavaBinder(280): !!! FAILED BINDER TRANSACTION !!!
it's happening for large size image.small ...
0
votes
0answers
172 views
Windows store app : resize BitmapImage C#
I use http://writeablebitmapex.codeplex.com/
WriteableBitmap wb;
wb = await new WriteableBitmap(Image.PixelWidth, Image.PixelHeight).FromContent(Image.UriSource);
...
-1
votes
2answers
294 views
Windows Phone - Crop BitmapImage [closed]
I have BitmapImage and I need to crop it to a rectangle of size 200x200. The rectangle should contain the center of the source BitmapImage. The only solution I've founded, CroppedBitmap does not work ...









