Python Forum
New2Python: Help with Importing/Mapping Image Src to Image Code in File
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
New2Python: Help with Importing/Mapping Image Src to Image Code in File
#1
I am creating an item catalogue of our products and need to import the item images besides their product codes'. The Image Code in the file is the same as the image saved name.

I've automated a SQL query for the table and connected it to Python, exporting it into an Excel file.

## SQL Query
sql_query = pd.read_sql_query('''

SELECT TOP 250 '' AS 'Image', LEFT(stockcode, 4)+RIGHT(stockcode, 4) AS 'Image Code', [stockcode], [Description]
FROM V_Sale_TurnOver sto
WHERE [PostingDate] BETWEEN '2022-01-01' AND getdate()
GROUP BY [Range], [stockcode], [Description]

    ''' ,conn) 

df = pd.DataFrame(sql_query)

## Export to Folder
df.to_csv (r'G:\Outbound\Reports\Top 250 SKU/Top250SKU.csv', index = False)
I need to map the product images to their image codes' (i.e., if a product Image Code = 'AURO0002', I need to import and map it to the saved image file 'AURO0002').

Also, if the Image Code does not map to anything, I need the code to prevent errors from occurring. If it helps, below is a similar script written on VBA Script for a similar task.

# VBA Code
rowNo = 1

dim ImgPath As String, NoImagePath As String
NoImagePath = "\\g_drive\Images\NoImage.jpg"
While Top250SKU.cells(rowNo, 2).Value <>
    If Rs2.RecordCount <> 0 Then Rs2.MoveFirst
    Do While Not Rs2.EOF

        If ActiveSheet.Cells(rowNo, 2).Value = Rs2!stockcode And _
                ActiveSheet.Cells(rowNo, 3).Value = Rs2!Description Then

       End If
        Rs2.MoveNext
    Loop
    ActiveSheet.Cells(4, 1).Value = "Image"

   ImgPath = "\\g_drive\Images\" & ActiveSheet.Cells(rowNo, 2).Value & ".jpg"
    If FileExists(ImgPath) = False Then
        ImgPath = NoImagePath
    End If
    Rows(rowNo & ":" & rowNo).RowHeight = 60
    Call InsertPictureIG(ImgPath, ActiveSheet.Cells(rowNo, 1).Address)
rowNo = rowNo + 1
How can I go about coding this?
Larz60+ write Nov-17-2022, 08:50 PM:
Please post all code, output and errors (it it's entirety) between their respective tags. Refer to BBCode help topic on how to post. Use the "Preview Post" button to make sure the code is presented as you expect before hitting the "Post Reply/Thread" button.
Fixed for you this time. Please use BBCode tags on future posts.

Attached Files

Thumbnail(s)
   
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Placing image button on top of background image Sintek 1 448 Mar-02-2025, 05:36 PM
Last Post: Sintek
  Problem When using canny edge detection,black image returned rickyw2777 1 397 Feb-17-2025, 03:22 AM
Last Post: rickyw2777
  Why it gives me a black image and libpng warning: iCCP rickyw2777 1 404 Feb-16-2025, 08:26 PM
Last Post: rickyw2777
  QR code creation with image Raja31 1 618 Jan-15-2025, 11:17 AM
Last Post: Larz60+
Photo image generation with text style Belialhun 0 626 Oct-08-2024, 01:53 PM
Last Post: Belialhun
  Product Image Download Help Required pythonustasi 5 1,272 Jul-21-2024, 08:12 PM
Last Post: snippsat
  tkinter photo image problem jacksfrustration 5 3,144 Jun-27-2024, 12:06 AM
Last Post: AdamHensley
Photo image error pyc0de 2 1,690 Mar-23-2024, 06:20 PM
Last Post: pyc0de
  Using OpenCV and image path is invalid AudunNilsen 5 1,843 Mar-18-2024, 05:28 PM
Last Post: snippsat
  Count image's colors very fast flash77 18 7,183 Mar-05-2024, 06:12 PM
Last Post: deanhystad

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020