473,757 Members | 5,404 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Loading PictureBox images using OpenFileDialog

If I load a PictureBox image from an embedded resource within my application
it works fine but if I load the same image from a file using OpenFileDialog
(as an ImageStream or using the file name) the background color is not masked
out.

Any ideas?
Nov 21 '05 #1
8 10334
"..:: Kevin ::.." <Ke***@discussi ons.microsoft.c om> schrieb:
If I load a PictureBox image from an embedded resource within my
application
it works fine but if I load the same image from a file using
OpenFileDialog
(as an ImageStream or using the file name) the background color is not
masked
out.


Which image format does the image have?

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>

Nov 21 '05 #2
I have tried with a bmp image and a gif image and the problem is the same for
both formats

"Herfried K. Wagner [MVP]" wrote:
"..:: Kevin ::.." <Ke***@discussi ons.microsoft.c om> schrieb:
If I load a PictureBox image from an embedded resource within my
application
it works fine but if I load the same image from a file using
OpenFileDialog
(as an ImageStream or using the file name) the background color is not
masked
out.


Which image format does the image have?

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>

Nov 21 '05 #3
Kevin,

There seems something very special in you code. The OpenFileDialog is only
giving a string to use in the by instance image.fromstrea m command.

I hope this helps,

Cor
"..:: Kevin ::.." <Ke***@discussi ons.microsoft.c om> schreef in bericht
news:2D******** *************** ***********@mic rosoft.com...
If I load a PictureBox image from an embedded resource within my
application
it works fine but if I load the same image from a file using
OpenFileDialog
(as an ImageStream or using the file name) the background color is not
masked
out.

Any ideas?

Nov 21 '05 #4
Cor,

The code I am using is as follows:

Dim ImageStream As System.IO.Strea m

If openFileDialog1 .ShowDialog() = DialogResult.OK Then

ImageStream = openFileDialog1 .OpenFile()

If Not (ImageStream Is Nothing) Then

picImage.Image = Image.FromStrea m(ImageStream)

End If

End If
"Cor Ligthert [MVP]" wrote:
Kevin,

There seems something very special in you code. The OpenFileDialog is only
giving a string to use in the by instance image.fromstrea m command.

I hope this helps,

Cor
"..:: Kevin ::.." <Ke***@discussi ons.microsoft.c om> schreef in bericht
news:2D******** *************** ***********@mic rosoft.com...
If I load a PictureBox image from an embedded resource within my
application
it works fine but if I load the same image from a file using
OpenFileDialog
(as an ImageStream or using the file name) the background color is not
masked
out.

Any ideas?


Nov 21 '05 #5
Kevin,

Maybe is yours better and did I even write the wrong method in my previous
reply.

However I use normally is. (watch typos, I typed most it in this message)

\\\
If openFileDialog1 .ShowDialog() = DialogResult.OK Then
picImage.Image = Image.FromFile( openFileDialog1 .FileName)
End If
////

http://msdn.microsoft.com/library/de...mfiletopic.asp

Have a look at the overloaded method as well.

I hope this helps,

Cor
Nov 21 '05 #6
"..:: Kevin ::.." <Ke***@discussi ons.microsoft.c om> schrieb:
I have tried with a bmp image and a gif image and the problem is the same
for
both formats


BMP doesn't support transparent backcolors at all. Use the code below to
load a transparent GIF file:

\\\
Dim o As New OpenFileDialog( )
If o.ShowDialog() = DialogResult.OK Then
Me.PictureBox1. Image = Image.FromFile( o.FileName)
End If
o.Dispose()
///

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>

Nov 21 '05 #7
We can set colors in bitmaps to transparent in VB.Net so shouldn't bmp handle
transparent backgrounds if using 32bit bitmaps? I know you are correct
because I've tried saving 32 bit bitmaps with a color transparent and it
doesn't work.

--
Dennis in Houston
"Herfried K. Wagner [MVP]" wrote:
"..:: Kevin ::.." <Ke***@discussi ons.microsoft.c om> schrieb:
I have tried with a bmp image and a gif image and the problem is the same
for
both formats


BMP doesn't support transparent backcolors at all. Use the code below to
load a transparent GIF file:

\\\
Dim o As New OpenFileDialog( )
If o.ShowDialog() = DialogResult.OK Then
Me.PictureBox1. Image = Image.FromFile( o.FileName)
End If
o.Dispose()
///

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>

Nov 21 '05 #8
"Dennis" <De****@discuss ions.microsoft. com> schrieb:
We can set colors in bitmaps to transparent in VB.Net so shouldn't bmp
handle
transparent backgrounds if using 32bit bitmaps? I know you are correct
because I've tried saving 32 bit bitmaps with a color transparent and it
doesn't work.


You can actually make the bitmap transparent in memory by calling its
'MakeTransparen t' method, for example.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>

Nov 21 '05 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
3012
by: Fredo Vincentis | last post by:
Is there any possibility to resize images using ASP? I provided one of my clients with a Content Management System using SAFileup and although I told him to resize images to a reasonable size before uploading them, he didn't do it. If there was a way to do this using ASP, it would solve all problems.
1
4065
by: Chris Jakeman | last post by:
Hi, Internet Explorer doesn't load JPGs progressively. I need to show a large graphic (100KB) on dial-up lines, so I searched for a way to emulate progressive loading of images. Couldn't find anything, so I've written my own, with bands of low-res image being loaded and then overwritten with high-res. Have I been re-inventing the wheel?
0
2393
by: Dev | last post by:
Friends, I want display the directory name(is not file names)using openFileDialog controls.Is it possible? If so how do to this? If anyone knows....Please help me... Thanks, Dev
1
4949
by: Austin Jan | last post by:
Hi all, In this code snip try { using(OpenFileDialog dlg = new OpenFileDialog()) { //do something }
0
1754
by: erkidevries | last post by:
Problem compiling Tkinter program with bmp images (using py2exe) I have a Tkinter gui program that uses bmp as backgrounds. The program itself works when I run from the source. I placed the .bmp files in the same folder as the script. I run my .py script (from IDLE) and all the backgrounds are loaded as intended. in my script I load the images like this:
10
13414
by: eholz1 | last post by:
Hello Members, I am setting up a photo website. I have decided to use PHP and MySQL. I can load jpeg files into the table (medium blob, or even longtext) and get the image(s) to display without a problem. I am using chunk_split(data) and the base64_encode and base64_decode on the files. I do a select from the database, and then echo the image (with header(Content Type: image/jpeg) and the decoded image displays fine. Yes, I have...
1
3505
by: Naha | last post by:
Hi, I am starting a new project where I have to create a office monitoring system, whereby I need to capture images from a webcam and analyse these images using Java advanced imaging in order to determine if there are people in the images. Can someone please give me some guidance on how to do this, I am completely new to Java Advanced imaging!!!! Please...
8
7379
by: dvp10 | last post by:
Hi, i want open an .exe file using OpenFileDialog() in C# The code i ve used is - Stream strm; StreamReader reader; try { strm = OpenFileDialog1.OpenFile(); reader = new StreamReader(strm);
1
2685
by: DKn | last post by:
Hi, How to get the Files from Remote system by using OpenFileDialog control in C#.Net windows application? Actually i am trying to do Software upgradation for a remote system by using Win32_Product. For this i need to give the Patch location by using OpenFileDialog Control.. how to do this... Thanks in advance..
0
9487
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9297
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10069
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9904
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9884
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9735
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
6556
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5168
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
3
3395
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.