-
Intel releases JPEG Lib v. 1.5
I just received an email from Intel announcing the release of their JPEG
library v. 1.5. It had a number of important bug fixes and improvements,
but the one that stood out was this:
* Support for Microsoft Visual Basic*
Just thought you might be interested <g>
http://developer.intel.com/vtune/PER.../ijl/index.htm
Ray Mercer
MS-MVP Visual Basic
www.shrinkwrapvb.com
-
Re: Intel releases JPEG Lib v. 1.5
Cool! Maybe the MS's bug loading JPG's will go away now?
--
~~~
C'Ya,
mrfelis
mrfelis@yahoo.NOSPAM.com
just remove the spam
Ray Mercer <raymer@mvps.org> wrote in message
news:39f8e562$1@news.devx.com...
> I just received an email from Intel announcing the release of their JPEG
> library v. 1.5. It had a number of important bug fixes and improvements,
> but the one that stood out was this:
>
> * Support for Microsoft Visual Basic*
>
> Just thought you might be interested <g>
> http://developer.intel.com/vtune/PER.../ijl/index.htm
>
> Ray Mercer
> MS-MVP Visual Basic
> www.shrinkwrapvb.com
>
>
>
-
Re: Intel releases JPEG Lib v. 1.5
> Cool! Maybe the MS's bug loading JPG's will go away now?
Bug?
Mike
-- EDais --
WWW: Http://Members.xoom.com/EDais/
Work E-Mail: EDais@btinternet.com
Other E-Mail: Frankle@btinternet.com
-
Re: Intel releases JPEG Lib v. 1.5
> Bug?
Load a JPG into a picture box with out a border using loadpicture. I have
yet to see the image load without one or more edges getting mangled in the
process.
--
~~~
C'Ya,
mrfelis
mrfelis@yahoo.NOSPAM.com
just remove the spam
Mike D Sutton <Frankle@btinternet.com> wrote in message
news:39f9cc7b@news.devx.com...
> > Cool! Maybe the MS's bug loading JPG's will go away now?
>
>
> Mike
>
>
> -- EDais --
>
> WWW: Http://Members.xoom.com/EDais/
> Work E-Mail: EDais@btinternet.com
> Other E-Mail: Frankle@btinternet.com
>
>
-
Re: Intel releases JPEG Lib v. 1.5
> Load a JPG into a picture box with out a border using loadpicture. I have
> yet to see the image load without one or more edges getting mangled in the
> process.
Seems to work fine here?
I'm using:
Private Sub Form_Load()
With Picture1
.BorderStyle = 0
.Picture = LoadPicture("J:\Pics\Temp.jpg")
End With
End Sub
(VB6 Ent. SP4, PIII 450mhz, 256 RAM, ATI Rage 128 (AGP) w/ 32mb RAM)
The JPG is 200*150, Progressive (3 scans) and set to quality 6 in Photoshop
5.5 (7.45kb)
Sure it's not your graphics card/drivers?
Mike
-- EDais --
WWW: Http://Members.xoom.com/EDais/
Work E-Mail: EDais@btinternet.com
Other E-Mail: Frankle@btinternet.com
-
Re: Intel releases JPEG Lib v. 1.5
What an amazing difference a border can make! Here's what I was doing:
Loading any JPG through LoadPicture into an autosized picture box (picIn).
Using Paintpicture to strech the image to the current resolution and paint
into another picture box (picOut). Saving picOut.Image to a BMP.
If picOut has a border, the edges of the BMP were scrambled. The borderstyle
of picIn has no effect on the final file.
After fiddeling with the project, I've managed to change something and the
image property always has a white line along the bottom of the screen.
--
~~~
C'Ya,
mrfelis
mrfelis@yahoo.NOSPAM.com
just remove the spam
Mike D Sutton <Frankle@btinternet.com> wrote in message
news:39f9f10d@news.devx.com...
> > Load a JPG into a picture box with out a border using loadpicture. I
have
> > yet to see the image load without one or more edges getting mangled in
the
> > process.
>
> Seems to work fine here?
>
> I'm using:
>
> Private Sub Form_Load()
> With Picture1
> .BorderStyle = 0
> .Picture = LoadPicture("J:\Pics\Temp.jpg")
> End With
> End Sub
>
> (VB6 Ent. SP4, PIII 450mhz, 256 RAM, ATI Rage 128 (AGP) w/ 32mb RAM)
> The JPG is 200*150, Progressive (3 scans) and set to quality 6 in
Photoshop
> 5.5 (7.45kb)
> Sure it's not your graphics card/drivers?
>
> Mike
>
>
> -- EDais --
>
> WWW: Http://Members.xoom.com/EDais/
> Work E-Mail: EDais@btinternet.com
> Other E-Mail: Frankle@btinternet.com
>
>
-
Re: Intel releases JPEG Lib v. 1.5
The white line seems to be part of the desktop, I checked the actual BMP
file and it wasn't there.
--
~~~
C'Ya,
mrfelis
mrfelis@yahoo.NOSPAM.com
just remove the spam
mrfelis <mrfelis@yahoo.NOSPAM.com> wrote in message
news:39fac80d$1@news.devx.com...
> What an amazing difference a border can make! Here's what I was doing:
>
> Loading any JPG through LoadPicture into an autosized picture box (picIn).
> Using Paintpicture to strech the image to the current resolution and paint
> into another picture box (picOut). Saving picOut.Image to a BMP.
>
> If picOut has a border, the edges of the BMP were scrambled. The
borderstyle
> of picIn has no effect on the final file.
>
> After fiddeling with the project, I've managed to change something and the
> image property always has a white line along the bottom of the screen.
>
> --
> ~~~
> C'Ya,
> mrfelis
> mrfelis@yahoo.NOSPAM.com
> just remove the spam
> Mike D Sutton <Frankle@btinternet.com> wrote in message
> news:39f9f10d@news.devx.com...
> > > Load a JPG into a picture box with out a border using loadpicture. I
> have
> > > yet to see the image load without one or more edges getting mangled in
> the
> > > process.
> >
> > Seems to work fine here?
> >
> > I'm using:
> >
> > Private Sub Form_Load()
> > With Picture1
> > .BorderStyle = 0
> > .Picture = LoadPicture("J:\Pics\Temp.jpg")
> > End With
> > End Sub
> >
> > (VB6 Ent. SP4, PIII 450mhz, 256 RAM, ATI Rage 128 (AGP) w/ 32mb RAM)
> > The JPG is 200*150, Progressive (3 scans) and set to quality 6 in
> Photoshop
> > 5.5 (7.45kb)
> > Sure it's not your graphics card/drivers?
> >
> > Mike
> >
> >
> > -- EDais --
> >
> > WWW: Http://Members.xoom.com/EDais/
> > Work E-Mail: EDais@btinternet.com
> > Other E-Mail: Frankle@btinternet.com
> >
> >
>
>
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Development Centers
-- Android Development Center
-- Cloud Development Project Center
-- HTML5 Development Center
-- Windows Mobile Development Center
|