Date: Wed, 2 Oct 2002 01:50:09 GMT
Reply-To: "Richard A. DeVenezia" <radevenz@IX.NETCOM.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: "Richard A. DeVenezia" <radevenz@IX.NETCOM.COM>
Organization: EarthLink Inc. -- http://www.EarthLink.net
Subject: Re: Image Entry in a SAS Catalog for an AF Image Viewer Control
Content-Type: text/plain;
"Deborah Testa" <dtesta@sevenofninesystems.com> wrote in message
news:andd0q$cul$1@slb7.atl.mindspring.net...
> I want to be able to create a .image entry in a SAS catalog for use in an
AF
> Image Viewer Control. Currently my file exists on my file system as a
.gif.
> Can I use SAS/Graph to convert it?
>
> Thanks,
>
> Deborah
>
>
Deborah:
Use the legacy IMGDAT class.
init:
declare sashelp.fsp.imgdat image
= _new_ sashelp.fsp.imgdat ();
image._readDirpathMember (
'M:\Program Files\Microsoft Office\Office\Bitmaps\Dbwiz'
, 'CONTACTS.GIF'
);
image._writeCatalog ('WORK.GIFS.CONTACTS.IMAGE');
image._term();
return;
Note: The Image Viewer Control should be able to display an image that is
stored in a host file.
--
Richard A. DeVenezia
http://www.devenezia.com/downloads/sas/af