Tagged Questions
0
votes
0answers
26 views
Type mismatch: cannot convert from InputStream to Base64.InputStream
I'm trying to convert my image that i intend to upload to the server by converting to a string by using byte 64. However i got error on the is = entity.getContent(); method.
public void onClick(View ...
0
votes
0answers
36 views
Java - Does the following code return the pixel information? [closed]
I want to know what these lines of codes does line by line? I am trying to write a program where pixel values of an image is supposed to be altered(LSB technique).
Does it return the byte array of ...
0
votes
0answers
53 views
byte[] (Image) to Word Document
I'd like to draw a graphic, put the drawn graphic into a memory stream and then put the drawn graphic into a word document. So it would be like:
Graphics Canvas;
//...Drawing...
byte[] GraphicBuffer;
...
2
votes
1answer
84 views
Image stride for MSpaint image in C# is +1 byte, why?
I have a problem regarding some pixel-based operations in C#.
I wrote a class that serves as an image shell around a Bitmap. It can give you the RGB values of a pixel at a certain (x,y) location in ...
0
votes
1answer
151 views
Getting metadata from jpeg in byte array form in java
I have a jpeg image in the form of a byte array. How can I get the byte array in a form where I can strip the comments node of the metadata?
byte[] myimagedata = ...
ImageWriter writer = ...
0
votes
0answers
106 views
Send image bytes over TCP using Netcomm library
For the socket communication, Im using this library:
http://www.codeproject.com/Articles/118485/C-VB-NET-Multi-user-Communication-Library-TCP
I didn't have any problem to this moment.
I can send ...
0
votes
2answers
131 views
Reading image header info without loading the entire image
I have a .net 3.5 application that will be dealing with a large number of images. I need to check that the image extension is correct, the image height and width, and the PPI. I do not want to load ...
2
votes
1answer
1k views
System.Byte[] shows in gridview instead of an image?
Hi I have a page that allows me to upload photo. Then when i click upload...the photo has been approved. But when i want to display it in gridview. The column that the image must appear it gives me ...
1
vote
1answer
631 views
Converting Image to HEX plain text same to what stored inside SQL server
I have a Winforms application that uploads images to SQL Server 2005 as Image data type for SQL Server column within two methods Single and Multiple.
With single I send a parameter from C# to the SP ...
-1
votes
2answers
81 views
Android - downloading an image to byte[] and displaying it as Drawable in ImageView
I am trying to download an image from a URL to a byte[] and then display it as a drawable in an imageView. I use AsyncTask to download the method and then use onPostExecute() to display it but it ...
-1
votes
1answer
530 views
Image conversion to byte array in Java
Hi I have a model testing question for a object recognition project i am working on. I want to be able to take .jpeg files I have in my eclipse project folder and reduce them to very sparse byte ...
0
votes
0answers
158 views
Convert image from Arduino to JavaScript
I have done a system to read an image from an SD card on Arduino and send all these bytes to a Node.js server.
This is an example of the first row of the GIF image (I will use a JPEG)
...
1
vote
1answer
163 views
Accessing raw image bytes from iPhone to computer
I am doing image processing on the iPhone, but I need to get the raw bytes outside of cocoa so I can optimise the algorithm on a more image friendly platform like Matlab. I am using Brad Larson's ...
0
votes
1answer
495 views
How to get stream bytes and convert back to image - IOS
How to get stream bytes and convert back to image, below is my code.
But the images I get is blank. Why?
Something wrong of the code?
I get the bytes from my NSOutputStream and convert back to ...
1
vote
2answers
288 views
Save image in database visual studios
i would like to know how to save an image into database. I know that we have to convert the image into a byte first and then save it in the database. I have set the data type to byte in the database. ...
3
votes
2answers
522 views
Converting bytes to an image for drawing on a HTML5 canvas
Anyone know how I would convert bytes which are sent via a websocket (from a C# app) to an image? I then want to draw the image on a canvas. I can see two ways of doing this:
Somehow draw the ...
0
votes
1answer
204 views
Java - Saving an image from URL Issue
I am trying to save a list of images from a list of URLs. Currently, my program connects to the given URL with some defined proxy settings. Then, it uses a byte buffer to read the image and save it to ...
-2
votes
2answers
170 views
NullReferenceException:Object reference not set to an instance of an object
I am trying to read bytes of image from the XML file but I took that error at the second line.
XmlNodeList list = docc.GetElementsByTagName("Meaning");
byte[] imageBytes = ...
-1
votes
1answer
120 views
create a byte[] from a bmp c#
So I know there are plenty of examples of how to make a Bmp from a byte[], but I have to return a byte[] so it can be loaded by a webpage.
I have a Bmp that I did some processing on and I want to ...
0
votes
3answers
167 views
Change an Image to Byte, for file *within* project
Long story short: I want to put an image in a column of a DataTable. To do this, I've gathered from various other sources that I need to convert the image to bytes, and then assign the bytes to the ...
0
votes
2answers
1k views
Show image from Sql Server in a asp image control
Here is how my code is:
page.aspx:
<asp:Image ID="Image1" runat="server" />
Code behind:
byte[] IMG = class.readImg(id);
Image1.ImageUrl = "~/page.aspx?ID=" + id.ToString();
...
0
votes
2answers
270 views
Unable to transfer image using HTTP client
I have an image byte array which I need to send to a servlet on a server using HTTP client. We know how to send normal text data but unable to send the image data.
We created a string data from ...
0
votes
0answers
228 views
GWT - Image to byte[]
Hello i need to convert my uploaded image in GWT to a array of bytes. I was wondering if someone knows how to do this. I'm only using the client side of GWT. Thanks
0
votes
1answer
3k views
How to add a 'System.Drawing.Image' to a 'System.Web.UI.WebControls.Image'
I have two functions:
Function 1: ImageToByteArray: Is used to Convert an Image into a Byte Array and then Store in an Oracle Database, in a BLOB Field.
public byte[] ...
0
votes
1answer
1k views
java image data inputstream
the method below return data from InputStream as a string where the string will be constructed using StringBuilder
String getBytes(InputStream is) throws IOException{
StringBuilder sb = new ...
0
votes
1answer
635 views
how to convert image to base64 in silverlight
I need to convert an image to base64 string.
OpenFileDialog ofd = new OpenFileDialog();
ofd.Filter = "PNG Files (*.png;*.png)|*.png;*.png | All Files (*.*)|*.*";
ofd.FilterIndex = ...
1
vote
1answer
643 views
ruby on rails: Convert an image file to byte array
I need to upload an image from a rails form using Ajax and convert it into a byte array to show a html preview of the image.
When I read the file, it returns me binary data which is not readable by ...
1
vote
1answer
694 views
Combine multiple byte array images into one
I can create an image on the server from a byte array stored in the database. But how do I combine each byte array into one image. Basically I want to stack them on top of each other (they are all ...
1
vote
1answer
2k views
Convert Hex string to Image
I am using FormsConnect an App for the iPad to export signatures to XML.
The output from the App is as follows:
...
0
votes
2answers
764 views
Converting varbinary to image in silverlight (part 2)
I am trying to convert a varbinary to an image in my silverlight project.
First I get the Binary from my database in my service.
[OperationContract]
public byte[] getAfbeelding(int id)
{
...
0
votes
2answers
3k views
How can you display an image from Sql Server 2008 in asp.net using c#? [duplicate]
Possible Duplicate:
What's the best way to display an image from a sql server database in asp.net?
bytearray to image asp.net
How can you display an image from Sql Server 2008 in ...
2
votes
2answers
1k views
In j2me How to Save Image in Phone Memory for s40?
Images are locally saved in that application.I want save image from j2me application
to phone memory.Is there is any encoder or convert byte array?How to Save it?Pls help me....
try {
...
0
votes
2answers
401 views
Can anyone help me to upload an image to server
How to upload an image (as byte array) to server using web service, in Android ?
2
votes
3answers
5k views
Convert byte array (byte[]) to Image in Java
I have a byte[] that I want to convert to an Image and display the image in a label.
The byte[] is of a jpeg 2000 format.
I have tried the code below but it returns null:
InputStream in = new ...
2
votes
1answer
1k views
how to convert Image to string the most efficient way?
I want to convert an image file to a string. The following works:
MemoryStream ms = new MemoryStream();
Image1.Save(ms, ImageFormat.Jpeg);
byte[] picture = ms.ToArray();
string formmattedPic = ...
5
votes
5answers
1k views
Best way of saving image file and to save memory
In my program i am creating some big pictures (Image objects), and saving them to disk. Then I add them to a list List<Image> but after saving 50 pictures and adding them as Image objects to my ...
1
vote
1answer
656 views
How to read an image in as a byte array using Perl?
I have very little Perl experience.
I need to read a binary image in and pass it to the Image::ExifTool module.
Here is my code:
use Image::ExifTool;
my $exifTool = new Image::ExifTool;
open( ...
10
votes
2answers
789 views
What is the difference between a string and a byte string?
I am working with a library which returns a byte string and I need to convert this to a string. Although I'm not sure what the difference is - if any.
Could someone please explain. Thanks.
1
vote
2answers
387 views
How do I get the color depth and/or the resolution from a byte string in Python?
^ As above. Is this possible?
I'm using a library to get image data from an mp3 and it returns the data as a byte string but to display the image I need to get the resolution and color depth.
...
1
vote
1answer
472 views
How do I work with “image data as a byte string”, using Python?
First I'm going to explain what I'm trying to do and then explain my problem.
Okay so I've been making prototypes on a project that I hope to be working on over the summer. The project is a small ...
0
votes
0answers
660 views
Save image in SQL Sevrer 2005 (server-client) [closed]
Dears,
I am working on IM program (Instant messaging)
and using C# and Microsoft SQL Server 2005
When the client trying to change the display picture to picture from PC
client will send the protocol ...
0
votes
1answer
754 views
how to save HTML in byte[] as Image??? c#
i have HTML page source of website saved as String in string PageSource;
i need to save it in SQL Database as Image of type image.
How to convert PageSource in byte[] and save it as Image in ...
4
votes
3answers
9k views
Android byte[] to image in Camera.onPreviewFrame
When trying to convert the byte[] of Camera.onPreviewFrame to Bitamp using BitmapFactory.decodeByteArray gives me an error SkImageDecoder::Factory returned null
Following is my code:
public void ...
1
vote
1answer
2k views
Android: get image from base64binary format
I use web service to get image. The service response contains image in base64Binary format. I try to decode response data with Base64.decode() (http://iharder.sourceforge.net/current/java/base64/). ...
2
votes
1answer
684 views
Convert an image from bytes in xml to word document
I've created an application in c# where an image is inserted into xml by turning it into bytes. How do i then convert this image from the xml into a word document?
2
votes
2answers
6k views
open file in python and read bytes
i'm trying to open an jpg image in python to read the bytes.
so far i have
f = open("test.jpg")
ima = f.read(16)
print "'%s'"%(ima)
so it will read 16 bytes and displays the string in console. ...
0
votes
4answers
13k views
Convert a Byte array to Image in c# after modifying the array
I'm trying to convert a byte[] to an image in C#. I know this question has been asked on different forums. But none of the answers given on them helped me. To give some context=
I open an image, ...
0
votes
4answers
446 views
bytes to image converting error
am crteating a client server application
and the client will ask the server for a certain image, and the server will send it to the client
when the client receive it , it will show it in a picturebox
...
3
votes
2answers
1k views
from string of bytes to OpenCV's IplImage in Python?
I am streaming some data down from a webcam. When I get all of the bytes for a full image (in a string called byteString) I want to display the image using OpenCV. Done fast enough, this will "stream" ...
9
votes
2answers
19k views
byte[] to image android
My issue is as follows :
I have stored a few pictures into the sqlite database, using the blob format, which seems to work ok. now i want to get my pictures out of the DB and put then back into ...


