Python Forum
unable to load an image with C (Cython)
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
unable to load an image with C (Cython)
#1
Hello, I just learn about cython todays and im trying to play with it and now im trying to load and image from local storage with .pyx extension but it just return 4 bytes but when i try to load a .txt it works fine...

Here's the main .py
import pyximport; pyximport.install()
import test_c


def main():
    file: bytes = test_c.req()
    print(file) 

if __name__=='__main__':
    main()
and Here's the test_c.pyx file:
from libc.stdio cimport fopen, fread, fclose, fseek, ftell, SEEK_END, rewind
from libc.stdlib cimport malloc

cpdef req():
    
    cdef long lSize
    cdef char *buffer

    fp = fopen('img.jpg', 'rb')
    fseek(fp, 0, SEEK_END)
    lSize = ftell(fp)
    rewind(fp)
    buffer = <char *>malloc(lSize)

    fread(buffer, 1, lSize, fp)
    fclose(fp)

    return buffer
and here's the result:
Output:
b'\xff\xd8\xff\xe0'
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Cython, Pandas, and Chained Assignment sawtooth500 4 254 Apr-13-2024, 04:18 AM
Last Post: sawtooth500
  pygame image load error Yegor123 1 1,593 Oct-12-2022, 05:36 AM
Last Post: deanhystad
  I need to add data types to cython conversion python to c Good_AI_User 1 1,015 Aug-19-2022, 07:52 AM
Last Post: Gribouillis
  Unable to request image from FORM Data usman 0 997 Aug-18-2022, 06:23 PM
Last Post: usman
  Cython np.where slows down the code Johanoosterwaal 1 1,739 Sep-01-2021, 07:33 AM
Last Post: Johanoosterwaal
  How to open/load image .tiff files > 2 GB ? hobbyist 1 2,470 Aug-19-2021, 12:50 AM
Last Post: Larz60+
  OSError: Unable to load libjvm when connecting to hdfs with pyarrow 3.0.0 aupres 0 3,177 Mar-22-2021, 10:25 AM
Last Post: aupres
  How can I use Cython to protect my Python Code? TurboC 2 4,146 Dec-03-2020, 10:37 AM
Last Post: padma121
  Why does Cython generates bad code for Gentoo? AlekseyPython 1 1,853 Dec-26-2019, 01:57 PM
Last Post: AlekseyPython
  How I can speed up my Cython module? AlekseyPython 0 1,707 Oct-26-2019, 01:23 PM
Last Post: AlekseyPython

Forum Jump:

User Panel Messages

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