array of images in static folder with vuejs - vuejs2

From my python API I get 4 image classes, I need to return those with an image. the images are stored in the static vuejs folder.
problem: the return is "00001100" the images are named "00001100-engine.jpg". the extra value "-engine.jpg" is variable.
How do I get an array/object/JSON off all the images in this folder?

Related

IMG in vuepress is not showing

I try to learn Vuepress and I need to know how to add image to document.
I tried code from documentation on vuepress ![An image](images/image.png) and can't see nothing
Code I tried to use in frontend.md and is really simple
# Title
![An image](images/image.jpg)
Here is result of that code
It's recommended that you reference any asset using relative URLs. You can move your images into the content folder:
content
frontend.md
assets
images
image.jpg
Then reference using relative URL in frontend.md:
![An image](./assets/images/image.jpg)

Customizing image uploading in TinyMCE

I have an ASP.NET Web API web service which I want to use for file uploading. The way I do this is that the client posts a JSON object to the service at http://myserver.com/api/images/upload .
The object would contain a base64 string representation of the image, plus some metadata, e.g:
{ companyId: 12345, image: "someBase64encodedStringRepresentingTheImage" }
I would like to use TinyMCE on the client side, but I can't figure out how to customize it such that images are uploaded to the server in that format. (Actually, it doesn't seem like TinyMCE comes with an image uploader at all)
TinyMCE 4.2+ actually has its own built in process for handling the upload of images that you place in the editor:
https://www.tinymce.com/docs/advanced/handle-async-image-uploads/
The basic process is that TinyMCE will create a separate HTTP POST for each image that you insert into the editor. It will send that image to a URL of your choosing (via HTTP POST) based on the setting of the images_upload_url option in your init.
The image handler at the URL referenced in the images_upload_url (which you have to create) has to do whatever needs to be done to "store" the image in your application. That could mean something like:
Store the item in a folder on your web server
Store the item in a database
Store the item in an asset management system
...regardless of where you choose to store the image your image handler needs to return a single line of JSON telling TinyMCE the new location of the image. As referenced in the TinyMCE documentation this might look like:
{ location : '/uploaded/image/path/image.png' }
TinyMCE will then update the image's src attribute to the value you return. If you use the images_upload_base_path setting in the init that will be prepended to the returned location.
The net here is that TinyMCE knows when an embedded image exists in your content but it can't possibly know what to do with that image in the context of your application so that job (the "image handler") is something you must create.
There is an option for you to write your own image handler if the default one is not sufficient:
https://www.tinymce.com/docs/configure/file-image-upload/#images_upload_handler
I would recommend trying to use the uploader that comes with TinyMCE so you don't have to write and maintain your own code going forward (always easier) but if the built in code is not appropriate you can indeed replace it with your own function.

How to create a zone to drop/select an image for uploading on Ember.js?

I have a form and I'm using it to save() an ember model to the database.
This model should also have an image, so I want to create a zone like the one below:
User should be able to drag and drop a file from its file browser or selecting it using the blue button.
Also, how do I actually upload the file along with the other model properties?
You could use EmberDroplet addon and customize it to your needs (for example you can set file limit to 1 and customize CSS). To upload file you have to specify url property, eg:
App.XDropletComponent = Ember.Component.extend(Droplet, {
url: location.origin + '/upload'
});
And in your API endpoint (on server side) you could handle file upload + setting image path on model in database (simple string attribute with URL to your image so you can use it later in your application).
Then you could use didUpload hook to refresh your model (this way you get back image URL after upload).
Or you can use the filepicker.io Ember addon.
Source code and usage here.
Quick reference below.
Template:
{{ember-filepicker pickerOptions=pickerOptions
storeOptions=storeOptions onSelection='fileSelected'
onClose='onClose' onError='onError'}}
Controller actions:
fileSelected: function(params){
//save the params.url to your model
//the image is stored by filepicker on Amazon S3
},

Adding snippet and injecting it on product page in shopify

I'm developing a Shopify app.
On app installation, I want to create a snippet and upload some assets like images and JS.
That snippet should be injected in the product.liquid file.
You can use this for creating assets using API
https://docs.shopify.com/api/asset
While passing the key parameter you can pass whether it is going to be a snippet or asset.
{ "key" : "assets/bg-body-green.gif" }

How to show uploaded images from server(folder) to index page in asp.net webapi?

Hi all,
I am working in asp.net webapi. I have uploaded my images and I have optimized these images for three different sizes.
Then I clicked on saved in folder in server(App_Data)(folder) in my application, now I need to
Retrive those images from that folder
Show in my index page like i should get that images back
Show original image
Show the different images on radio button selection
Could you please help me retrieve those pictures from my folder (show dynamically),and help me fetch and show images in index page?
Thanks in advance.
As of above i got idea that actually want to do need to retrive images from folder path right
ok for that need to write method in controller its just simple
public static string Getimage( string url)
{
return url;
}
and make call in your controllers like this
Getimage(uploadedfolders)
uploaded folders means patha of folder which images are stored