Questions tagged [imagefield]

A place to store or display a graphic image.

"Image field" is a generic term that typically would belong in a or setting such as:

It appears to be a synonym for .

342 questions
0
votes
1 answer

Can not update Column bound by an Image field in gridview asp.net

I have three columns in my Grid view named TweetText, TweetImageUrl and an Column of ImageFied whose DataImageUrl Field is TweetImageURl. My problem is that When i use the Edit,update feature of grid, I cant edit/update the TweetImageUrl but I can…
0
votes
1 answer

How to make a Django ImageField save the image to another model?

I have a member profiles application that stores simple information about members of a team. Part of the profile is an image to be used as an avatar. I've been using Photologue to create standard galleries of photos, but it has an ImageModel that…
Soviut
  • 88,194
  • 49
  • 192
  • 260
-1
votes
1 answer

Django save image data to database

I am new to Django. Default behavior of Django is to save images to "media" and only save image path to database. Is there any way to change this behavior and save the image data itself to an sql-server database? I have found some solutions but none…
AHMJH
  • 1
-1
votes
2 answers

Unable to display Images from Django Imagefield

I am able to load images to the specific path using Imagefield but not able to display those images in my html templates. enter image description here my settings.py : STATIC_ROOT = "/app/static/" STATIC_URL = '/static/' STATICFILES_DIRS = ( …
-1
votes
1 answer

Django show model images on Admin page

How would I add the image belonging to this model on the detail page of that model in the Admin Page? The image can be on the right side of the data/text or below the data/text/ from django.db import models # Create your models here. class…
BartD
  • 29
  • 1
  • 8
-1
votes
3 answers

likely cause?(drupal imagefield conflicts with my module)

Imagefield is not working properly and I get this lengthy error - { "status": true, "data": "\x3cdiv id=\"edit-field-image-0-ahah-wrapper\"\x3e\x3cdiv class=\"form-item\" id=\"edit-field-image-0-upload-wrapper\"\x3e\n \x3cdiv…
Andrew
  • 1,035
  • 7
  • 22
  • 40
-1
votes
1 answer

Django - should ImageField be built-in to same app, or implemented in a separate app?

For example, there are two applications cars and houses, both of them currently have a models.ManyToManyField to a model with a models.ImageField(upload_to='img/[APP_NAME]. Instead of copying and pasting that snippet of ImageField code, is it better…
davidtgq
  • 3,780
  • 10
  • 43
  • 80
-1
votes
1 answer

Fetching images from URL and saving on server and/or Table (ImageField)

I'm not seeing much documentation on this. I'm trying to get an image uploaded onto server from a URL. Ideally I'd like to make things simple but I'm in two minds as to whether using an ImageField is the best way or simpler to simply store the file…
disruptive
  • 5,687
  • 15
  • 71
  • 135
-2
votes
2 answers

Imagefield Crop – use existing file

Is there a way to make a few images with Image Crop out of one uploaded file? Currently i have to upload the same, big pic to get new pics with various dimensions. Unfortunately the "Imagefield sources"-module doesn´t support Image Crop. Is there an…
Arne Cordes
  • 581
  • 1
  • 6
  • 22
-2
votes
1 answer

asp.net Gridview ImageField alternate Image

I have below gridview with an imagefield linked with the UserID number. How can I do if the picture dosnt exist in the specifield older to get an standard alternate picture?
RMU
  • 37
  • 3
  • 8
-2
votes
2 answers

upload_to property in imageField can not save image on disk

I'm a beginner in django. I want to have an imageField im my ModelForm can save image uploaded to upload_to path in my disk, but when i go through admin site i see that image is saved in a url not the directory on my disk. user_image =…
1 2 3
22
23