Skip to Content
Odoo Meniu
  • Autentificare
  • Try it free
  • Aplicații
    Finanțe
    • Contabilitate
    • Facturare
    • Cheltuieli
    • Spreadsheet (BI)
    • Documente
    • Semn
    Vânzări
    • CRM
    • Vânzări
    • POS Shop
    • POS Restaurant
    • Abonamente
    • Închiriere
    Site-uri web
    • Constructor de site-uri
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Lanț Aprovizionare
    • Inventar
    • Producție
    • PLM
    • Achiziție
    • Maintenance
    • Calitate
    Resurse Umane
    • Angajați
    • Recrutare
    • Time Off
    • Evaluări
    • Referințe
    • Flotă
    Marketing
    • Social Marketing
    • Marketing prin email
    • SMS Marketing
    • Evenimente
    • Automatizare marketing
    • Sondaje
    Servicii
    • Proiect
    • Foi de pontaj
    • Servicii de teren
    • Centru de asistență
    • Planificare
    • Programări
    Productivitate
    • Discuss
    • Aprobări
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Aplicații Terțe Odoo Studio Platforma Odoo Cloud
  • Industrii
    Retail
    • Book Store
    • Magazin de îmbrăcăminte
    • Magazin de Mobilă
    • Magazin alimentar
    • Magazin de materiale de construcții
    • Magazin de jucării
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Distribuitor de băuturi
    • Hotel
    Proprietate imobiliara
    • Real Estate Agency
    • Firmă de Arhitectură
    • Construcție
    • Estate Managament
    • Grădinărit
    • Asociația Proprietarilor de Proprietăți
    Consultanta
    • Firma de Contabilitate
    • Partener Odoo
    • Agenție de marketing
    • Law firm
    • Atragere de talente
    • Audit & Certification
    Producție
    • Textil
    • Metal
    • Mobilier
    • Mâncare
    • Brewery
    • Cadouri corporate
    Health & Fitness
    • Club Sportiv
    • Magazin de ochelari
    • Centru de Fitness
    • Wellness Practitioners
    • Farmacie
    • Salon de coafură
    Trades
    • Handyman
    • IT Hardware and Support
    • Asigurare socială de stat
    • Cizmar
    • Servicii de curățenie
    • HVAC Services
    Altele
    • Organizație nonprofit
    • Agenție de Mediu
    • Închiriere panouri publicitare
    • Fotografie
    • Închiriere biciclete
    • Asigurare socială
    Browse all Industries
  • Comunitate
    Învăță
    • Tutorials
    • Documentație
    • Certificări
    • Instruire
    • Blog
    • Podcast
    Empower Education
    • Program Educațional
    • Scale Up! Business Game
    • Visit Odoo
    Obține Software-ul
    • Descărcare
    • Compară Edițiile
    • Lansări
    Colaborați
    • Github
    • Forum
    • Evenimente
    • Translations
    • Devino Partener
    • Services for Partners
    • Înregistrează-ți Firma de Contabilitate
    Obține Servicii
    • Găsește un Partener
    • Găsiți un contabil
    • Meet an advisor
    • Servicii de Implementare
    • Referințe ale clienților
    • Suport
    • Actualizări
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obține un demo
  • Prețuri
  • Ajutor

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Contabilitate
  • Inventar
  • PoS
  • Proiect
  • MRP
All apps
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Suport

Help on understanding this code!

Abonare

Primiți o notificare când există activitate la acestă postare

Această întrebare a fost marcată
resizingimageResizeodoo12.0
2 Răspunsuri
5025 Vizualizări
Imagine profil
Paulo Matos

Hi all,

I have been looking for a block of code that helps me to "resize a dynamic image" on the fly for both create and write methos with no luck.

All the code I found is for later versions and actually not performing well on Odoo 12 (or at least I am not changing the code as I should).

I found this code block under "fleet" management app on Odoo 12 which seems to be a very simple code to understand.

