Code

Discussion on Pixie - Image Editor

Discussion on Pixie - Image Editor

By
Cart 3,620 sales

Vebto supports this item

Supported

1312 comments found.

Good luck with your sales

Hi, I noticed when inserting text into an image, there is no option to make text bold or italic, I think this is a basic feature of any photo editing software.

Hi,

If you click “apply” button, you should be able to see style options menu, including “text styles” button, bold/italic can be toggle from there.

Thank you for your help, very enthusiastic, I will give you 5 stars. However, it’s funny that I still can’t make the text bold.

https://i.imgur.com/nLVDyoD.png

Currently font weight can only be changed via configuration, but I’ll see if we can add a button for it with next update.

Hello Vebto ! is it possible to create pre arranged size for layout here ? https://quqra.com/image/ROa

Hi,

There’s no built in option for this currently.

Hi do I need to edit the sourcecode to change change or add new sticker ?

Hi,

Sourcecode does not need to be edited for this.

I intend to buy this software, but have something to ask the author.

1. In Dark Theme mode, do not see the free rotate button because its color coincides with the background color 2. The upper toolbar takes up too much space, can I resize it to optimize image editing space? 3. My primary language is not English and the fonts in Pixie are many. Can you or I create a button to sort the fonts for the language I need

Hi,

1. This should be corrected now.

2. You can hide it via configuration, Changing size would require some custom modifications.

3. You could override the current fonts only with ones you want to show.

Please try integrating the slazzer background removal API into Pixie https://www.slazzer.com/api#php

Hi,

This, or other similar services can already be integrated fairly easily via pixie configuration. You can add a custom button, then on button click call that API with current image data from pixie and then pass the image your receive from the API back to pixie.

Go to Shapes in your demo. Add a line. Modify and close. The line disappears. On a related note, I’m trying to add custom shapes using svg paths. Wen I add a path, the preview on the button is super small. Do you have a sample of how to add custom shapes? In particular, I would like a square/rectangle outline shape, just like the current square, but not filled.

Hi,

You need to click “apply” button, otherwise all changes since opening shapes panel will be removed.

As for paths, can you create a ticket regarding this on our support site and include on of the paths you are having issue with: https://support.vebto.com.

Thanks!

Click shapes, click line, click apply, click close. Select line, resize line….apply button isn’t active. Click close or anywhere on canvas, line disappears.

Try the latest version on codecanyon, it should fix this issue.

Hi Its presale query. Can you customize this application with some additional options?

Hi,

What kind of customizations specifically do you need?

Hi Vebto,

can I use Pixie to open images direct from my server, modify it and save it back to the server?

Hi,

Yes, this can be done fairly easily.

Hello, I want to know, How to install your project into wordpress?

Hi,

You can find a guide here.

Hi, I just updated the script but apparently the method to have the dark skin has changed, I can no longer set it even following the instructions.

Hi,

It should still work the same way. Can you create a ticket regarding this on our support site and include your site url: https://support.vebto.com.

Thanks!

 var pixie = new Pixie({

 objectControls: { 
     shape: { 
         unlockAspectRatio: false, 
          },
 }
not work.

Hi,

You will want to set it to “true”, it’s “false” by default already.

Hello, I installed the latest version of Pixie and the shape tool no longer supports stretching from square to rectangle. In short, squares cannot be used to make rectangular shapes. Which is regrettable. The old version had 8 cuffs on the rectangles?

The option I linked above should accomplish this, does it not work?

I went through all of the Pixie documentation and can’t write the code correctly. The problem is, I am not an expert in html code and the like. I manage to copy and paste and modify a line or two of code, but then it is a disaster. So any help from yours would be of great help. Thank you

Hi,

Please create a ticket regarding this on our support site and include your site url or pixie code you have so far: https://support.vebto.com.

Thanks!

to use my own google fonts api only need activate the: Web fonts developers api or a need have activate other google service?

hi, in the previous first version (orange)! the shapes can be resized to left and right but now only in the corners shapes. and can not set transparency… :(

Hi,

You only need google fonts API activated.

In the new version shapes aspect ratio will be respected when resizing, so if you add a circle, it will stay a circle when resizing, as that is what most users would expect. You can disable this via “unlockAspectRatio” option though if needed.

Hi,

I have purchased previously https://codecanyon.net/item/picturish-image-hosting-editing-and-sharing/11909554 Let me know any discount for this (pixie image editor).

Interested in product, just some quick question before purchase,

1. How to Add Ads (AdSense) and Stickers for this 2. How to save Editor Project File. 3. Linux Shared Hosting requirements

Hi,

We can’t offer individual discounts unfortunately.

You can find a guide on adding custom stickers and saving/loading project file in documentation.

Pixie is just a javascript library so it will work on any hosting.

1. Your demo is using the old or the new version? Because CROP is not working anymore (firefox, but works in Chrome). 2. How to make resize as CROP is possible by configuration? 3. And how to make the TOP, LEFT, RIGHT and Down arrows for resize and CROP (resize or crop with ratio).

Thanks

If you had resizing via handles like in crop tool wouldn’t that be essentially identical to crop?

As for unlocking ratio, you can click on “custom” crop size.

1. Almost the same, but with crop you can move the frame with the image.Like in canva.

I’ll see if we can add this with a future update.

observable.js this file is missing in this pkg !!!! can you please provide me. Its urgent !

Hi,

Try the latest version from codecanyon, it should fix this.

Hi. There is an error when scaling, the square figures are converted to a rectangle and vice versa

Hi,

Try the new version from codecanyon, it should fix this issue.

lockUniScaling: false is no longer working. Even in your demo, I can only scale items proportionally

I’ll see if we can add drag handles to the sides with next update.

Thanks. The previous scaling tool was better. I’d prefer going back to that one.

Scaling itself is still the same, only design of the drag handles has changed.

onLoad Event doesn’t seem to be working now: onLoad: function() { pixie.get(‘canvas’).on(‘object:selected’, function(e) {

Here’s another one. I am programmatically adding a sticker in the center when the main image loads: onMainImageLoaded: function(file) {pixie.getTool(‘shapes’).addSticker(‘placeholders’, 0); var activeObject = pixie.get(‘activeObject’);var x=parseInt(mainImage.width-1000)/2; var y=parseInt(mainImage.height-1000)/2; setTimeout(function(){activeObject.setValues({ opacity: 1, width: 1000, height:1000, scaleX:1, scaleY:1, left:x, top:y, lockUniScaling: false, hasRotatingPoint: false, name:’placeholder’ })},1000);

Before the update this would work fine, but after the update, the left and top values sent in the state are no longer correct. In this particular case, the main image is 1600×1600. In the old version state would have left:200, top:200. In the new version state shows left:800. top:800. Even if I don’t set the height, width, left and top, the variables in the state after save are still off. All 3 of my issues seem to be related to the object selection.

I figured out a workaround for the last one calculating the offset (scale*width/2) and a workaround for the hasRotatingPoint:false by hiding it via setting the css from javascript, but object:selected still doesn’t fire. I’m currently resorting to using selection:created as a workaround.

Hi,

object.selected event was removed, you can use selection.created instead though.

Some object control related configuration has been renamed with last update. You can find the new one here.

As for centering, default object origin changed to center from top left corner. You should use built-in “pixie.get(‘activeObject’).center()” instead of centering manually, this way you won’t need to update your code in the future.

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve CodeCanyon.

Sure, take me to the survey