Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
168 views

In our Delphi-based application, we use the QuickReport (5.x) module to print or view documents. This has worked well so far, but 1-2 months ago users reported disappearing barcodes. The first page is ...
durumdara's user avatar
  • 3,483
8 votes
4 answers
409 views

I'm making an (infinite) scrollable GUI that displays 100x100px thumbnails of possibly 100 000 image files (JPG), in Python Tkinter. The MCVE code below works: using lazy loading: it reloads 30 new ...
Basj's user avatar
  • 47.5k
-1 votes
1 answer
98 views

I am new to selenium and want to store a captcha image from a html page where it is stored as base64. I tried using below code but the result is different than what i see by manualy checking the ...
user2509640's user avatar
0 votes
1 answer
69 views

I have an <img> element and at the moment I am specifying explicit values for its width and height in the CSS with no such attributes in the (X)HTML. The PowerMapper tool complains about this, ...
Cecil Ward's user avatar
0 votes
1 answer
64 views

I want to create a sudoku solver using python. For this, I want to read the sudoku board from an image using an OCR. I think the best way is to split a perfectly square image of a sudoku board into 81 ...
Ernest Vandenbulcke's user avatar
0 votes
0 answers
34 views

To simplify a process I do often, I would like to have a Python function to a) take the clipboard data, which is in dibv5 format with alpha, b) save it to a file, and c) upload it to an API. I don't ...
Charlotte LeRoy's user avatar
0 votes
1 answer
59 views

I'm trying to do some simple buttons, a button with or without a lock after it. The problem is when I add the Spacer(), it work correctly, but when I use an Image, the button goes to the left. HStack()...
Kelvin's user avatar
  • 1
0 votes
0 answers
15 views

I'm plotting an image using Imagsc(x,y,C) where x is an angle vector from 280 deg to 50 deg trough 0/360 deg. I want to see the image with zero at the center. Instead I have the data from 50 to 280. ...
mrish's user avatar
  • 29
0 votes
1 answer
59 views

I want to have one image on top of another. I managed to do it using DIVs and Margins but when the page size changes, the guy with the lawnmower moves. How do I prevent that from happening? Here is my ...
Jsaun's user avatar
  • 1
0 votes
1 answer
99 views

