Welcome Guest! You need to login or register to make posts.

Notification

Icon
Error

2 Pages12>
Options
Go to last post Go to first unread
drano  
#1 Posted : Saturday, August 5, 2006 1:33:55 AM(UTC)
drano

Rank: Member

Groups: Member
Joined: 8/5/2006(UTC)
Posts: 6

I am working on an application that requires users to upload images. Most of the users are every day folk and do not use image edit software. It would be great if the image uploader had a crop feature. This would allow me to let the user crop their image in the browser and upload with minimal user skill. This would solve my two issues at the moment. 1) the file sizes are too large - image uploader will take care of that issue. 2) The images have additional background picture information that needs to be cropped out ?

It is the second issue of cropping an image that needs to be addressed. Does the image loader offer any basic image edit functions for me to allow the user to crop an image?

I want these basic image edits/crops to take place on the client side and then uploaded. This will optimize my image upload needs.

Thank you for your time, Jack.
drano  
#2 Posted : Sunday, August 6, 2006 9:16:05 AM(UTC)
drano

Rank: Member

Groups: Member
Joined: 8/5/2006(UTC)
Posts: 6

I have been looking at various products all weekend and found something that addresses my needs. activexobjects.com has an upload with edit feature that will work for me, although they do not appear to be developing anymore on this product. I feel if you could meet this need that I would rather buy from Aurigma.
Alex Makhov  
#3 Posted : Sunday, August 6, 2006 12:22:28 PM(UTC)
Alex Makhov

Rank: Advanced Member

Groups: Member
Joined: 8/3/2003(UTC)
Posts: 998

Hello,

I think we have a solution for you. Please contact with sales@aurigma.com on this question.
Sincerely yours,
Alex Makhov

UserPostedImage Follow Aurigma on Twitter!
drano  
#4 Posted : Monday, August 7, 2006 2:37:36 AM(UTC)
drano

Rank: Member

Groups: Member
Joined: 8/5/2006(UTC)
Posts: 6

I have checked and tested many of these image uploader components over the past week and keep coming back to this one for what seems to be better developer coding and true optimized bandwidth. Some of the products I have been testing use AJAX and want you to upload a large file to the servers and then edit/reduce them. This does not save me on the actual image bandwidth utilization. This product will help me for most of the browsers hitting my site. I just wish I my users could crop an image when using this component and then upload. This would be a tremendous savings on image bandwidth for my site. :)
quacka  
#5 Posted : Monday, August 7, 2006 3:00:28 PM(UTC)
quacka

Rank: Member

Groups: Member
Joined: 1/17/2005(UTC)
Posts: 32

I am also wanting this too.

Image uploader has a thumbnail resize function which can do the trick, but it put the word thumbnail in its name. would be good if we can remove this.
drano  
#6 Posted : Tuesday, August 8, 2006 10:35:22 AM(UTC)
drano

Rank: Member

Groups: Member
Joined: 8/5/2006(UTC)
Posts: 6

It is not that I want my users to resize the image. This would essentially just shrink the image. I want my users to be able to crop just the image data that is important in the picture and remove the rest. This would reduce the overall file size before the compression code before upload, optimizing the whole process. I invision a floating rectangle on a single image that the user gets to size and locate over the image they want to crop and upload just that data as the final image. I understand that this can only happen on one image at a time. Maybe this could be called Image Crop Uploader and be a separate product altogether.
Alex Makhov  
#7 Posted : Tuesday, August 8, 2006 12:46:49 PM(UTC)
Alex Makhov

Rank: Advanced Member

Groups: Member
Joined: 8/3/2003(UTC)
Posts: 998

Hello,

quacka:

You have just to save files with any other name in your upload script. For example if you want to save the first thumbnails with indexed names (1.jpg, 2.jpg and so on) here is the code:
Code:
for (int i = 1; i <= fileCount; i++)
{
//…
	//Get first thumbnail (the single thumbnail in this code sample) and save it to disk.
	HttpPostedFile thumbnail1File = Request.Files["Thumbnail1_" + i];
	thumbnail1File.SaveAs(Server.MapPath(galleryPath + "Thumbnails/" + i + ".jpg"));
//…
}

drano:

There is a control named Aurigma Image Upload Wizard which allows the user to select a file (one at a moment), crop/resize it and then upload to the server. The online demo will be available at the nearest time (we are working on it now). If you want more information about this product feel free to write to sales@aurigma.com.

Edited by user Tuesday, February 19, 2008 1:57:15 PM(UTC)  | Reason: Not specified

Sincerely yours,
Alex Makhov

UserPostedImage Follow Aurigma on Twitter!
drano  
#8 Posted : Tuesday, August 8, 2006 8:54:56 PM(UTC)
drano

Rank: Member

Groups: Member
Joined: 8/5/2006(UTC)
Posts: 6

Thanks Alex.

I am looking forward to the realease of this wizard control. :)

I think many of your current and future customers will use this new control.

Thanks again, Jack.
Alex Makhov  
#9 Posted : Wednesday, August 9, 2006 1:37:00 PM(UTC)
Alex Makhov

Rank: Advanced Member

Groups: Member
Joined: 8/3/2003(UTC)
Posts: 998

OK,

We will inform everyone about this project progress.
Sincerely yours,
Alex Makhov

UserPostedImage Follow Aurigma on Twitter!
quacka  
#10 Posted : Monday, August 14, 2006 7:59:08 AM(UTC)
quacka

Rank: Member

Groups: Member
Joined: 1/17/2005(UTC)
Posts: 32

