Does the ASP detection space support the AspJpeg component and generate thumbnails

Source: Internet
Author: User

' Function name: isobjinstalled
' Function: Check if the component is installed
' parameter: strclassstring----Component Name
' Return value: true----already installed
' False----not installed

function isobjinstalled (strclassstring)
On Error Resume Next
Isobjinstalled = False
Err = 0
Dim xtestobj
Set xtestobj = Server.CreateObject (strclassstring)
If 0 = Err then isobjinstalled = True
Set xtestobj = Nothing
Err = 0
End Function


' Thumbnail function

function Jpegsmall (ORIGINALPIC,S_OPIC,SP)
Dim jpeg,picpath,smallpathpic
If originalpic = "" or IsNull (originalpic) Then
Jpegsmall = ""
Else
If isobjinstalled ("Persits.jpeg") Then
Set jpeg = Server.CreateObject ("Persits.jpeg")
Opicpath = S_opic
Picpath = Server.MapPath (originalpic)
Smallpathpic = Server.MapPath (Opicpath)
Jpeg.open Picpath
Jpeg.width = Jpeg.originalwidth/sp
Jpeg.height = Jpeg.originalheight/sp
Jpeg.save Smallpathpic
Jpeg.close:set jpeg = Nothing
Jpegsmall = S_opic
Else
Jpegsmall = ""
End If
End If
End Function

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.