Image.FromStream, another System.Drawing workaround

 

Since Buz is gone skiing, I'm alone to code the PixVillage next version... and I can tell you there will be a lot of good things in it.

But that's not what I wanted to talk about. You've surely already loaded a Image from a Stream... This is really simple :

Image image;

using (Stream stream = File.OpenRead(filename))

image = Image.FromStream(stream);

Then if your image is not at the beginning of the stream, you will naturally write :

Image image;

using (Stream stream = File.OpenRead(filename))

{

stream.Seek(offset,SeekOrigin.Begin);

image = Image.FromStream(stream);

}

And it will fail. It will fail because Image.FromStream can only read image from the beginning of the stream. A simple and direct workaround is to copy image portion of the stream in a MemoryStream :

Image image;

using (Stream stream = File.OpenRead(filename))

{

stream.Seek(offset,SeekOrigin.Begin);

using (MemoryStream memoryStream = new MemoryStream())

{

CopyLength(memoryStream, stream, imageStreamLength, 512);

image = Image.FromStream(stream);

}

}

 

public static void CopyLength(Stream to, Stream from, long length, int bufferSize)

{

byte[] buffer = new byte[bufferSize];

int len;

if (length < bufferSize)

bufferSize = (int)length;

while (length >= 0 && (len = from.Read(buffer,0,bufferSize)) != 0)

{

to.Write(buffer,0,len);

length -= len;

if (length < bufferSize)

bufferSize = (int)length;

}

}

This solution works well, but it adds an time and memory overhead, because the whole image stream is copied to memory.

A more elegant workaround is to lure the function that read the stream. You provide to the LoadStream function a Stream object called StreamView that reads data from the original stream but offsetting every seek operation with a given offset. This way, when the StreamView moves to position 0, it is ready to read from the offset position in the stream. Here is the complete code for this class :

public class StreamView : Stream {

 

private Stream baseStream;

private long offset;

private long length;

 

public StreamView(Stream baseStream,long offset,long length) {

this.baseStream = baseStream;

this.offset = offset;

this.length = length;

baseStream.Position = offset;

}

 

public override bool CanRead {

get { return baseStream.CanRead; }

}

 

public override bool CanWrite {

get { return baseStream.CanWrite; }

}

 

public override bool CanSeek {

get { return baseStream.CanSeek; }

}

 

public override IAsyncResult BeginRead(byte[] buffer,

int offset, int count, AsyncCallback callback,

object state) {

return baseStream.BeginRead (buffer, offset,

count, callback, state);

}

 

public override IAsyncResult BeginWrite(byte[] buffer,

int offset, int count, AsyncCallback callback,

object state) {

return baseStream.BeginWrite (buffer, offset,

count, callback, state);

}

 

public override void Close() {

baseStream.Close ();

}

 

public override int EndRead(IAsyncResult asyncResult) {

return baseStream.EndRead (asyncResult);

}

 

public override void EndWrite(IAsyncResult asyncResult) {

baseStream.EndWrite (asyncResult);

}

 

public override void Flush() {

baseStream.Flush();

}

 

public override long Length {

get { return length; }

}

 

public override long Position {

get { return baseStream.Position - offset; }

set { baseStream.Position = value + offset; }

}

 

public override int Read(byte[] buffer, int offset, int count) {

return baseStream.Read(buffer,offset,count);

}

 

public override int ReadByte() {

return baseStream.ReadByte ();

}

 

public override long Seek(long offset, SeekOrigin origin) {

switch(origin) {

case SeekOrigin.Begin:

return baseStream.Seek(offset + this.offset,origin) –

this.offset;

case SeekOrigin.Current:

return baseStream.Seek(offset,origin) - this.offset;

case SeekOrigin.End:

return baseStream.Seek(this.offset + length –

offset,SeekOrigin.Begin) - this.offset;

}

return 0;

}

 

public override void SetLength(long value) {

throw new NotSupportedException();

}

 

public override void Write(byte[] buffer, int offset, int count) {

baseStream.Write(buffer,offset,count);

}

 

public override void WriteByte(byte value) {

baseStream.WriteByte(value);

}

}

