Questions tagged [image-file]
76 questions
0
votes
1 answer
Is it possible to have chemical structure (image) as node property in neo4j?
I am trying to add images as properties of chemical nodes in Neo4j. What I already know is we can create URLs for each image files and add the URL as a node property. But what I want to know is if I can readily visualize images within neo4j without…

rkarki
- 9
- 2
0
votes
1 answer
How to append "Date" or "Date taken" to a JPEG image file's name?
Here's an example of what my .jpg files look like:
I want to append either the "Date" or "Date taken" info — not the "Date created" or "Date modified" info. I saw this answer but I think it would only do the latter. Also, I would like the date…

Jon
- 753
- 8
- 18
0
votes
2 answers
'image source not readable' error occurs every time when I use intervention package
$imagePath = (request('image')->store('uploads', 'public'));
//dd($imagePath);
$image= Image::make(public_path("storage/{$imagePath}"))->fit(1000,1000);
$image->save();
auth()->user()->posts()->create([
…

Muhammad Umar Khan
- 15
- 6
0
votes
1 answer
How to solve the “something went wrong” error while uploading the image file?
How to solve the “something went wrong” error while uploading the image file on etcher? I have updated the Etcher application also and then try downloading the OS image again but the same error shoes again and again.
0
votes
1 answer
Add Image.file to Photos Favorites album from within Flutter app
Is it possible to favorite an image in the Apple and Android photo app within my flutter app?
For example, if my app accesses many images from the camera roll/gallery using the multi_image_picker plugin and I have the Image.file location can I add…

chrisfavritz
- 159
- 2
- 8
0
votes
1 answer
how to save image file to sequelize db using node.js
First, I send the image file from android to node.js
and I want to save the image file to the DB using node.js.
But I don't know how to do that.
This is my Node.js code
.post('/picture', upload.single('files'), (req,res)=>{
res.json(req.file)
…

최효길
- 41
- 1
- 5
0
votes
1 answer
HTTP POST Data with Image from WebForm to .NET Web API, JSON too big
I'm working with a C# webform application that needs to send an image to an API method. The POST gets executed in the webform app and it hits the API POST method, but the JObject parameter in the API method is NULL but the JSON data in the webform…

William
- 21
- 9
0
votes
1 answer
Show Image in ListView
This custom listview is kicking my butt. I have been searching for a solution to this problem, but I can't find anyone else who has set up images and databases in the same way as I.
I have a SQLite driven app that takes a picture and saves the…

Matthew
- 139
- 1
- 10
0
votes
2 answers
Unable to send image to the server
here is the code for selecting Gallery Images
Intent intent = new Intent(Intent.ACTION_PICK, MediaStore.Images.Media.INTERNAL_CONTENT_URI);
startActivityForResult(intent, 2);
@Override
protected void onActivityResult(int requestCode, int…

Ankit Gupta
- 139
- 1
- 11
0
votes
1 answer
Sending of a steganographic message from client to server and vice versa
I have an image steganography module in my project. It works perfectly fine on a client side implementation.
What I want to do is, after the message is embedded in the image, to send the image to a server. How can I do this?

Rohit
- 33
- 5
0
votes
1 answer
Captured image is not creating new file
There are two Standard options 'Camera' and 'Gallery'. First I choose the option 'Camera', then capture the image and then edit and save.
HomeActivity.java file:
package com.saashtechs.photoeditor;
import android.content.Context;
import…

user2201935
- 396
- 1
- 7
- 19
0
votes
1 answer
show image file in browser after uploading in laravel database
I have a create form with some field like;name, price,category,... and a input field for image file.
it's my create.blade.php :
@extends('layouts.app')
@section('content')
…

Atefeh Rezakhah
- 11
- 1
- 3
0
votes
2 answers
Issue with filename containing spaces
There is a bug in an OpenCart Framework version 3.0.2.0,
If there are files with the filename containing spaces between them, it takes too long to process and execute
For Eg: Consider
img = https://DomainNameServer/image/catalog/pimages/SKU…

Nɪsʜᴀɴᴛʜ ॐ
- 2,756
- 4
- 33
- 57
0
votes
0 answers
How to send a image file to server using in post function using swift 4
I want to send a image file to server using swift 4. what i have done is`
var editProfile_image_path = NSTemporaryDirectory() + "temp.jpg"
Just.post(
"http://justiceleauge.org/member/register",data: ["username": "abc",…

Gorib Developer
- 587
- 2
- 13
- 27
0
votes
1 answer
How to get image files from a directory and order by last modified?
I'm creating an image gallery and would like for my most recent uploaded images to be at the front.
This is what I currently have:
$files = glob("images/*.*");
for ($i=0; $i

Christopher Ward
- 69
- 8