What's new
Photoshop Gurus Forum

Welcome to Photoshop Gurus forum. Register a free account today to become a member! It's completely free. Once signed in, you'll enjoy an ad-free experience and be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Reply to thread

Replace those last two lines of code with this, please don't take out the grayscale bit as if the document isn't grayscale you can't go straight to Bitmap.


[code]


if(duppedDocumentTmp.mode != DocumentMode.GRAYSCALE){

    duppedDocumentTmp.changeMode(ChangeMode.GRAYSCALE);

}

var bitmapOptions = new BitmapConversionOptions;

bitmapOptions.resolution=1200;

bitmapOptions.method=BitmapConversionType.HALFTHRESHOLD;

duppedDocumentTmp.changeMode(ChangeMode.BITMAP,bitmapOptions);

[/code]


What is our favorite program/app? (Hint - it begins and ends with the letter P)
Back
Top