It is currently Sat Sep 19, 2026 8:25 am


All times are UTC - 5 hours [ DST ]



Post new topic Reply to topic  [ 3 posts ] 
Author Message
 Post subject: Can Someone Do Me a Favor?
PostPosted: Sat Jul 19, 2014 2:04 pm  (#1) 
Offline
GimpChat Member

Joined: May 29, 2013
Posts: 15
I need some path gradient definitions from an EPS. I can get to the particular paths using Inkscape, but the gradients are all wrong.

I tried online converting .eps to .svg, and the gradients were still wrong.

So in desperation, I ask if anyone with photoshop would be willing to convert this file for me. DM to let me know, please. I have all the necessary permission to use the file, but I can't redistribute. So I'm embedding a .png copy of the file so you can see what it looks like, but I'd rather send the actual file only to someone who can help.

Thanks!
Image


Share on Facebook Share on Twitter Share on Orkut Share on Digg Share on MySpace Share on Delicious Share on Technorati
Top
 Post subject: Re: Can Someone Do Me a Favor?
PostPosted: Sat Jul 19, 2014 6:22 pm  (#2) 
Offline
GimpChat Member
User avatar

Joined: Sep 22, 2012
Posts: 2089
Location: US
No1KState wrote:
I need some path gradient definitions from an EPS. I can get to the particular paths using Inkscape, but the gradients are all wrong.

I tried online converting .eps to .svg, and the gradients were still wrong.

So in desperation, I ask if anyone with photoshop would be willing to convert this file for me. DM to let me know, please. I have all the necessary permission to use the file, but I can't redistribute. So I'm embedding a .png copy of the file so you can see what it looks like, but I'd rather send the actual file only to someone who can help.


What do you need exactly? Gradient definition or EPS conversion (to what file format)?
I can create CSS or XTML docs out of your EPS file, you can open them in any text editor and look up the gradient definitions
they look like
var gradient;

      // layer1/Path
      ctx.save();      ctx.beginPath();      ctx.moveTo(230.0, 204.0);      ctx.lineTo(0.0, 204.0);      ctx.lineTo(0.0, 0.0);      ctx.lineTo(230.0, 0.0);   
      ctx.lineTo(230.0, 204.0);      ctx.closePath();
      gradient = ctx.createLinearGradient(0.0, 102.0, 230.0, 102.0);
      gradient.addColorStop(0.01, "rgb(182, 159, 148)");
      gradient.addColorStop(0.43, "rgb(210, 193, 174)");
      gradient.addColorStop(0.71, "rgb(171, 150, 138)");
      gradient.addColorStop(0.90, "rgb(220, 209, 196)");
      ctx.fillStyle = gradient;
      ctx.fill();
      ctx.restore();


Can convert to SVG, PDF, PSD, TIFF (and any bitmap, of course)

Is that what you're after?
BTW, Illustrator is what you need for this, not PS.

PM me if this is of any help.


Top
 Post subject: Re: Can Someone Do Me a Favor?
PostPosted: Sat Jul 19, 2014 7:03 pm  (#3) 
Offline
GimpChat Member

Joined: May 29, 2013
Posts: 15
Yeah! Illustrator!

Anyway, I'll DM you.


Top
Post new topic Reply to topic  [ 3 posts ] 

All times are UTC - 5 hours [ DST ]


cron

* Login  



Powered by phpBB3 © phpBB Group