Now, reading from stream is really straight forward :

Image image;

using (Stream stream = File.OpenRead(filename))

{

stream.Seek(offset,SeekOrigin.Begin);

using (StreamView view =

new StreamView(stream, offset, imageStreamLength))

{

image = Image.FromStream(view);

}

}

There is no memory and time overhead anymore, you directly read the image from the stream.

Skup

posted on Tuesday, March 08, 2005 6:07 PM

Feedback

# re: Image.FromStream, another System.Drawing workaround 5/21/2005 1:39 AM Zakir

This is a nice code...
There is 1 ploblem if blocks the memory...did u checked that ? Pls tell me How u minimized that

# re: Image.FromStream, another System.Drawing workaround 5/23/2005 12:44 PM Skup

Of course, the 'Cannot access a closed stream' exception probleme discussed in http://www.pixvillage.com/blogs/devblog/archive/2005/03/09/154.aspx can still occure... and the only way to solve the problem is to copy the image bits by making a copy. And you should not forget that :
1) the Exif properties are lost in the copy (you should copy it yourself, refers to Buz's posts about Exif)
2) the link with the original image is lost, so you cannot perform lossel jpeg rotations once you've copied it.

# miu-miu-shoes 10/27/2010 10:54 AM miu-miu-shoes

hirts with <a href="http://www.miu-miu-shoes.org/categories/miu-miu-sunglasses-13-b0.html">miu miu sunglasses</a> their names embroidered

# re: Image.FromStream, another System.Drawing workaround 3/9/2011 1:21 AM tag heuer

http://www.amywatches.com/product.php?id=21&categories_id=36">http://www.amywatches.com/product.php?id=21&categories_id=36 tag heuer
http://www.amywatches.com/product.php?id=13&categories_id=36">http://www.amywatches.com/product.php?id=13&categories_id=36 breitling
http://www.amywatches.com/product.php?id=14&categories_id=36">http://www.amywatches.com/product.php?id=14&categories_id=36 cartier
http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/ mens watches
http://www.amywatches.com/product.php?id=8&categories_id=36">http://www.amywatches.com/product.php?id=8&categories_id=36 panerai
http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/longines-watches.html replica longines watches
http://www.amywatches.com/product.php?id=4&categories_id=36">http://www.amywatches.com/product.php?id=4&categories_id=36 rolex
http://www.amywatches.com/product.php?id=31&categories_id=36">http://www.amywatches.com/product.php?id=31&categories_id=36 longines watches
http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/ ladies watches
http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/breitling-watches.html replica breitling watches
http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/cartier-watches.html replica cartier watches
http://www.amywatches.com/product.php?id=8&categories_id=36">http://www.amywatches.com/product.php?id=8&categories_id=36 panerai watches
http://www.amywatches.com/product.php?id=21&categories_id=36">http://www.amywatches.com/product.php?id=21&categories_id=36 tag heuer watches
http://www.amywatches.com/product.php?id=19&categories_id=36">http://www.amywatches.com/product.php?id=19&categories_id=36 omega watches
http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/rolex-watches.html replica rolex watches
http://www.amywatches.com/product.php?id=42&categories_id=36">http://www.amywatches.com/product.php?id=42&categories_id=36 audemars piguet watches
http://www.amywatches.net/ replica watches
http://www.amywatches.com/product.php?id=26&categories_id=36">http://www.amywatches.com/product.php?id=26&categories_id=36 patek philippe
http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/tag_heuer-watches.html replica tag heuer watches
http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/patek_philippe-watches.html replica patek philippe watches
http://www.amywatches.com/product.php?id=42&categories_id=36">http://www.amywatches.com/product.php?id=42&categories_id=36 audemars piguet
http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/ replica watches
http://www.amywatches.com/product.php?id=14&categories_id=36">http://www.amywatches.com/product.php?id=14&categories_id=36 cartier watches
http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/ womens watches
http://www.amywatches.com/product.php?id=4&categories_id=36">http://www.amywatches.com/product.php?id=4&categories_id=36 rolex watches
http://www.amywatches.com/product.php?id=19&categories_id=36">http://www.amywatches.com/product.php?id=19&categories_id=36 omega
http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/">http://www.watchever.com/panerai-watches.html replica panerai watches
http://www.amywatches.com/product.php?id=26&categories_id=36">http://www.amywatches.com/product.php?id=26&categories_id=36 patek philippe watches
http://www.amywatches.com/product.php?id=13&categories_id=36">http://www.amywatches.com/product.php?id=13&categories_id=36 breitling watches
http://www.amywatches.com/product.php?id=31&categories_id=36">http://www.amywatches.com/product.php?id=31&categories_id=36 longines

