Any way to rotate a croppie that in any increment. such as 34 etc. need to take an image and rotate to get the horizon straight.
Hi @mishav! Do you have any update regarding the uploaded file size thing? Thank you.
Any help on this? i can rotate in 90 increments but not on a entered number. Does this plugin allow this feature?
Thanks
@mishav, Iād love to know about dynamic rotation, as well.
Hello,
Did anyone try to use a croppie plugin on Android webview? Iām using a BDK Native and seems like itās not working. When I tried to browse croppie using a workflow, noting is happen.
What is the maximum file browse? This is extremely helpful for what I want to do. I guest this one the most useful plugins out there.
Did anyone manage to change the styling of the zoomer?
The current colors and styling unfortunately makes the plugin really disturbing to the overall look of your site.
In case you are still struggling with this.
I wanted to change the border-radius of the viewport and overlay.
I added an HTML element to page with this code (my custom class = croppiecropper)
<style>
.croppiecropper .cr-viewport {
border-radius: 10px;
}
</style>
It gave me this result
Although itās not what you are looking for, I recommend inspecting the element on chrome and playing around with the different variables there until you find something that changes it. Then update accordingly in your HTML style by chancing ācr-viewportā to the thing you want to change, and off course the properties as well.
Also helpful was the CSS ref doc on git hub Croppie/croppie.css at master Ā· Foliotek/Croppie Ā· GitHub
Iām terrible with code, but with a bit of playing around it should work.
Hope that helps.
For those asking how to add styling to the zoomer.
Lilke in the previous post from maurice, add your custom class within the croppie set up:
Then add the html element:
<style>
.croppie .cr-slider::-webkit-slider-thumb {
background: #ff0606;
}
.croppie .cr-slider::-moz-range-thumb {
background: #ff0606;
}
</style>
It seems you need both āthumbā classes for different browsers. Having these two works for edge, chrome, mozilla (the only ones iāve tested). Thereās another āthumbā class which you may need for a different browser.
All the things you can customize (thanks to maurice) : Croppie/croppie.css at master Ā· Foliotek/Croppie Ā· GitHub
Hi! Have you find a workaround on this? Canāt find the actual file size too
No I have notā¦it doesnāt seem to be available through the plugin. It is visible in the data file manager though. Never tried to figure a way to get it from there.
I hope @mishav help us here.
@emmanuel is there anyway to get file size of the linked file in the file manager?
Hi All,
I have an issue that I think was not there few weeks ago.
When my user upload an image (for his project) it is loaded in the croppie as expected, and I saved the cropped image in my db.
Then, when the user opens the popup again he should see this image in the croppie, as i set it up as the image source of the croppie.
But nothing is displaying :
Additional : I have a RG with several projects and each project has its image and this croppie system. If I download now a picture for one of the project, it will works, and the inspector will tell me that the original image is not empty. But for the projects with a picture uploaded long time ago, it doesnāt work and the original image is empty, even if the source image is not and work properly. As I said, I have no issue like this one month ago.
If someone already faced this issue, I would really appreciate some help,
thanks !
Hi Everyone!
This plugin looks very nice, but I canāt seem to get it to work properly.
Iāve made a popup in which users can add a company and add an image. Upon clicking the āSubmitā button at the bottom I want the new company to be stored, with the image attached to it.
Unfortunately I canāt seem to get it to work, but I canāt figure out why. it looks like the image isnāt saved to the database at all.
What Iāve got:
- Browse a croppie on the page (works fine);
- Upon submit, I trigger the āSave a croppieā
- In the save a croppie workflow I have some logic to set the image of the parentās company to the croppieās result image.
Now i think this is probably where itās going wrong, as I expect that the āSave A croppieā workflow isnāt linked to the Company or am i mistaken? I mean, how does this workflow now what company (and image) to update?
Does anyone here have an example of how this is setup with popups so I can take a look?
Running into the same problem, have you gotten this resolved?
It works for me, only when I press the save button twice
Hi everyone,
Been using this plugin for a couple months now and absolutely love it. However for some reason it just stopped working today. Is anyone else experiencing this?
Cheers!
Use the BDK native uploader (picture selector or camera) and then set use āload croppieā in a workflow once uploaded
hi @mishav,
I think I might have found a potential bug. Iāve been in touch with Bubble already, and they believe it might be a plugin error. Thought Iād share what they discovered here for your information.
This is likely a separate error from the images failing to load. We have reproduced this issue with the images as you can see [here] and can confirm that the image sources and dynamic image links appear to be loading correctly when you inspect the elements. For example, an image from Unsplash can be loaded in the browser at the source image link for āGive JuJu Step 2.5 Cropās image is not empty.ā
When the images donāt load in the Croppie, however, weāre finding an error in the browser console that shows the images canāt be loaded from the server.
Though this issue with the Croppie plugin does not appear to extend beyond this app, this error does suggest that the issue is tied to the pluginās ability to load these images, especially as a statically uploaded image can appear outside the Croppie as shown in the test video.
The croppie still works on other pages - so Iāll keep looking as to why - but thought you may want to know about this bug.
EDIT: made some progress here: this issue only happens when you tick āEnable EXIFā
There might be a bug in there somewhere. For now, have just unchecked this. But long term would be good to find out why this is happening.
Hope this helps!
Cheers
Hi @mishav
Great work on this plugin an kudos for making it free. Iāve been through this whole thread a couple of times. I can see there were some issues initially with the āLoad a croppieā action. Is this now working properly as far as you know?
Iāve been trying to integrate the Bing Image search plugin with Croppie, so that a user can search for an image and then crop/rotate etc before saving.
It works perfectly for some images but not others. Iāve been looking at the errors in the Console, I seem to get 2 different ones.
One seems to be related to CORS. Iām not smart enough to understand what this is all about. It was mentioned earlier in the thread but I donāt know if this was fixed.
The other error message is something to do with an āinsecure XMLHttpRequest endpointā.
I donāt think the issue is with the Bing plugin. I can load the Bing search result image into the Bubble DB in every case. The issue seems to be loading it into Croppie.
If @mishav or anyone else can help, it would be much appreciated.
Iāve created a sample app to show the issue: Your Bubble app
EDIT: Annoyingly I now canāt recreate the second issue. But the sample app above shows one which works correctly and one with a CORS issue.