1312 comments found.
I found one more bug. When we start with “Create New” and choose Sample image. When we draw one element on this image and press Cancel instead of Applay, not only the drawn element, but also the Sample image disappears.
Hi,
Can’t seem to be able to reproduce this. Does it occur on demo site?
Yes, I checked on the demo page yesterday I checked there because I had this error in my system and I wanted to check if it was a local problem or not. But I checked it again today and the problem disappeared on the demo site. Unfortunately, on the demo page I can not reproduce this error because sample image can be loaded only once (later the menu containing the sample image disappears and you can only upload photos from the disk) And it looks like the problem appears when we open the image a second time. So we add sample image, then we add another sample image and the one that was added as the second disappears when we draw something and click cancel.
Could you create a ticket regarding this on our support site and include your site url (if available online) so I can take a look: https://support.vebto.com.
Thanks!
I found a bug in “pixie” When I use the DROW tool, and draws several elements, after saving, I can edit all elements except the one that was first drawn. It is as if it is permanently connected to the picture. Is it possible to improve it somehow so that the first element element is also editable?
Hi,
Thanks for reporting this! It will be corrected with next update.
please, put the function of modifying the background to transparent and put zones that you want transparent, please
Hi, is it possible to change default characteristics of the shapes? I would like all of them having by default transparent color, and a border in specific color. thx
Or maybe there is an option to add new shapes. which are empty inside? However, the ability to predefine the default appearance of shapes (such as transparency / color or outline – the thickness of the color) would be much more useful. The second thing is the DRAW tool in which the “eraser” is very missing When in one edition I draw a line, and then the second and third one, I can not delete, for example, only the first one or only the last one
Hi,
This can be done via “objectDefault” configuration, you can find default values here.
Currently you can only delete the whole drawing via objects panel or delete button.
Thank you very much for your answer! The delete option while drawing would be very helpful. Especially when someone draws a lot of elements and finally makes a mistake. He can not correct the mistake but he has to draw everything from the beginning.
Greetings,
Looks like some of the filters are broken for large images. Any idea when this is going to be fixed?
Do you have plans to update this in the future? If so, approximately when do you think next update will be?
Hi,
We’ve no exact date for update yet unfortunately.
please add more pretty frames, slimming face or body function, fix add text on mobile devices, resize can not be made on 5 inch screens either
When running Pixie locally – everything works fine. When I tried to run it from my hosting account (Hostgator, shared hosting) – all icons are not appearing: (anonymous) @ main.ts:17 ... Error retrieving icon: Unable to find icon with the name “photo-library”
Loading icon set URL: http://assets/icons/merged.svg failed: Http failure response for http://assets/icons/merged.svg: 0 Unknown Error
Any idea why this is happening and how to fix it?
Thanks
Hi,
Please create a ticket regarding this on our support site and include your site url: https://support.vebto.com.
Thanks!
I have intigrated image editor tool here on bootstrap popup. After using any tool except open -> background image, open ->Overlay lay image i am unable to save image whatever i am updating on image like adding any text/colour etc and applying it.
1) Also Text tool then add text, after adding text, tool not allow to add text whatever we want,
I have created ticket regarding this on https://support.vebto.com/help-center/ date: Apr 3, 10:22
screenshot attached: https://gyazo.com/fb75a2f702f08114b4e75ddb240d328b – Ticket ID: 5511
Hi,
Could you reply to your ticket on our support site regarding this. Thanks!
How i could when the ticket is closed by you????
Here is the new ticket id: #5929
Ticket was closed as we did not hear back from you for a while, however you can reply to closed ticket to re-open it.
Hi, I want to create a photo editor software for windows.
Can I use your scripts for this? The program will be on the server and the client program will display the editor as a browser.
Users will not have a final product, they will only be able to get an image.
Can I use your program for this? Thanks.
Hi,
Yes, you can use pixie in this way.
Hi, Problem with pixie:ticket #5897
So we want the script if adsense does not accept this script, it says there is no content, they should modify the index so that the web has much more content and we can put adsense ads
Pixie icons on menu, and more do not show whenever pixie is integrated within a secure php session. Any thoughts?
using mysqli
nvm
When I add my website to adsense they deny me for not having content, adsense sends me this error: Valuable Inventory: No content, and I can not publish ads on my website
Hi,
This is not an issue with pixie, adsense usually requires some text content on site.
It does not cost you a lot of work to add content to the script for adsense to approve our website, some tips, features, etc. could add, since we do not know javascript, that is why we bought this
Resize can not be used from mobile devices, the keyboard hides
Hi,
Please create a ticket regarding this on our support site and include your site url: https://support.vebto.com.
Thanks!
Hello, how do I add more filters, sticker, emoticons etc etc? it turns out that I upload frames, emoticons etc and it is not reflected in the web
Hi,
You can find this in the documentation, for example, for adding stickers refer to guide here: https://support.vebto.com/help-center/articles/46/stickers
Hi, I am evaluating this library to build an image editor.
However – I need to be able to manipulate multiple images at once. So I need to load multiple pixie instances.
Is this possible ? Please see sample code below to understand what I’m trying to achieve.
<div class="some-container">
<pixie-editor1></pixie-editor1>
<pixie-editor2></pixie-editor2>
</div>
var pixie1 = new Pixie({
image: 'image1.png',
selector: 'pixie-editor1',
onLoad: function() {
console.log('Pixie1 is ready');
}
});
var pixie2 = new Pixie({
image: 'image2.png',
selector: 'pixie-editor2',
onLoad: function() {
console.log('Pixie2 is ready');
}
});
Hi,
Multiple pixie instances are not supported on the same page at the moment (unless you put them in iframe) unfortunately.
How to redirect my website to https
Hi,
You should be able to do this from your cpanel.
I make changes to the default-settings.ts file and it does not apply on the web, it does not do anything!
Hi,
You should not modify that file directly. Refer to this guide to see where to enter configuration: https://support.vebto.com/help-center/articles/50/getting-started
Another question: how do I set the default export format to match the input format.
I currently have:
tools: {
export: {
defaultFormat: 'jpeg'
},
},
But I am loading user images that may be either png or jpg
How do I ensure the export matches the input format when calling resetAndOpenEditor with a new image (which may be the different type).
Is there an argument to resetEditor(...) that will change this setting?
Hi,
There’s no built in way to do this currently, you would need to store initial image format somewhere and then change pixie export format based on that.