Coder Social home page Coder Social logo

Comments (5)

Norserium avatar Norserium commented on May 21, 2024

@kristinadjuricic, actually, you'have changed the cropper background to white.

Why it is still gray? The answer is simple, cause it becomes gray due to stencil's overlay, that used to distinguish the cropped area and the other content.

Take a look at this example:
image

The background is white, but its parts are white only when they belong to the cropped area, otherwise they become gray.

Let's try to limit the stencil's overlay to image only now.
image

That's the trouble.

Could you tell me more about your use-case? What is the desired result?

By the way, there is the workaround to make the background white that I've used to make the screenshot above.

from react-advanced-cropper.

ps-kristina-djuricic avatar ps-kristina-djuricic commented on May 21, 2024

In my case, I'm using a CustomWrapper that was created in this way to implement a zoom slider:
`const CustomWrapper = ({ cropper, children }) => {
const state = cropper.getState();
const settings = cropper.getSettings();
const absoluteZoom = getAbsoluteZoom(state, settings);

const onZoom = (value, transitions) => {
	const zoomValue = value > 1 ? 0 : value;

	cropper.zoomImage(getZoomFactor(state, settings, zoomValue), {
		transitions: !!transitions
	});
};

const contentStyle = {
	display: 'flex',
	width: '852px',
	height: '365px',
};

const navigationStyle = {
	display: 'flex',
	alignItems: 'center',
	maxWidth: '400px',
	width: '100%'
};

return (
	<CropperFade visible={state && cropper.isLoaded()}>
		<div style={contentStyle}>{children}</div>
		<div style={navigationStyle}>
			<ZoomControls zoom={absoluteZoom} onZoom={onZoom} />
		</div>
	</CropperFade>
);

};`

The height and width of the content have been added. What I would like to achieve is for the area where there is no image,the area to the left and right of the image, to be white. One of the features I would like to add is that when "solid color" option is selected, the visual effect should be displayed accordingly, the selected color should fill that empty space, but due to this gray overlay, it's not possible to achieve it successfully. However, with the current structure of CustomCropper, it seems to me that it's not possible to achieve this. Is there any workaround or advice for this case?

from react-advanced-cropper.

Norserium avatar Norserium commented on May 21, 2024

@kristinadjuricic, did you try my workaround?

from react-advanced-cropper.

ps-kristina-djuricic avatar ps-kristina-djuricic commented on May 21, 2024

I applied your solution/workaround, and it works. We can now close this issue. Thank you for your help :)

from react-advanced-cropper.

Norserium avatar Norserium commented on May 21, 2024

@ps-kristina-djuricic, you are welcome!

from react-advanced-cropper.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.