hot questions tagged image-upload - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T04:52:54Zhttp://stackoverflow.com/feeds/tag?tagnames=image-upload&sort=hothttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1078786/best-practice-for-uploading-and-image-file-with-django-forms-django-1-01Best practice for uploading and image file with Django Forms (Django 1.0)Alex Santos2009-07-03T10:34:19Z2009-08-19T13:50:12Z
<p>Hi friends, could you please help me to get image upload working on a view with django forms</p>
<p>Models.py</p>
<pre><code>class User_Profile(models.Model):
user = models.OneToOneField(User, unique=True, related_name='profile')
photo = models.ImageField(upload_to = 'profiles/', null=True, blank=True)
</code></pre>
<p>Forms.py</p>
<pre><code>class ProfileForm(forms.ModelForm):
class Meta:
model = User_Profile
exclude = ('user')
</code></pre>
<p>Views.py</p>
<pre><code> if request.method == 'POST':
profile_form = ProfileForm(request.POST, instance=request.user.profile)
if profile_form.is_valid():
profile_form.save()
return HttpResponseRedirect('/panel/correct/')
else:
profile_form = ProfileForm(instance=request.user.profile)
</code></pre>
<p>My html form already contains enctype="multipart/form-data"</p>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/928508/pass-image-from-flash-to-asp-net1Pass Image from Flash to ASP.NETEfficionDave2009-05-29T23:13:05Z2009-11-06T15:58:17Z
<p>Quick version:
How do I get an image that was generated on the users browser back to the server?</p>
<p>The current plan is this:
1.) The Flash developer will convert the bitmap to JPEG
2.) He will then POST the JPEG to a page on the site.
3.) I'm thinking I can create a WebService which will use a StreamReader to read the post and save it off as a file.</p>
<p>Would that work? Any existing code/samples for doing this? </p>
<p>I suppose we should be able to look at code for doing any file upload to ASP.NET.</p>