El Capitan Preview PDF 형광펜 노랑색 변경


3

원래 OS X Mavericks에서 El Capitan으로 업그레이드했으며 PDF 파일을 편집 할 때 기본 형광펜은 밝은 노란색입니다 (이미지의 하단 예). 그러나 최근에 형광펜 색상을 빨간색으로 변경 한 다음 다시 노란색으로 변경하면 새로운 강조 표시된 노란색 (동일한 이미지의 상단 예)이 더 이상 아래쪽 색상과 동일하지 않습니다. 그리고 내가하는 일에 관계없이 새로운 노란색 형광펜은 더 이상 밝지 않습니다. 색과 같은 둔한 귤입니다.

여기에 이미지 설명을 입력하십시오

원하는 강조 표시 노란색으로 다시 전환하려면 어떻게해야합니까?

감사

참고 1 : 현재 버전의 Preview는 8.1.877입니다.

참고 2 : 스크린 샷은 APA Building Better Home 브로셔 A530 ...을 기반으로합니다.

답변:


1

누군가이 문제를 해결하는 코드를 작성하기에 충분히 친절했습니다.

솔루션을 간소화 할 수 있도록 여기에 코드를 다시 게시하고 있습니다.

//compile with: clang -W -Wall changehighlight.m -framework AppKit
#import <AppKit/AppKit.h>

char cmd[2048];

int main(int argc,char **argv){
    if(argc<3){
        fprintf(stderr,"changehighlight Listname Colorname\nexample: Apple Orange / Crayons Lime\n");
        return 1;
    }
    @autoreleasepool{
        //prepare
        int ver=0;
        {
            int c;
            FILE *funame=popen("uname -r","r");
            for(;~(c=fgetc(funame))&&c!='.';)ver=ver*10+c-'0';
            pclose(funame);
            if(ver<12){
                printf("It looks like you are using Lion or former. This app is useless and might cause unexpected result. Are you sure to continue? [y/N] ");
                c=getchar();
                if(c!='y'&&c!='Y')return 1;
            }
        }

        //get color
        NSColor *color=nil;
        {
            NSString *listname=[NSString stringWithCString:argv[1] encoding:NSUTF8StringEncoding];
            NSString *name=[NSString stringWithCString:argv[2] encoding:NSUTF8StringEncoding];
            for(NSColorList *colorlist in [NSColorList availableColorLists]){
                if([[colorlist name] isEqual:listname]){
                    color=[colorlist colorWithKey:name];
                }
            }
            if(color==nil){
                fprintf(stderr,"color name looks invalid\n");
                return 1;
            }
        }
        NSData *data=[NSArchiver archivedDataWithRootObject:color];
        NSString *desc=[data description];

        //do the hack
        strcpy(cmd,"defaults write \"");
        strcat(cmd,getenv("HOME"));
        if(ver==14){
            // Yosemite
            strcat(cmd,"/Library/Group Containers/com.apple.Preview/Library/Preferences/com.apple.Preview.plist");
        }else if(ver>=11){
            // Lion,Mountain Lion,Mavericks and El Capitan
            strcat(cmd,"/Library/Containers/com.apple.Preview/Data/Library/Preferences/com.apple.Preview.plist");
        }else{
            strcat(cmd,"/Library/Preferences/com.apple.Preview.plist");
        }
        // PVAnnotationColor_8:   highlight
        // PVAnnotationColor_9:   delete line (need to use right click menu)
        // PVAnnotationColor_10:  under line (not functional)
        strcat(cmd,"\" PVAnnotationColor_8 \"");
        strcat(cmd,[desc UTF8String]);
        strcat(cmd,"\"");
        puts(cmd);
        system(cmd);
        system("killall cfprefsd");
        return 0;
    }
}

/*
List of Colors with usual OSX configuration:

Apple Black
Apple Blue
Apple Brown
Apple Cyan
Apple Green
Apple Magenta
Apple Orange
Apple Purple
Apple Red
Apple Yellow
Apple White

Crayons Cantaloupe
Crayons Honeydew
Crayons Spindrift
Crayons Sky
Crayons Lavender
Crayons Carnation
Crayons Licorice
Crayons Snow
Crayons Salmon
Crayons Banana
Crayons Flora
Crayons Ice
Crayons Orchid
Crayons Bubblegum
Crayons Lead
Crayons Mercury
Crayons Tangerine
Crayons Lime
Crayons Sea Foam
Crayons Aqua
Crayons Grape
Crayons Strawberry
Crayons Tungsten
Crayons Silver
Crayons Maraschino
Crayons Lemon
Crayons Spring
Crayons Turquoise
Crayons Blueberry
Crayons Magenta
Crayons Iron
Crayons Magnesium
Crayons Mocha
Crayons Fern
Crayons Moss
Crayons Ocean
Crayons Eggplant
Crayons Maroon
Crayons Steel
Crayons Aluminum
Crayons Cayenne
Crayons Asparagus
Crayons Clover
Crayons Teal
Crayons Midnight
Crayons Plum
Crayons Tin
Crayons Nickel

"Web Safe Colors" 003366
"Web Safe Colors" 99CCFF
bla bla...

System alternateSelectedControlColor
System alternateSelectedControlTextColor
System controlBackgroundColor
System controlColor
System controlDarkShadowColor
System controlHighlightColor
System controlLightHighlightColor
System controlShadowColor
System controlTextColor
System disabledControlTextColor
System gridColor
System headerColor
System headerTextColor
System highlightColor
System keyboardFocusIndicatorColor
System knobColor
System labelColor
System quaternaryLabelColor
System scrollBarColor
System secondaryLabelColor
System secondarySelectedControlColor
System selectedControlColor
System selectedControlTextColor
System selectedKnobColor
System selectedMenuItemColor
System selectedMenuItemTextColor
System selectedTextBackgroundColor
System selectedTextColor
System shadowColor
System tertiaryLabelColor
System textBackgroundColor
System textColor
System windowBackgroundColor
System windowFrameColor
System windowFrameTextColor
*/

코드를 다른 이름으로 저장 changehighlight.m

터미널을 열고 파일을 저장 한 동일한 디렉토리로 이동 한 후 명령을 실행하십시오. clang -W -Wall changehighlight.m -framework AppKit && mv a.out changehighlight

색상을 복원하려면 다음 명령을 실행하십시오 ./changehighlight Apple Yellow

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.