class FleetVehicleModelBrand(models.Model):
    _name = 'fleet.vehicle.model.brand'
    _description = 'Brand of the vehicle'
    _order = 'name asc'
    name = fields.Char('Make', required=True)
    image = fields.Binary("Logo", attachment=True,
        help="This field holds the image used as logo for the brand, limited to 1024x1024px.")
    image_medium = fields.Binary("Medium-sized image", attachment=True,
        help="Medium-sized logo of the brand. It is automatically "
             "resized as a 128x128px image, with aspect ratio preserved. "
             "Use this field in form views or some kanban views.")
    image_small = fields.Binary("Small-sized image", attachment=True,
        help="Small-sized logo of the brand. It is automatically "
             "resized as a 64x64px image, with aspect ratio preserved. "
             "Use this field anywhere a small image is required.")

    @api.model_create_multi
    def create(self, vals_list):
        for vals in vals_list:
            tools.image_resize_images(vals)
        return super(FleetVehicleModelBrand, self).create(vals_list)

    @api.multi
    def write(self, vals):
        tools.image_resize_images(vals)
        return super(FleetVehicleModelBrand, self).write(vals)


The code above seems to be very easy to undertand but:

On the class FleeetVehicleModelBrand, I have 3 image type fields, named image, image_medium and image_small.

On both create and write methods, I do not see any code that refers to those images itself. That is, I don't see any reference to the type of image that has to be resized.

Questions (UPDATED):

Note: I have updated the question(s) based on what I have done after the first post.

I found that the images have to be named exactly "image, image_medium and image_small) for the resizing work. Otherwise, fields on image type with different names will not be resized.

1. What if I have an image type field with a differente name? For instance, "student_picture"?

How can I resize this image?

I really hope you can help me with this issue because the code found on other modules (customer, products) are harder to understand and to adapt to my needs.

I need to resize images (to 1024x1024) using odoo standard tools on both create and write methods, for more than one field of type image.

Thank you in advance

Regards

0
Imagine profil
Abandonează
Paulo Matos
Autor

Great. Received -1 as answer for this question that I believe to be legitimate.

Imagine profil
faOtools
Cel mai bun răspuns

Hi,

to understand what is happening you should go the Odoo tools folders – and look at the invoked method image_resize_images: https://github.com/odoo/odoo/blob/12.0/odoo/tools/image.py.

As you can see here the method relies upon the exact fields names (it is done to apply the method simply in all models). Thus, in case you want your own field with the resized image, you should introduce your own method. You can use another method from the same file – image_resize_image. An example (not tested, just for common understanding):


from odoo.tools import image
@api.multi
@api.depends('image')
def _compute_myfield(self):
    for record in self:
        record.myfield = image.image_resize_image(record.image, size=(1024, 1024)) 
myfield = fields.Binary(compute=_compute_myfield, store=True,)

It is probable that before converting you should encode the 'image' field to ascii as it is done in the method image_get_resized_images.

2
Imagine profil
Abandonează
Paulo Matos
Autor

Thank you @Odoo Tools,

It was exactly what I needed. Perhaps using record.myfield = image.image_resize_image(base64.b64encode(record.image), size=(1024, 1024)) will allow me to encode the image. Will test it. Thank you very much once again

Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Înscrie-te
Related Posts Răspunsuri Vizualizări Activitate
How to set a specific dynamic image size in Odoo? Rezolvat
imageResize odoo12.0
Imagine profil
Imagine profil
4
feb. 25
16985
Expected singleton: hr.emp.travel.location(62, 63)
odoo12.0
Imagine profil
Imagine profil
Imagine profil
2
oct. 25
1945
How to write Record Rule with domain based on the company_dependent Fields Rezolvat
odoo12.0
Imagine profil
Imagine profil
Imagine profil
3
oct. 23
10630
loan request
odoo12.0
Imagine profil
Imagine profil
1
sept. 23
3981
sum Colum of based on id
odoo12.0
Imagine profil
Imagine profil
1
mai 23
2937
Comunitate
  • Tutorials
  • Documentație
  • Forum
Open Source
  • Descărcare
  • Github
  • Runbot
  • Translations
Servicii
  • Hosting Odoo.sh
  • Suport
  • Actualizare
  • Custom Developments
  • Educație
  • Găsiți un contabil
  • Găsește un Partener
  • Devino Partener
Despre Noi
  • Compania noastră
  • Active de marcă
  • Contactați-ne
  • Locuri de muncă
  • Evenimente
  • Podcast
  • Blog
  • Clienți
  • Aspecte juridice • Confidențialitate
  • Securitate
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo este o suită de aplicații de afaceri open source care acoperă toate nevoile companiei dvs.: CRM, comerț electronic, contabilitate, inventar, punct de vânzare, management de proiect etc.

Propunerea de valoare unică a Odoo este să fie în același timp foarte ușor de utilizat și complet integrat.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now