Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

resize image in asp

Status
Not open for further replies.

olegflute

Technical User
Sep 10, 2003
11
AU
can somebody show me the code to resize image in asp?
 
The easiest way to resize an image (in any language...) is simply:

<img src=&quot;foo.gif&quot; height=150 width=150/>

I am, however, going to assume that this is not what you're looking for. In this case, check out this thread:


Good Luck =D

-----------------------------------------------
&quot;The night sky over the planet Krikkit is the least interesting sight in the entire universe.&quot;
-Hitch Hiker's Guide To The Galaxy
 
sorry, but that is just resizing of display. I have some code for that image resizing but on the code :

Set Image = Server.CreateObject(&quot;SSLib.SSImage&quot;)
Set Mask = Server.CreateObject(&quot;SSLib.SSImage&quot;)
Set Background = Server.CreateObject(&quot;SSLib.SSImage&quot;)

I have the error: Error Type:
Server object, ASP 0177 (0x800401F3)
Invalid ProgID.

How can I get that library or object working on my PC?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top