Uploading And Resizing Pic
My client wants me to add a functionality which would enable him upload and resize the pictures. His server is having ASPUPLOAD and e-kov components intalled. Also he doesn't want to write files to the disk and save only to memory.
I can use ASPUPLOAD's functionality to save files in memory or save files in the database. My question is how can I access a file so that I can resize the image using e-kov software. And when using 'upload.save' only, without path, it saves the file virtualy but where does the file and how to access it.
View Replies
ADVERTISEMENT
I've been looking for ages for decent serverside (or clientside I suppose,) software for uploading images. I need the software to make thumbnails of the images too.
I'm making a property website product and I need to make it easy for the user to upload pics by browsing to them and selecting them. When he/she adds the info and photos the thumbnails will be made automatically ....
View Replies
View Related
I have a register module where user can register with their information and they have to upload their images.
1. I need to know how i rename that image and upload to server with that new name.
2. how to i change the image's height and width and then upload that image.
View Replies
View Related
I am working on a gallery and am uploading pics. Is there any way of resizing the resizing image eg make a thunbnail from the image been upload. Also can I rename the image so that images aren't overwritten.
below is the code I am using.....
View Replies
View Related
I currently use ASPImage and resize JPG files with no problem. How, though, do I resize GIF images? Is there a different component?
View Replies
View Related
I have been using Imager Resizer....
View Replies
View Related
Recommend me a good free image resizing tool you've been...
View Replies
View Related
I have a load of images on a server, but I don't want to resize the original images. I want to display the images on a page but at a reduced size.
Just forcing the browser to display the images at a smaller size using the width/height attributes is not really acceptable as the picture looks like *** (a technical term if ever there was one :P).
Ideally I want to see if there is the functionality to properly resize, i.e. resample?, the image on the fly. Im not interested in storing the images just resizing and displaying.
View Replies
View Related
I have a web page which pulls images from a access database.
The images are displayed on the page from a recordset (objRS("Thumbnails") - Thumbnails being the field in my database that holds each image.
However, because I want the images display in thumbnail format, it means I have to open Photoshop and resize each image to thumbnail size (100 x 100) before adding them to the database.
Is there a way in ASP that I could code so that each image brought in from the record set, no matter what size, will display at 100 x 100px so I don't have to manually resize them to thumbnail size myself?
View Replies
View Related
I'm designing a site in asp where the user can upload an image and the page will read from a database and show the image. The problem is that all images are odd sizes and the image is being stretched when displayed on the page. I want the page to intelligently resize the image so that it will fit within the confines of a frame. I've tried all sorts but nothing seems to work.
View Replies
View Related
I need a help to prevent resizing of <TDwhen i post inside this <TDhtml text of other web page.
View Replies
View Related
I realise that ASP can't dynamically create images on the fly using ASP code. I am considering getting a DLL file to do this for me. My question is this: do I just place the DLL on the server with my ASP file? As DLL files need registering, how does this work with using a web server? I have a folder called cgi-bin on my server.
I realise this is more a question for my webhost but I have never used a dll before and wondered if anyone could shed some light on what is involved?
View Replies
View Related
making the image proportion to its size...
View Replies
View Related
I've been tasked with the challenge of re-sizing images linked via BBcode on the fly. I have compiled a list of functions that do individual components of this task, but stringing them together has proved, well, a challenge.
I discovered this code that will re-size the images, however this will need to be added on an ad-hoc basis, and the fact that the image name appears twice complicates the usual system I used to add the code.
Usual way of replacing the code (inside a function):
Code:
vText = Replace(vText,"[ img ]","<div align='center'><img align='middle' src='")
vText = Replace(vText,"[/ img ]","'></div>")
Image resize code:
View Replies
View Related
I need to install a component which will upload and resize images (jpegs). I don't need too many bells and whistles but would like one which is reasonably good at keeping the file size low (or lets me set the compression options).There's quite a few out there, has anyone any recommendations?
View Replies
View Related
I have a sysmon activex control inside an ASP page. When I resize the window, the activex control does not resize itself to fit the window. Does anyone know how to make the activex control automatically resize to fit the window?
View Replies
View Related
how do I resize a two-dimensional array? The array I'm working with is "data(X)(Y)" where X is 0 or 1 and Y grows to a dynamic number.If "data(1)(highest element)" IsNull, then I need to strike it from the array. I believe this should be doable by simply resizing the second dimension down by one. Through researching I established the following set of code:
I = UBound(data(0)) - 1
ReDim Preserve data(2,I)
But it results in a "Subscript out of range" message on the latter line. Short of looping through and building a new array.
View Replies
View Related
I have a script on a site that i am redoing and have used an i frame that resizes depending on the size of the page that is loaded into it.
I would like to use an existing asp driven page from a realesate site to laod in to the iframe as the "listings" section; however the frame will not resize. any sugestions? Code:
View Replies
View Related
What is the difference between the HTML <table> and ASP <asp:table>? I've just shifted development environments from DreamWeaver to Visual Studio. I've put together a page by dropping elements directly onto the grid, but I get no automatic reformatting. My old technique from DW would be to put it all in a table for formatting, but I find that clumsy in VS.
First, they have both html and asp table controls, and I don't know the difference between them. Second, the two controls are rendered on the design page differently, and I really can't tell what they are going to do. Third, the asp:table is shown without any rows or columns. What's up with that?
View Replies
View Related
My company works with a lot of estate agent websites and other projects that require images to be uploaded by the client (and their employees). We have been searching for a client-side resizing application (such as a Java applet) that can perhaps create a thumbnail, as well as a smaller version of the original file and then upload these two images to the webserver.
There are plenty of php and perl Applets that do this, but none that can submit to an ASP form.
View Replies
View Related
is it possible to resize images uploaded in the dundas component or any other upload 3rd party component.
Also i woudl like to be able to rename them and put in specific folders?
View Replies
View Related
Can this be done? I have designed a site that displays images in a specific dimension, but the majority of site visitors either disregard this requirment or don't know how to resize images. Is there a way to upload in image and then physically resize it to whatever I want?
View Replies
View Related
i pulled this out from an archive but without any comments or instructions on how to use it. any ideas. Code:
View Replies
View Related
I need to add the functionality to upload an image to the webserver, store it in a folder and add its location to a database so I can find it. I have no idea how to get started on this though. Does anyone have an idea of how to do it or can point me in the direction of a good tutorial.
View Replies
View Related
I am trying to use the upload file feature that comes with Sun ONE ASP but cannot find any documentation on how to use it. As it is a former chilisoft product all the knowledge base documents, FAQ's, and basically all the useful stuff has been dumped by Sun.
Does anyone know how to use this feature or know of any sites where it is explained?
Please don't say "look on the Sun website" as I have been doing that all afternoon and can't find anything useful on the whole site!!
View Replies
View Related
1. I need to upload a text file (Word or txt file) to a server
2. Save the path of the uploaded file on the server to Access database
3. And then display the link of the uploaded file path in the Access database on asp page
View Replies
View Related
i developed website, in that i have one two asp pages one page to collect the data's and other is the confirmation page In the local host it runs very well but i uploaded the webpage the datas i collect could not be stored in the access database
error:
http 405 resource not allowed
my project consist
1 index page
pages folder (all the static pages, asp pages and access database)
images folder
i specified path as
path1= Server.MapPath ("db1.mdb")
View Replies
View Related
My form with a upload photo function is not working - Can some one please take a look and see were I have messed up. The code is 4 sections : The Form, The DB script, The submit Script and the Upload script. Code:
View Replies
View Related
i know that this thread allready exists buti still don't understand what to do ... i'm using microsoft frontpage and access database and would like to upload image file to access ... so ... it looks like that:
i have one page - on that page there is an upload form which leads to another ASP page ... on next page i would like to call that form from the previous page and then store it to the database (if it's possible i would like to do it without any software - because i'm not the owner of the server) ... Code:
View Replies
View Related
I have an application that works fine in Windows 2000 IIS, uploading files of any size to a server folder The same application installed in a Windows 2003 IIS limits the upload size to approx 200 Kb, trying to upload larger files generates an "Operation_not_allowed" error in the web log
I suppose that Microsoft introduced some limitation in either the new OS version or IIS but I'm not able to find any reference, except for the 4 Mb limitation in .NET, but it's not my case.
View Replies
View Related
My image is in local directory. Using "FILE" input type, I am getting the path of the image. How to upload this image to my server using ASP?
View Replies
View Related
I did a program with allowed to user to upload an excel file and insert those data into the access database. I did the testing on xp pro and to upload abt 300 records took me less than a minute.
However, the computer which the program is to be located is using windows 98. So i dowlnoaded the free server thingy. The upload time for 300 records here took about 15 minutes. haha
Just want to know what makes the uploading time so different?
View Replies
View Related
I've got an application that allows users to upload a
file to a directory.
The problem is some users (5-6) can't upload .doc files.
They can upload anything but .doc files. File size is not
an issue.
What could ever cause that????
View Replies
View Related