I have a such task: in image find for each pore (or blob) perimeter of contour. So, each contour I have to consider polygon (approximation) with some step value (distance between points) (for example ...
Alex 's user avatar
  • 329
1 vote
2 answers
94 views

My code for moving an image to another subdomain public path: <?php if ($request->front_picture_path != '') { $imageName3 = time() . '_front.' . request()->front_picture_path->...
Jayasri S.V's user avatar
2 votes
1 answer
49 views

This answer did not work for me, nor for some Mac users, and I did not find a working solution among the following similar questions: How to open an image in Python and close afterwards? How to Close ...
a.t.'s user avatar
  • 2,907
-1 votes
1 answer
193 views

I want to find a dart package that can convert an image format to webp. Since i want to run it on Isolate i can only use dart package. I have tried packages like FlutterImageCompress which can't run ...
unrealt3n's user avatar
-1 votes
1 answer
92 views

I created an application on angular18. images are displaying on local server but when i deploy my project and upload it to my hosting then imgs are not dispalying in my project.Anyone faced this ...
Ahmad Raza's user avatar
1 vote
1 answer
60 views

I'm creating a website of mine and i've been teaching myself HTML for the past week or so but I cant absolutely understand why my code isnt working. Basically I'm trying to put he figure just under ...
paolo tarsis's user avatar
0 votes
1 answer
40 views

I have images in a carousel, and I have set the height to 40vh. The picture looks fine, except that as the screen gets larger, it zooms to the top of the image instead of the bottom where I want it ...
Lee Worley's user avatar
0 votes
1 answer
36 views

I have a moved image that I created with simpleITK transforms and registration and I have object's measurements and centroids from the moved image(working as expected) my transformation/registration: ...
Joseph Logan's user avatar
1 vote
0 answers
215 views

I am using version 1.4.1 of media3.exoplayer, and I want to use ExoPlayer to display images. I found that images are listed as supported media types, but when I followed the code in the documentation, ...
chadewik's user avatar
0 votes
0 answers
36 views

Im using a function with the axios post call that will return a data that has share_link and shorten_url. getShareURL = async () => { try { const body = { email: this.props.user....
mockingbird's user avatar
0 votes
1 answer
65 views

I'm trying to use the following code to transfer an image file from my website to a Rackspace Cloud Files container: $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, 'https://storage101.dfw1....
Brent Curry's user avatar
0 votes
1 answer
89 views

I'm trying to figure out how to insert a user-created image into a googlesheets cell. I found this 7-year-old question that suggested using the =IMAGE function. But this doesn't seem to work with a ...
Gertrude's user avatar
1 vote
0 answers
83 views

As far as I understand, the .r-stretch helper class of Reveal.js can be set on an image. Here's the example of the original documentation: <h2>Stretch Example</h2> <img class="r-...
Joshua Muheim's user avatar
0 votes
1 answer
29 views

I'm trying to write a PL/SQL program to COPY a JPG files from one directory to another. The file names themselves are the id's in a table that I fetch and make a variable photo_file_name := lower(...
vswindell's user avatar
0 votes
0 answers
18 views

I'm using Spatie to allow users to upload their profile image. public function registerMediaConversions(?Media $media = null): void { $this->addMediaConversion('thumb') -&...
Dani's user avatar
  • 94
0 votes
1 answer
47 views

With my app I allow my users to download images from other users and I am trying to allow them to select a save location. Currently I am allowing them to select a save location using the following ...
Para1life's user avatar
-2 votes
1 answer
50 views

I'm working on a way to download two different sized versions of the picture using a canvas to repeat an image in its background. It works when i tested just a single download option, but it doesn't ...
A Jones's user avatar
2 votes
1 answer
158 views

I am working with the front camera in a Flutter app, and I noticed that on some Android devices, the preview appears mirrored, while on others, it looks correct. I need a reliable way to detect ...
Lala Naibova's user avatar
0 votes
0 answers
105 views

I am trying to update the NUXT_IMAGE_DOMAINS with dynamic ENV values during runtime and I am able to do this correctly. But, when I do this, ipx is not working as expected. I have added domains in the ...
Manjunath M's user avatar
0 votes
1 answer
64 views

I have script like this , <img src="myimg.jpg" onError={({currentTarget}) => { currentTarget.onerror = null; currentTarget.src = "myimg_backup.jpg" }}></img> ...
whitebear's user avatar
  • 12.6k
0 votes
1 answer
94 views

In the past, the answer would have been 'Considering performance, save only the file path to DB', but due to the changed security policy, I am concerned about how to handle image files in the Android ...
gunsmoke's user avatar
0 votes
0 answers
31 views

I am new to SikuliX. I would like to use it to automate testing of dialogs. To do this, I will have SikuliX find() for a dialog on screen, and compare it to a known good image captured of that dialog....
Steven Sheldon's user avatar
0 votes
1 answer
161 views

I recently made two changes to my Nuxt 3 project: Switched from @nuxt/image-edge to @nuxt/image Moved from Webpack to Vite Before switching to Vite and @nuxt/image, I had the following configuration ...
konsav's user avatar
  • 11
-4 votes
2 answers
68 views

I am trying to see image in this link http://127.0.0.1:8000/images/files/Safety/1738837934.png in my Laravel application. But I am getting 404 error while I try to see the image. I placed my images ...
abu abu's user avatar
  • 7,102
-3 votes
3 answers
186 views

I am making a webpage and I have included my personal pictures and I am trying to send my .html file to them and upon running in their pc the picture doesn't load because its not in their pc. So what ...
Ashutosh Niraula - Student's user avatar
1 vote
1 answer
68 views

Description: I want to automatically convert pasted image URLs (format: https:\\xxx.com\xxx.jpg) into Excel's =IMAGE() formulas using VBA. Currently when I paste image URLs directly, they remain as ...
Tony Yu's user avatar
  • 33
0 votes
0 answers
43 views

I have a utility method which takes an SVG and uses Apache Batik to rasterize it: public static BufferedImage rasterize(InputStream svgInput, int width, int height) throws TranscoderException { ...
Cardinal System's user avatar
-1 votes
1 answer
60 views

When image in vertical position watermark (date time) not show properly ](https://i.sstatic.net/LOlcendr.png) Question: I am working on a modal where an image can be rotated by 90 degrees each time ...
Vishal Kumawat 's user avatar
1 vote
1 answer
68 views

I have been working with Django and it isn't loading any image files but it is loading my CSS files in the same directory area. HTML page <!DOCTYPE html> <html lang="en"> {% load ...
Dinosaur's user avatar
0 votes
0 answers
148 views

Some context, I have a folder from college where all my roommates placed images that were great desktop wallpapers. Thousands of images. Not all are appropriate and I've found some to remove as they ...
FusRoTim's user avatar
1 vote
1 answer
67 views

I have server.js where, when uploading an image, Sharp creates a thumbnail. The main issue is that if later I want to delete the main image, it won't let me because something is using it. File not ...
Zander's user avatar
  • 1,086
0 votes
0 answers
193 views

I’m working on a SwiftUI project where I need to stretch and resize an image dynamically, similar to how images are manipulated in Photoshop. Specifically, I want to achieve the following ...
HeWhoRemains's user avatar
1 vote
1 answer
51 views

I’m developing a Python script to rank images based on "blueness" for a colorblind accessibility project (I'm colorblind myself). The goal is to prioritize images with large blue areas over ...
Dilubar's user avatar
  • 13
1 vote
0 answers
65 views

I have JPG images that are 1500px wide, exported with a good resizing algorithm, the edges are crispy. For responsiveness, I'm using: img { max-width: 80%; } It looks good on Firefox no matter the ...
Basj's user avatar
  • 47.5k
-1 votes
2 answers
52 views

I have a main folder called "AltSchool", inside that i have two subfolders namely "altschool_html_assignments" and "altschool_css_assignments". In the ...
Andrecon's user avatar
  • 109
0 votes
0 answers
28 views

I'm trying to draw a mipmap in a canvas using canvas.drawBitmap(BitmapFactory.decodeResource(getResources(), R.mipmap.keyb_style_02), 0, 1445, null); On a XHDPI screen it works On a XXHDPI screen, the ...
gigi38660's user avatar
0 votes
1 answer
62 views

I have a photo gallery in Laravel with Tailwind and Alpine.js. The images are only in a small box as a preview, and I need to fully show up after clicking on any of the photos. <!DOCTYPE html> &...
D4N13L.'s user avatar
0 votes
1 answer
71 views

I am developing an app using flutterflow and need to randomly choose an image from the user's gallery without user action (in both iOS and android). Clearly being a custom function I was thinking of ...
nvrm22's user avatar
  • 73
1 vote
1 answer
153 views

I'm presently trying to do a sorta Starfox clone with Raylib, using the heightmap example here: https://www.raylib.com/examples/models/loader.html?name=models_heightmap In order to handle collision in ...
Reverend Speed's user avatar
1 vote
1 answer
143 views

I use python / imagehash.phash to search for photos similar to a given one, i.e. photos so that the hamming distance is zero. Now I also would like to detect photos that are flipped or rotated copies -...
Übend's user avatar
  • 71
0 votes
0 answers
126 views

I have a transparent image with an object in it, and I would like to add a border around the object (i.e., the edge of the object) in SwiftUI. The object is the only thing visible in the image, and I ...
HeWhoRemains's user avatar

1
3 4
5
6 7
2272