skip to Main Content

Ubuntu – Decode .jpeg image from string

In my JS script I'm receiving string with encoded image.jpeg. The image is created with OpenCV in C++: cv::imencode(".jpeg", rgb_img, jpeg_data); std::string jpeg_string(jpeg_data.begin(), jpeg_data.end()); Then the string is passed through websocket. In JS I have to decode that string and…

VIEW QUESTION

Asp.net – convert text as uppercase

i want to take uppercase only even if i am entering lowercase it should convert in uppercase in text field in mudblazor. <MudTextField For="@(() => AddEditItemModel.HSNSAC)" @bind-Value="AddEditItemModel.HSNSAC" Label="@_localizer["SAC"]" MaxLength="3"> </MudTextField> i tried to call through @onclick method and tried to…

VIEW QUESTION
Back To Top
Search