answersLogoWhite

0

idkkkkkkk

User Avatar

Wiki User

15y ago

What else can I help you with?

Continue Learning about Basic Math

How many colors does bmp contain?

A 32 bit per pixel bitmap will have 8 bits each for red green and blue, and 8 bits for alpha level. So 2^24 colors.


What size for a picture is '1mb'?

Usually pictures of JPEG or BMP occupy more space than the GIF which occupies the low space. In JPEG and BMP there is space for the background also.


What is the difference between primary colors and additive colors?

#1 primary colors make additive colors


'With block' in visual basic?

if we want to make our code short and easy then With Block is a very nice choise in some cases. Consider the following code for loading picture in a picture box. On Error Resume NextCommonDialog1.CancelError = TrueCommonDialog1.Filter = "Pictures (*.bmp;*.jpg)|*.bmp;*.jpg"CommonDialog1.Flags = cdlOFNFileMustExistCommonDialog1.ShowOpenIf Err.Number = cdlCancel ThenExit SubElseIf Err.Number 0 ThenMsgBox "Error Loading File"End IfPicture1.Picture = LoadPicture(CommonDialog1.FileName) You may notice that there are a lot of name I have written repeating again and again which may become boring sometime. What about some shortcut. With block is the answer. we can replace the same code as following easyl which is more convenient.On Error Resume NextWith CommonDialog1.CancelError = True.Filter = "Pictures (*.bmp;*.jpg)|*.bmp;*.jpg".Flags = cdlOFNFileMustExist.ShowOpenIf Err.Number = cdlCancel ThenExit SubElseIf Err.Number 0 ThenMsgBox "Error Loading File"End IfPicture1.Picture = LoadPicture(.FileName)End With With block must need to be closed with "End With".


Which colors are complementry colors?

They are colours that do not match