Crop A Picture In A Picturebox By Allowing The User To Select A Rectangular Region?
Jun 24, 2010
I want to crop a picture in a picturebox by allowing the user to selecta rectangular region like you get in software like Photoshop.
Or User Will select a region in pircture box and then region will be saved as a individual picture.
Is it possible using C#.
View 3 Replies
Similar Messages:
Dec 21, 2010
i have sql-server-2008 database that contain image field that hold picture.
i have pictureBox control in my webform.
how to put picture from database to pictureBox control ?
(I work with C# asp.net FW3.5)
can i get any sample code or program ?
View 1 Replies
Dec 21, 2010
how to put picture from dtatabase to pictureBox in asp.net ?
View 2 Replies
Feb 8, 2011
i'm new to c# and i wanted to know how can i allow user to upload a picture from a text box and a button??
after uploading the picture, how can i save the picture in the database??
**note**the picture i allow user to upload need to be in a fixed size.
View 4 Replies
Mar 18, 2010
I am building an application that allows a user to upload multiple images, resizes them, and saves them. What I need (ok, what I'd like) is the following...
I would like some sort of way to prompt a user to crop the photos after they have been saved. I have code that creates a 175px square rectangle and saves that image. I need the user to select the image section they want saved and to do so I envision a window that automatically prompts them to do so once the upload(s) have completed. I think my preference would be to have a page or control (datalist, repeater, ectc..) that refreshes every time an image is saved and allows the user to crop the newly saved images. I'm opened to advice, opinions, free drinks and a clue.
View 2 Replies
Jul 4, 2010
I am trying to use this code:
[Code]....
And i get this error:
Incorrect syntax near the keyword 'AS'. What i am trying to do is SELECT details of a job and also SELECT which region the job is in. I currently have this: [URL] But i need to change it so it shows the Job name, details and then the regions..
View 7 Replies
Feb 26, 2011
i have a pdf file and want to allow user to upload a gif file of their signature and display the signature in my pdf file...
follow the link [URL]
View 1 Replies
Aug 24, 2010
I need to develop a web applicaiton which will have a user tree like shown in the picture.Generate Labels dynamically with different "CSSCLASS" and design it like that.
Admin,
Coordinator,
TeamLeaders,
Endusers...
How to give such a UI to the user.... There no options required, but it want to show as group and team level.
View 4 Replies
Apr 11, 2010
Something is wrong with my registration page. After I register a user, it goes to the complete section of the page, but anytime I return to the register page, it only displays the complete section instead of allowing me to register another user. I tried logging out, but that doesn't change it. What have I done wrong?
View 1 Replies
Jan 27, 2010
I am currently developing a solution in which the user logs in once and can work on multiple customers at the same time on my site.I've looked at all possible solutions involving sessionid having stored the customerid, to launching a new browser session so i could have multiple sessions for one users etc. I also looked at using cookieless sessions.But the all fail because it's not a simple solution and in my opinion a simple solution is most of the time a good and predictable solution.
Therefore i came up with the idea to use url rewriting(i've seen this used in other applications). When the user opens a customer, i would like to start his url as follows "~/Customers/xxxxxxx/*.aspx" where xxxxxx represents the customerid. and *.aspx represents a complete subset of pages of my site. This would allow me to use a simple technique to use multiple user sessions within a single asp.net session.
Now coming to my problem, I have never done some url rewriting, therefore my questions:
- Is this possible.
- Can i protect all the pages that need a customerid as input(come to think of it, if no customerid in the querystring, redirect to a selection screen would be sufficient).
- How do i adopt all urls used in a sitemap etc in a structured way.
View 3 Replies
Jan 30, 2011
I have a CMS page that allows the user to paste in or type HTML code into a TextBox in a FormView, then do an INSERT or UPDATE operation to an nvarchar(MAX) column in an SQL table. This is using an ObjectDataSource that refers to an insert or update method in a TableAdapter in my dataset.
When testing, the server initially warned me when I tried to input or update text containing HTML code; so I set the validateRequest="false" in my page header.
I gather this can be a serious security risk. What's the proper way to "validate" the string being input? Am I opening the database to SQL injection?
Only the site administrator has access to the CMS, but malicious could theoretically bust their way in...
View 1 Replies
Dec 2, 2010
I'm working on an application (ASP.NET, Webforms) that generates a list of outputs based on a user input. I want to allow the user to save the contents of said list as text file, or possibly as other filetypes such as .csv. What is the best way to approach this? Can it be done client-side with Javascript?
View 2 Replies
Dec 23, 2010
I have this code to insert a picture from database into an ImageControl on my ASP.NET form:
strConnString = "server=" + Server + ";database=" + DataBase + ";UID=" + UID + ";password=" + PASS + ";";SqlConnection MyConnection = new SqlConnection(strConnString);SqlCommand MyCommand = new SqlCommand("SELECT Pic FROM MEN WHERE ID=5", MyConnection);MyConnection.Open();SqlDataReader MyReader = MyCommand.ExecuteReader();if (MyReader.Read()){ byte[] m_MyImage = (byte[])MyReader["Pic"]; Response.BinaryWrite(m_MyImage);}
And I have this ImageControl on the form:
<asp:Image Width="88" Height="100" Runat="server" ID="m_Image" NAME="m_Image" />
but when I run the code, I see the picture big on the screen and not in my ImageControl.
i also put this in the form_load:
m_Image.ImageUrl = "MyPhoneBook.aspx?m_Image";my control is: m_Imagemy control ID is: m_Imagemy namespace is MyPhoneBook
but still dont work
View 5 Replies
Jan 5, 2010
I have to write a mini social networking website, and I seem to have run into a little bump. I want to display a user picture but for some reason it isn't working. The control looks like this
[Code]....
View 5 Replies
May 27, 2010
how to make rounded corner panels.
In default property styles rounded corner is not there.
View 4 Replies
Nov 11, 2010
I need to develop a new functionnality for one of our application.
Basically, what i want to develop is a way to let the user draw a semi-transparent rectangle over a static image. The principle could be the same as mspaint. The user click on a button a then, can draw his rectangle over an image.
View 2 Replies
May 7, 2015
I obtained the facebook profile details of an user.Now I need to store the profile details including profile picture in my local database.
View 1 Replies
Jul 9, 2012
How to convert Hexacode(#669933) into images(.jpg).
View 1 Replies
Mar 2, 2011
Can any one let me know about the below issue. I have a page which has three labels, say startdate,enddate and username. My issue is if the user doesnot select any of the above three then a message gets displayed as "Please select one search criteria" or if the user doesnot enter the date in correct format then i dispaly "Please enter date in mm/dd/yy" format. But what is happening is first time if the user doesnot select any then "Please select one search criteria" is getting displayed and after this message gets displayed if the user enters wrong format of date then both the messages are displayed.
View 5 Replies
Mar 14, 2011
Currently i'm saving pictures to our sql server db. A user can go to a clients info page and click an id card image to open a new tab or window and see the picture saved for that client.
What I would like to do is when a client info page opens a small version (thumnail) of the picture to display and let the user click the thumbnail to open a bigger icture in a popup window.
View 2 Replies
Jan 5, 2010
Once I upload an image to the server (asp.net), I need to display this uploaded image for cropping. What is the best-practice to achieve the same(ie how do I send te image back to the client for display)? . I have tried giving a preview option before upload. But this does not seem to be working for all images. See here
Addition :
[I know JCrop is available , but the point of the question is how to send the image back ofr display]
View 2 Replies
Jul 17, 2010
I'm trying to remove all white or transparent pixels from an image, leaving the actual image (cropped). I've tried a few solutions, but none seem to work. Any suggestions or am I going to spend the night writing image cropping code?
View 4 Replies
Mar 1, 2011
I ve an application dat am working on. The section of the upload picture works perfectly on the development environment and also on a test server but the issue comes up when it was hosted life. I started geting an error dat says picture could not be attached. I ve a folder cald Passport and dis ve been working for me on befor now but i dont now the reason y its not working now.
protected void btnUpload_Click1(object sender, EventArgs e)
{
Boolean fileOK = false;
String fileExtension = string.Empty;
String path = Server.MapPath("~/Passport/");
if (fuPassport.HasFile)
{
fileExtension = System.IO.Path.GetExtension(fuPassport.FileName).ToLower();
String[] allowedExtensions = { ".gif", ".png", ".jpeg", ".jpg" };
if (allowedExtensions.Contains(fileExtension))
{
fileOK = true;
}
}
else
{
Utilities.PortalMessage = "Please attach an image file.";
return;
}
if (fileOK)
{
try
{..............................
View 3 Replies
Mar 9, 2010
I have a problem regarding implement Image Crop on Master pageI am using following code and it is working OK on .aspx page
[Code]....
[Code]....
View 1 Replies
Feb 4, 2014
I am building the employee portfolio where each employee enters his/her data. at this stage am I building the image crop where an employee uploads image and then crops it. I am getting this error: Input string was not in a correct format.
Here is the code:
namespace Testing {
public partial class Wizard : System.Web.UI.Page {
String path = HttpContext.Current.Request.PhysicalApplicationPath + "images";
protected void Page_Load(object sender, EventArgs e) {
}
[Code] ......
View 1 Replies