Thanks Alex but we need to preserve the original file name.

That new wizard would be interesting only if we can select multiple files.
Alex Makhov  
#11 Posted : Monday, August 14, 2006 1:47:33 PM(UTC)
Alex Makhov

Rank: Advanced Member

Groups: Member
Joined: 8/3/2003(UTC)
Posts: 998

Hello,

Here is the code to save thumbnails to the "Thumbnails/" folder with the original file names:
Code:
for (int i = 1; i <= fileCount; i++)
{
//…
	HttpPostedFile sourceFile = Request.Files["SourceFile_" + i];
	string fileName = GetSafeFileName(Path.GetFileName(sourceFile.FileName));
	// Another variant:
	// string fileName = Request.Form["FileName_" + i];
	// Get first thumbnail (the single thumbnail in this code sample) and save it to disk.
	HttpPostedFile thumbnail1File = Request.Files["Thumbnail1_" + i];
	thumbnail1File.SaveAs(Server.MapPath(galleryPath + "Thumbnails/" + fileName));
//…
}

Edited by user Tuesday, February 19, 2008 1:58:13 PM(UTC)  | Reason: Not specified

Sincerely yours,
Alex Makhov

UserPostedImage Follow Aurigma on Twitter!
drano  
#12 Posted : Tuesday, August 22, 2006 12:16:00 AM(UTC)
drano

Rank: Member

Groups: Member
Joined: 8/5/2006(UTC)
Posts: 6

Thanks guys. I wrote my own activex component with VB6 for this purpose. I will still look at your product when it is ready as I am interested if you create a java one as well for other platforms. Thanks again, Jack.
io  
#13 Posted : Wednesday, August 30, 2006 3:23:28 AM(UTC)
io

Rank: Member

Groups: Member
Joined: 6/25/2006(UTC)
Posts: 20

It would be great to add some client-side image improvement.
I suggest auto levels - this tool can help in 90% cases with the poor quality images.
Alex Makhov  
#14 Posted : Friday, September 1, 2006 7:13:29 PM(UTC)
Alex Makhov

Rank: Advanced Member

Groups: Member
Joined: 8/3/2003(UTC)
Posts: 998

Hello,

At present time Image Upload Wizard allows Crop and Resize effects only. In future versions we will add another effects support. We are going to post the Image Upload Wizard Sample next week.
Sincerely yours,
Alex Makhov

UserPostedImage Follow Aurigma on Twitter!
quacka  
#15 Posted : Tuesday, September 12, 2006 2:27:10 PM(UTC)
quacka

Rank: Member

Groups: Member
Joined: 1/17/2005(UTC)
Posts: 32

Is the wizard sample ready yet?
Alex Makhov  
#16 Posted : Tuesday, September 12, 2006 6:25:50 PM(UTC)
Alex Makhov

Rank: Advanced Member

Groups: Member
Joined: 8/3/2003(UTC)
Posts: 998

Hello,

Wizard sample is ready to be shown but there are some problems with installation under IE 6.0 so we are making some changes now to fix this issue. I have made some screenshots to show how it looks like now.

UserPostedImage
UserPostedImage
UserPostedImage
UserPostedImage

I’m sorry for making you waiting so long. The sample will be available very soon.

Edited by user Monday, December 21, 2009 2:35:08 AM(UTC)  | Reason: Not specified

Alex Makhov attached the following image(s):
Scr1l.JPG
Scr2l.JPG
Scr3l.JPG
Scr4l.JPG
Sincerely yours,
Alex Makhov

UserPostedImage Follow Aurigma on Twitter!
richhamilton  
#17 Posted : Thursday, March 19, 2009 7:46:21 PM(UTC)
richhamilton

Rank: Newbie

Groups: Member
Joined: 3/19/2009(UTC)
Posts: 5

So what's the answer to this?
Can we crop images before upload? How?
Fedor  
#18 Posted : Sunday, March 22, 2009 12:02:29 AM(UTC)
Fedor

Rank: Advanced Member

Groups: Member, Administration, Moderator
Joined: 7/28/2003(UTC)
Posts: 1,660

Thanks: 5 times
Was thanked: 76 time(s) in 74 post(s)
Hello,

Quote:
So what's the answer to this?
Can we crop images before upload? How?


Crop feature is not available in the recent version of Image Uploader. It was implemented in fork of main branch (so called "Image Uploader Wizard" project).

We plan to implement it after version 6.0 release.
Best regards,
Fedor Skvortsov
pixnet  
#19 Posted : Sunday, May 3, 2009 10:29:40 PM(UTC)
pixnet

Rank: Newbie

Groups: Member
Joined: 5/3/2009(UTC)
Posts: 1

When will the new version of Image Uploader with the crop option be available?

Will the new wersion include automatic cropping? I am asking about the sixth option "Crop" in ImageUploader.UploadThumbnailFitMode, which would crop thumbnails into the exact sizes of ImageUploader.UploadThumbnailWidth and ImageUploader.UploadThumbnailHeight.
Fedor  
#20 Posted : Monday, May 4, 2009 1:05:54 AM(UTC)
Fedor

Rank: Advanced Member

Groups: Member, Administration, Moderator
Joined: 7/28/2003(UTC)
Posts: 1,660

Thanks: 5 times
Was thanked: 76 time(s) in 74 post(s)
Hello,

Quote:
When will the new version of Image Uploader with the crop option be available?


It will be available in version 7.0, which will be available after upcoming next week version 6.0.
Best regards,
Fedor Skvortsov
Users browsing this topic
2 Pages12>
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.