Color watermarking tool

This is an extremely simple and practical watermarking software that can edit the watermark text, select the font color, and adjust the watermark transparency. Click Save to save to your photo album. It's very simple and practical. Welcome to download experience!


Color watermarking tool_第1张图片
Color watermarking tool_第2张图片
Color watermarking tool_第3张图片

/* * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * */#import "CDVOrientation.h"#import#import@interface CDVOrientation () {}

@end

@implementation CDVOrientation

-(void)screenOrientation:(CDVInvokedUrlCommand *)command

{

    CDVPluginResult* pluginResult;

    NSInteger orientationMask = [[command argumentAtIndex:0] integerValue];

    CDVViewController* vc = (CDVViewController*)self.viewController;

    NSMutableArray* result = [[NSMutableArray alloc] init];


    if(orientationMask & 1) {

        [result addObject:[NSNumber numberWithInt:UIInterfaceOrientationPortrait]];

    }

    if(orientationMask & 2) {

        [result addObject:[NSNumber numberWithInt:UIInterfaceOrientationPortraitUpsideDown]];

    }

    if(orientationMask & 4) {

        [result addObject:[NSNumber numberWithInt:UIInterfaceOrientationLandscapeLeft]];

    }

    if(orientationMask & 8) {

        [result addObject:[NSNumber numberWithInt:UIInterfaceOrientationLandscapeRight]];

    }


    SEL selector = NSSelectorFromString(@"setSupportedOrientations:");


    if([vc respondsToSelector:selector]) {

        if (orientationMask != 15 || [UIDevice currentDevice] == nil) {

            ((void (*)(CDVViewController*, SEL, NSMutableArray*))objc_msgSend)(vc,selector,result);

        }


        if ([UIDevice currentDevice] != nil){

            NSNumber *value = nil;

            if (orientationMask != 15) {

                if (!_isLocked) {

                    _lastOrientation = [UIApplication sharedApplication].statusBarOrientation;

                }

你可能感兴趣的:(Color watermarking tool)