# Wholesale Clothing Suppliers 3/16/2011 3:41 AM Wholesale Clothing Suppliers

good

# underwear 11/24/2011 6:43 AM aussieBum swimwear

The main function of underwear is more conducive to live and work. For men is to live in the root and eggs stretched, so as not to walk or do something random shaking, affecting work and life. For women, the menstrual period comes in an easy to absorbent pads good things, to avoid the outflow of blood affect the life and work. Then choose a suitable underwear becomes very important. <a href="http://www.underwear-sale.org">Calvin Klein Underwear</a> can help you do so. <a href="http://www.underwear-sale.org/womens-calvin-klein-c-48.html">calvin klein steel</a> and <a href="http://www.underwear-sale.org/mens-underwear-calvin-klein-underwear-c-42_46.html">calvin klein 365</a> series is especially good. We have <a href="http://www.underwear-sale.org">underwear sale</a>. In addition to these, this site also <a href="http://www.underwear-sale.org/aussiebum-retro-swimwear-c-44.html">aussieBum Swimwear</a> and so on. Welcome to win your favor. Thank you!

# louis vuitton sale 2/1/2012 3:29 AM louis vuitton sale

Bags of many different models, materials and colors at the
louis vuitton sale

outlet can be significant along with ample, nevertheless quite trendy, fantastic requirement.Here is a world of
louis vuitton outlet

where you can find all kinds of new style and fashion Louis Vuitton bags. We really want to lead the trend and let our customer in the pursuit of luxury and fashion, satisfied the needs of customers.

# coach factory outlet 2/1/2012 5:57 AM coach factory outlet

If you do not know design can be the most fashionable this fall, consider a glance on
coach factory outlet

! This summer, you have a wide range of options, because there are numerous designs, you can find from.
coach factory online

is actually a stylish Coach online store to sell perfect quality and discount Coach handbags, Coach bags, Coach wallets and Cheap Coach Purse.If you love Coach,you will like to get the best price on it.

# christian louboutin uk 2/1/2012 5:58 AM christian louboutin uk

If you have enough leisure time, you may go to the mall or go to the christian franchised store to have a good look at varieties of
christian louboutin uk

the diverse styles and rich colors of the purses with low cost will surely impress you a lot!You will always get surprised by the beautiful colors and perfect details of
christian louboutin

.So come on, do not hesitate.

# coach bags 2/1/2012 10:02 AM coach bags

coach bags

with fashion style and top quality succeed. In any occasions they are very suitable and appropriate for its precise and rich design.
coach outlet store

vision system is a visual enjoy, is a visual art. The particular design has been integrated function and the element of elegancy, then show you an exquisite and excellent product.

# coach outlet online 2/1/2012 10:26 AM coach outlet online

Turn your attention to such discount coach sneakers for women from
coach outlet online

, you will find something unique and special of such authentic coach for sale at coach factory outlet store online.Just come to our
coach factory outlet

to get your favorite bag. There are many kinds of designs of coach products for you to make choice.
http://www.coachoutletonlinecoachdays.com

# chanel uk 2/1/2012 10:27 AM chanel uk

Brilliant colors and/or coatings are added to these crystals to create pendants, stones, and beads of dazzling beauty and tremendous variety of shapes and sizes.
chanel uk

is unmatched in quality and distinction.The
chanel bags

reflect the class of the person holding them, as people are extremely conscious of their personality portrayed.
http://www.chanel-outlet.org.uk

# coach outlet 2/1/2012 10:27 AM coach outlet

The coach shoulder bags win a lot of grace and market share. It can be said that the coach is a legend in history bags at
coach outlet

