TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Bhavesh Vankar
766
1.1k
88.2k
image to binary
Mar 18 2021 10:47 AM
when i use below code to convert image1.ImageUrl into binary it will work fine.
MemoryStream ms =
new
MemoryStream();
byte
[] imgtobinary =
new
byte
[ms.Length];
ms.Position = 0;
ms.Read(imgtobinary, 0, (
int
)ms.Length);
ms.Read(imgtobinary, 0, imgtobinary.Length);
but when i use below code to convert image1.ImageUrl into binary it is not working and page is not responding anthing no generate any error and response.
what should i do for this ?
i want to convert image into binary which is captured and display on image control by webcam.
Reply
Answers (
2
)
how to find a repeated characters in a Word
download multiple images into a folder from listview