Syntax:
insert into <tablename>(<column-name>) (select * from openrowset(bulk N'<path of image>',single_blob) as <column-name>)
eg:
create table picture (photo image)
insert into picture(photo) (select * from openrowset(bulk N'e:\prash\sunrise.jpg',single_blob) as photo)