.You might have seen plenty of greatest quality bags into your entire life span but when it comes to the
coach outlet store online

they are remarkably efficient, versatile and carved bags beyond your imaginations.
http://www.coachoutletcoachstore.com

# coach factory outlet 2/2/2012 2:19 AM coach factory outlet

That experts claim coach factory outlet shopping is in the changes they are available in, which can make it well suited for benefit from to be a'luggage'bag. There are different kinds of crossbody bags within marketplace nowadays. Even so it is not possible to beat the timeless design jointly with traditional elegance of the Bags at the coach factory outlet online.
http://www.coachfactoryoutletonlinedays.com

# coach outlet online 2/2/2012 2:20 AM coach outlet online

If you buy Coach items at the
coach outlet online

store, the goods will be sent out within 24 hours after confirming your payment and arrive to your door within 7 work days.
coach outlet

can provide the coach exactly the same is expected in a retail store. It can help you find bags of various colors, shapes and designs, which prove once again that the coach is actually a selection for the housekeeper.
http://www.coachoutletonlinecell.com

# christian louboutin 2/2/2012 2:21 AM christian louboutin

This elegant and discreet pair of rhodium-plated button christian louboutin will add sparkle to your outfit. They are covered in clear crystal pave and reflect the light in magical ways. christian Madison Handbags and christian Poppy Bags are viewed among probably the most newsworthy among the particular christian louboutin uk so far.
http://www.christian-louboutinshoes.co.uk

# louis vuitton uk 2/2/2012 2:22 AM louis vuitton uk

More and more people can afford louis vuitton uk, not to say they are on sale. Price is not equivalent with value,they own classical style, fine materials, elaborate technique. If you want to catch up to the latest vogue, having Louis Vuitton Handbags of the latest styles can absolutely satisfy you.Just visit LV outlet webpage and select the most suitable products for yourself.
http://www.louisvuitton-full.org.uk

# chanel uk 2/2/2012 2:32 AM chanel uk

chanel uk have own characteristic designs. The beautiful crystals have added the magical finishing touch to countless bridal gowns. Just get some for yourself. I hope that I have helped you realize the potential for a breathtaking theme on your wedding day.Incorporating chanel handbags and pearls into your decor is a very fun and easy way to create a classic and warm setting.

http://www.chanel-bags.org.uk

# coach outlet store 2/2/2012 2:33 AM coach outlet store

Coach Outlet Store sells goods that are constructed to meet the highest standards of quality and functionality.You can trust it 100 percent. Wholesale coach outlet are even provided for VIP members. Haven't got your own Coach yet? Why not come to coach outlet store online outlet.

http://www.coachoutletstoreonlinegood.com

# coach outlet online 2/2/2012 2:33 AM coach outlet online

I got to know it from my elder sister who owns enviable luxury Coach bags. Coach Outlet Online Store is established to be your home shopping paradise. Coach New Signature BackPack Black Beige is a useful backpack for outdoors activities. It's convenient that you can freely take along with for travel,climbing and go for school.In our coach outlet,there are many graceful styles of Coach backpack for you.

http://www.coachoutletonlinefull.com

# louis vuitton uk 2/2/2012 4:01 AM louis vuitton uk

This
louis vuitton uk

for sale belongs to the sounding just what are termed as Louis Vuitton vintage best sellers, many other products and services for the reason that range appearing companies.I am so confused that I don,t even know where to buy the
louis vuitton

Handbags. Because I can prefer to chose the fashionable design, favorable price, top service .
http://www.louis-vuittonukoutlets.org.uk

# louboutin uk 2/2/2012 4:09 AM louboutin uk

Come by for dinner soon and check out the wine list for yourself. We are always here to help with selection. Cheers for the successful of christian
louboutin uk

.The christian Signature Hobo is from the latest release of
christian louboutin uk

. Its crisp, scribble material, leather handle, perfectly complements the relaxed shape of this stylish pouch.
http://www.christianlouboutinuk-sale.co.uk

Title
 
Name
 
Url
Comments   
Protected by Clearscreen.SharpHIPEnter the code you see: