Search results for query: *

  1. H

    Exploring LSB of Each Byte in a 24-Bit Picture

    what is wrong with this code? typedef unsigned long DWORD; typedef unsigned short WORD; typedef struct { int Signature; DWORD Size; DWORD Reserved; DWORD BitsOffset; } BITMAP_FILEHEADER; typedef struct { DWORD HeaderSize; DWORD Width; DWORD Height; WORD Planes...
  2. H

    Exploring LSB of Each Byte in a 24-Bit Picture

    Thank you Borek for this piece of code.i will go to implement it to what i want.and don't worry i will not bombard you with questions until i read it (the codes)carefully and check my courses stuff.but be ready !
  3. H

    Exploring LSB of Each Byte in a 24-Bit Picture

    Dear Borek Can you translate the last sentence into C language i would be very thankful:blushing:
  4. H

    Exploring LSB of Each Byte in a 24-Bit Picture

    in page http://en.wikipedia.org/wiki/BMP_file_format" [Broken] at the bottom ther is a table which draws the contents of the a 2x2 bmp pictures the are in 0x :42 4D 46 00 00 00 00 00 36 00 ...00 FF 00 00 00 so they are separate numbers stored in bytes,and if i (for example) want to modify the...
  5. H

    Exploring LSB of Each Byte in a 24-Bit Picture

    I know the internal structure of .bmp and i know that it is made of headers which contains information about the .bmp like width,height ,bitdepth. but my problem is that how to open it into my program .i have seen lots of codes on the internet that are named for example "bitmaploader" or thing...
  6. H

    Exploring LSB of Each Byte in a 24-Bit Picture

    Hello every body : i am very new to programming ,i am trying to write a programme that will work on the LSB of each byte in a 24 bit picture. now my question is how to treat a .bmp file ,i mean can i consider it as an array of integers with leth (for example)800x600. and start to changing the...
  7. H

    The Next Step in Learning C Programming: Suggestions & Resources

    Hello every body! I have read "The C Programming Language" and i want to know if i want to go further what is the next book you suggest?
  8. H

    C# Can anyone explain what this c# code does or give a C equalivent?

    These two functions are used for empadding and extracting the bits from a byte ,they are used for steganography with LSB method in 24-bit .bmp pics,i just wanted to kmow that how they work ,i mean with some examples.can anyone help?:biggrin:
  9. H

    C# Can anyone explain what this c# code does or give a C equalivent?

    C# vs c ! Hello every body! can anyone explain what this c# code does or give a C equalivent? public static void Replace(ref byte b, int pos, byte value) { b = (byte) (value == 1 ? b | (1 << pos) : b & ~(1 << pos)); } public static byte...
  10. H

    Integral evaluation problem

    your solution seems nice honestly i thought it is a hard one,becouse i picked it form "A coures of pure mathematics"
  11. H

    Integral evaluation problem

    Evaluate \int\frac{arctan(x)dx}{(1+x^2)^\frac{3}{2}}
  12. H

    Program that can steganograph a picture (BMP)?

    a 24 bit pticture uses 3 bytes for a pixel like this(11111111,11111111,11111111) but a 8 bit picture uses a byte for showing a pixel like this (11111111) the question is that in 24 bit pics first 8 bits are (?) for blue and next 8 bits for green and finally for red. how the RGB is for 8bit...
  13. H

    Program that can steganograph a picture (BMP)?

    thanks for you'r suggestions i will come back soon with:wink: new questions.
  14. H

    Program that can steganograph a picture (BMP)?

    how languages treat the bmp files? do they treat diffrently? i mean how a language like c treat a bmp file?
  15. H

    Program that can steganograph a picture (BMP)?

    LSB method has a simple explanation but when we want to implement it to a BMP image with C it doesen't become as easy as you said i don't know how to start and how should i start coding i have no starting point and that's terrible! can anyone give more help please?:blushing:
  16. H

    Program that can steganograph a picture (BMP)?

    after doing some searching i realized that the LSB method is very suitable for my project the problem is that i coulden't find any complete algorithm for this. i was wondering does anybody knows the complete algorithm of LSB method?
  17. H

    Program that can steganograph a picture (BMP)?

    my teacher advised me a way which name's was "spatial" anybody knows what it is?:rolleyes:
  18. H

    Program that can steganograph a picture (BMP)?

    wikipedia is very general it dosen't give a starting point
  19. H

    Program that can steganograph a picture (BMP)?

    i am taking a c course in university and the in the third section of class professor announced the project of the term every body got shocked . i have 3 about 30 days to find the algorithm and general solution but i don't know how to start? can you help me?
  20. H

    Program that can steganograph a picture (BMP)?

    can anyone write a program that can steganograph a picture (BMP)? or any seggestion?
  21. H

    An simple program

    Can anyone write a program that multiply two( for example 157 digits) number? (without using long integers or ...)
  22. H

    Up from Earth's Centre through the Seventh Gate

    Up from Earth's Centre through the Seventh Gate, I rose, and on the Throne of Saturn sate, And many Knots unravel'd by the Road, But not the Master-Knot of Human Fate. The blasphemy of somebody like me is not easy and exorbitant, There isn't any stronger faith than my faith, If...
  23. H

    Re-write the denominator as x*(x^6-1)=x*(x^3-1)*(x^3+1)

    but it takes an hour to do it is there any simpler method for this?
  24. H

    Re-write the denominator as x*(x^6-1)=x*(x^3-1)*(x^3+1)

    Can anyone help me with this \int \frac{dx}{x^7-x}?
  25. H

    Finding Natural Numbers n Satisfying a Congruence

    fin all natural numbers n that n\sigma (n) \equiv 2(mod\varphi(n))
  26. H

    Equation a^x=x^a has another solutions exept x=a

    can anyone show that this equation a^x=x^a has another solutions exept x=a if a>e (2.71...)
  27. H

    Algorithm to find out whether an input is a prime number or not

    Homework Statement 1- write an algorithm to find out whether an input is a prime number or not. 2-write aa program to compute square root by Newton method 3-write an algorithm to show an input is perfect or not. 4- Homework Equations The Attempt at a Solution
  28. H

    X^2+y^2+z^2=nxyz n is natural

    can anyone give solution to this quation x^2+y^2+z^2=nxyz n is natural
  29. H

    Can any one example a function that has limit just in one point

    can anyone example a function that has limit just in one point
  30. H

    Find the sum(1/4)+(4/8)+(8/12)+

    \sum(\frac{1} {6(4k+1)} - \frac{1} {2(4k+1)} + \frac{1} {2(4k+3)} - \frac{1} {6(4k+1)} )
  31. H

    Find the sum(1/4)+(4/8)+(8/12)+

    \sum_{k=0}^infty \frac{1} {(4k+1)(4k+2)(4k+3)(4k+4) is equal to \sum(\frac{1} {6(4k+1)} - \frac{1} {2(2k+1)} + \frac{1} {2(4k+3)} - \frac{1} {6(4k+1)} ) and use integrals
  32. H

    Find the sum(1/4)+(4/8)+(8/12)+

    \sum _{k=0}^\infty \frac{1}{(4k+1)(4k+2)(4k+3)(4k+4)}
  33. H

    Find the sum(1/4)+(4/8)+(8/12)+

    (1/4!)+(1/8*7*6*5)+(1/12*11*10*9)+... we can guess the general sentence .after that use definite integrals. thats all.
  34. H

    Find the sum(1/4)+(4/8)+(8/12)+

    the answer contains Pi and Ln .
  35. H

    Find the sum(1/4)+(4/8)+(8/12)+

    (1/4!)+(4!/8!)+(8!/12!)+(12!/16!)+...
  36. H

    Find the sum(1/4)+(4/8)+(8/12)+

    find the sum (1/4!)+(4!/8!)+(8!/12!)+...
  37. H

    Prime numbers use

    What is yhe usage of big primes in Cryptography?
  38. H

    I is defined by i^2 = -1

    WE know that sin(x)\leq1 but sin(i) is something else an anyone explain
  39. H

    Limit candidate for L'hopital

    sorry i made mistake in typing
  40. H

    Limit candidate for L'hopital

    \lim_{x \rightarrow infinity}/ left(\frac{\1+Tan\frac{/pi}{2x}}{1+sin\frac{/pi}{3x}}}right)^x
  41. H

    I is defined by i^2 = -1

    What is the meaning Sin(i) do we have imaginary angel?
  42. H

    Example a function that is continuous at every point but not derivable

    can you example a function that is continuous at every point but not derivable
  43. H

    Phi Physics Help: Solving for N

    how we prove the statement in post 3
  44. H

    Phi Physics Help: Solving for N

    How we prove that? \forall n\in\mathbb{N}\;\varphi(n)\mid n
  45. H

    Phi Physics Help: Solving for N

    how we prove \forall n\in\mathbb{N}\;\varphi(n)\mid n
  46. H

    LaTeX I want to be able to use latex but I do not know how

    I want to be able to use latex but I do not know how ?help
  47. H

    Phi Physics Help: Solving for N

    i made a mistake in writing
  48. H

    Phi Physics Help: Solving for N

    \foralln\inN\varphi(n)/mid/n
Back
Top