Welcome to Photoshop Gurus Forum!

Join us now to get access to all our features. Once registered and logged in, you will be able to view and download attachments, create topics, post replies to existing threads, get your own private messenger and more.

+ Reply to Thread
Page 2 of 2 FirstFirst 1 2
Results 11 to 14 of 14
  1. #11
    Junior Member
    Join Date
    Nov 2009
    Posts
    13
    Quote Originally Posted by Paul MR View Post
    Sorry I even confused myself the new two lines of code should be placed just before..
    var fileNameBody = fileNamePrefix; (Line 792)
    haha no problem. Thanks I'll give it a go. I'll probably be reporting back here with more questions on Monday. Thank you for all of your help!

  2. #12
    Junior Member
    Join Date
    Nov 2009
    Posts
    13
    OK I took out the grayscale, and left only the Bitmap. I want the bitmap to incorporate the Bitmap setting of 1200dpi output resolution, and Method = 50% Threshold. Any advice?

  3. #13
    Member
    Join Date
    May 2009
    Location
    Bradford,UK
    Posts
    47
    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);
    Last edited by Paul MR; 11-23-2009 at 12:27 PM.

  4. #14
    Junior Member
    Join Date
    Nov 2009
    Posts
    13
    This now gives me exactly what I was looking for. All thanks to you. I think I'll learn a bit from this as well. Thank you!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts