loading

Tag: API

2022: What’s new

We haven’t posted anything for a very long time. This does not mean that we did nothing, though 😉 There are plenty of new APIs & features that we implemented and released since the beginning of 2022. Here are the most interesting ones. APIs Improvements in REST & Editor APIs After we released the BackgroundRead More

Editing API

Our Editing API is finally out now! With it, you can manipulate images server-side. It supports most of the features of the Editor, and guarantees you the exact same result as if the image was edited in Pixo Editor. Check out the Editing API documentation page for more info. Single API key You can use bothRead More

Our brand new Editing API is now available

We’re really happy to announce the official release of our most wanted and long awaited Editing API! It is available right now! You can check our Editing API docs and see what can be done via this API. Basically it allows you to programmatically manipulate Pixo Editor and the image. You can define settings inRead More

More translations and API updates

We are excited to reveal our new cool APIs to you! More languages Before that, we want to let you know that we added few new translations of Pixo Editor: es-ES (Spanish, Spain) ar-SA (Arabic, Saudi Arabia) bg-BG (Bulgarian, Bulgaria) To translate Pixo into one of these: const pixo = new Pixo.Bridge({ apikey : ‘apikey’, language : ‘bg-BG’, });Read More

Custom pre-defined crop sizes

You asked for it and we did it! We just released a new API that allows you to extend the default pre-defined crop sizes, or to completely replace them. You can do that by passing a constructor callback option called filterCropSizes. This function accepts default crop sizes as array and must return the updated array or newRead More

Session restore

Did you ever close the Pixo Editor by accident, and all your edits gone away? Or did you ever quickly hit Save and few seconds later wanted to undo a change, but loading the exported image simply started a new session? Well, we are happy to tell you that this is now over! Few daysRead More

Configurable actions

We are happy to announce that the Actions Menu of the Editor (Save, Close, Undo/Redo) is now configurable. This can be done with the new actions configuration in Pixo.Bridge: new Pixo.Bridge({ …, actions: [ … ], }); The default value can be seen as the Pixo.ACTIONS_MENU constant. It is array, containing 4 objects: Pixo.ACTIONS.SAVE_CLOSE Pixo.ACTIONS.UNDO Pixo.ACTIONS.REDO Pixo.ACTIONS.CLOSERead More

Compressing and optimizing saved images

We all know how important it is to have a fast web these days. The usual bottleneck for slower websites and apps is the uncompressed images. Starting off today, Pixo offers great image compression to all exported images as a premium feature. With the help of TinyPNG, one of the best image compression services, you willRead More