×
INTELLIGENT WORK FORUMS
FOR COMPUTER PROFESSIONALS

Contact US

Log In

Come Join Us!

Are you a
Computer / IT professional?
Join Tek-Tips Forums!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!

*Tek-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

Posting Guidelines

Promoting, selling, recruiting, coursework and thesis posting is forbidden.

Students Click Here

problem with bitmap

problem with bitmap

problem with bitmap

(OP)
hi,
i need some help in graphics display of bitmap.
i load a bitmap from file, resize it and display it. when form is closed the bitmap is save to a config-file as byte[].
when i load the bitmap from config-file i get the following exception :
"rotatedImage.Palette" caused excetion of type "System.Runtime.InteropServices.ExternalException",ErrorCode = -2147467259
the error occurs at line rotatedImage.RotateFlip(rotateFlipType); (rotateFlipType = RotateNoneFlipNone) in resizeImage(..)
with this line removed no error occurs and the bitmap is displayed

// **********************************************************************************
public static Image resizeImage(Image image, int newwidth, int newheight, RotateFlipType rotateFlipType)
// **********************************************************************************
{
PixelFormat pxlfrmt = image.PixelFormat;
// clone the Image instance, since we don't want to resize the original Image instance
Image rotatedImage = (Image)image.Clone();

rotatedImage.RotateFlip(rotateFlipType);

Size newSize = CalculateResizedDimensions(rotatedImage, newwidth, newheight);
Bitmap resizedImage = new Bitmap(newSize.Width, newSize.Height, pxlfrmt);
resizedImage.SetResolution(72, 72);
using (var graphics = Graphics.FromImage(resizedImage))
{
// set parameters to create a high-quality thumbnail
graphics.InterpolationMode = InterpolationMode.HighQualityBicubic;
graphics.SmoothingMode = SmoothingMode.AntiAlias;
graphics.CompositingQuality = CompositingQuality.HighQuality;
graphics.PixelOffsetMode = PixelOffsetMode.HighQuality;
ImageAttributes attribute = new ImageAttributes();
attribute.SetWrapMode(WrapMode.TileFlipXY);

Rectangle rect = new Rectangle(new Point(0, 0), newSize);
graphics.DrawImage(rotatedImage,rect,0,0,rotatedImage.Width, rotatedImage.Height, GraphicsUnit.Pixel, attribute);
}
return resizedImage;
}

any suggestions ? be free to ask for more code

thanks in advance
franz

Red Flag This Post

Please let us know here why this post is inappropriate. Reasons such as off-topic, duplicates, flames, illegal, vulgar, or students posting their homework.

Red Flag Submitted

Thank you for helping keep Tek-Tips Forums free from inappropriate posts.
The Tek-Tips staff will check this out and take appropriate action.

Reply To This Thread

Posting in the Tek-Tips forums is a member-only feature.

Click Here to join Tek-Tips and talk with other members! Already a Member? Login

Close Box

Join Tek-Tips® Today!

Join your peers on the Internet's largest technical computer professional community.
It's easy to join and it's free.

Here's Why Members Love Tek-Tips Forums:

Register now while it's still free!

Already a member? Close this window and log in.

Join Us             Close